-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:inboundnow/inbound-pro
- Loading branch information
Showing
910 changed files
with
123,673 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
.DS_Store | ||
/shared/_DelSyncFiles/ | ||
|
||
/deploy.sh | ||
shared/languages/landing-pages/.tx/CONFIG | ||
shared/languages/landing-pages/get-translations.bat | ||
.tx | ||
/shared/languages/landing-pages/*.bat | ||
shared/.SyncIgnore | ||
shared/languages/leads/_get-translations.bat | ||
shared/languages/calls-to-action/_get-translations.bat |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# Travis CI Configuration File | ||
|
||
# Tell Travis CI we're using PHP | ||
language: php | ||
|
||
# PHP version used in first build configuration. | ||
php: | ||
- "5.5" | ||
|
||
# WordPress version used in first build configuration. | ||
env: | ||
- WP_VERSION=master | ||
|
||
# Next we define our matrix of additional build configurations to test against. | ||
# The versions listed above will automatically create our first configuration, | ||
# so it doesn't need to be re-defined below. | ||
|
||
# WP_VERSION specifies the tag to use. The way these tests are configured to run | ||
# requires at least WordPress 3.8. Specify "master" to test against SVN trunk. | ||
|
||
# Note that Travis CI supports listing these above to automatically build a | ||
# matrix of configurations, but we're being nice here by manually building a | ||
# total of four configurations even though we're testing 4 versions of PHP | ||
# along with 2 versions of WordPress (which would build 8 configs otherwise). | ||
# This takes half as long to run while still providing adequate coverage. | ||
|
||
matrix: | ||
include: | ||
- php: "5.3" | ||
env: WP_VERSION=master | ||
- php: "5.4" | ||
env: WP_VERSION=3.8.1 | ||
- php: "5.2" | ||
env: WP_VERSION=3.8.1 | ||
|
||
# Clones WordPress and configures our testing environment. | ||
before_script: | ||
- export PLUGIN_SLUG=$(basename $(pwd)) | ||
- git clone --depth=50 --branch="$WP_VERSION" git://develop.git.wordpress.org/ /tmp/wordpress | ||
- cd .. | ||
- mv "$PLUGIN_SLUG" "/tmp/wordpress/src/wp-content/plugins/$PLUGIN_SLUG" | ||
- cd /tmp/wordpress | ||
- mysql -e "CREATE DATABASE wordpress_tests;" -uroot | ||
- cp wp-tests-config-sample.php wp-tests-config.php | ||
- sed -i "s/youremptytestdbnamehere/wordpress_tests/" wp-tests-config.php | ||
- sed -i "s/yourusernamehere/travis/" wp-tests-config.php | ||
- sed -i "s/yourpasswordhere//" wp-tests-config.php | ||
- cd "/tmp/wordpress/src/wp-content/plugins/$PLUGIN_SLUG" | ||
- ls -l | ||
|
||
script: phpunit |
Oops, something went wrong.