-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release/2.0.0' into stable
- Loading branch information
Showing
216 changed files
with
18,491 additions
and
5,646 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 @@ | ||
dev-lib-wordpoints/jshint/.jshintignore |
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 |
---|---|---|
@@ -1 +1 @@ | ||
dev-lib/.jshintrc | ||
dev-lib-wordpoints/jshint/.jshintrc |
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,29 @@ | ||
#!/usr/bin/env bash | ||
|
||
# This project is a plugn. | ||
export WORDPOINTS_PROJECT_TYPE=wordpoints | ||
|
||
# The dev lib uses a non-default path. | ||
export DEV_LIB_PATH=dev-lib-wordpoints | ||
|
||
# Sets up custom configuration. | ||
function wordpoints-dev-lib-config() { | ||
|
||
# Use the develop branch for WPCS. | ||
export WPCS_GIT_TREE=develop | ||
|
||
# Ignore the WordPress dev lib when codesniffing. | ||
CODESNIFF_PATH+=('!' -path "./dev-lib/*") | ||
export CODESNIFF_PATH | ||
|
||
# Fix failures on HHVM. See #317. | ||
if [[ $DO_CODE_COVERAGE == 1 ]]; then | ||
alias phpunit-ms-network='phpunit-ms-network; composer remove --dev jdgrimes/wp-filesystem-mock' | ||
fi | ||
|
||
if [[ $TRAVIS_PHP_VERSION == nightly ]]; then | ||
alias setup-phpunit='setup-phpunit; wget -O /tmp/31982.1.diff https://core.trac.wordpress.org/raw-attachment/ticket/31982/31982.1.diff; cd $WP_DEVELOP_DIR; patch -p0 < /tmp/31982.1.diff; cd -' | ||
fi | ||
} | ||
|
||
# EOF |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Submodule dev-lib
updated
14 files
+1 −0 | .gitignore | |
+8 −0 | .jscsrc | |
+0 −7 | .svnignore | |
+49 −20 | class-wordpress-readme-parser.php | |
+1 −3 | contributing.md | |
+30 −7 | generate-markdown-readme | |
+5 −0 | mime-types.csv | |
+12 −4 | phpunit-plugin-bootstrap.php | |
+11 −0 | phpunit-plugin.xml | |
+32 −5 | pre-commit | |
+38 −2 | readme.md | |
+104 −78 | svn-push | |
+47 −5 | travis.before_script.sh | |
+23 −4 | travis.script.sh |
Submodule dev-lib-wordpoints
updated
20 files
+5 −0 | .travis.yml | |
+118 −0 | CHANGELOG.md | |
+26 −2 | README.md | |
+43 −0 | bin/env.sh | |
+164 −0 | bin/functions.sh | |
+31 −14 | bin/init.sh | |
+22 −0 | bin/makepot.sh | |
+7 −5 | bin/update-version.sh | |
+2 −2 | i18n/README.md | |
+0 −34 | i18n/makepot.sh | |
+3 −0 | jshint/.jshintignore | |
+25 −0 | jshint/.jshintrc | |
+10 −1 | l10n-validator/wordpoints.php | |
+43 −3 | phpcs/WordPoints/ruleset.xml | |
+4 −2 | phpunit/module-bootstrap.php | |
+30 −0 | run | |
+16 −35 | travis/before_script.sh | |
+56 −64 | travis/commands.sh | |
+10 −12 | travis/module.yml | |
+8 −8 | travis/wordpoints.yml |
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
Oops, something went wrong.