Skip to content

Commit bfc54b7

Browse files
yujinakayamasebjacobs
authored andcommitted
Updated travis build scripts (from rspec-dev) (rspec#1742)
1 parent 27f29e0 commit bfc54b7

File tree

7 files changed

+17
-7
lines changed

7 files changed

+17
-7
lines changed

.rubocop_rspec_base.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file was generated on 2016-06-14T22:22:14-07:00 from the rspec-dev repo.
1+
# This file was generated on 2016-11-07T00:20:00+09:00 from the rspec-dev repo.
22
# DO NOT modify it by hand as your changes will get lost the next time it is generated.
33

44
# This file contains defaults for RSpec projects. Individual projects

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file was generated on 2016-06-14T22:22:14-07:00 from the rspec-dev repo.
1+
# This file was generated on 2016-11-07T00:20:00+09:00 from the rspec-dev repo.
22
# DO NOT modify it by hand as your changes will get lost the next time it is generated.
33

44
version: "{build}"

script/clone_all_rspec_repos

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
# This file was generated on 2016-06-14T22:22:14-07:00 from the rspec-dev repo.
2+
# This file was generated on 2016-11-07T00:20:00+09:00 from the rspec-dev repo.
33
# DO NOT modify it by hand as your changes will get lost the next time it is generated.
44

55
set -e

script/functions.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file was generated on 2016-06-14T22:22:14-07:00 from the rspec-dev repo.
1+
# This file was generated on 2016-11-07T00:20:00+09:00 from the rspec-dev repo.
22
# DO NOT modify it by hand as your changes will get lost the next time it is generated.
33

44
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"

script/predicate_functions.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file was generated on 2016-06-14T22:22:14-07:00 from the rspec-dev repo.
1+
# This file was generated on 2016-11-07T00:20:00+09:00 from the rspec-dev repo.
22
# DO NOT modify it by hand as your changes will get lost the next time it is generated.
33

44
function is_mri {
@@ -65,6 +65,11 @@ function rspec_support_compatible {
6565
fi
6666
}
6767

68+
function additional_specs_available {
69+
type run_additional_specs > /dev/null 2>&1
70+
return $?
71+
}
72+
6873
function documentation_enforced {
6974
if [ -x ./bin/yard ]; then
7075
if is_mri_2plus; then

script/run_build

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
# This file was generated on 2016-06-14T22:22:14-07:00 from the rspec-dev repo.
2+
# This file was generated on 2016-11-07T00:20:00+09:00 from the rspec-dev repo.
33
# DO NOT modify it by hand as your changes will get lost the next time it is generated.
44

55
set -e
@@ -13,6 +13,11 @@ fi
1313
fold "binstub check" check_binstubs
1414

1515
fold "specs" run_specs_and_record_done
16+
17+
if additional_specs_available; then
18+
fold "additional specs" run_additional_specs
19+
fi
20+
1621
fold "cukes" run_cukes
1722

1823
if documentation_enforced; then

script/travis_functions.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file was generated on 2016-06-14T22:22:14-07:00 from the rspec-dev repo.
1+
# This file was generated on 2016-11-07T00:20:00+09:00 from the rspec-dev repo.
22
# DO NOT modify it by hand as your changes will get lost the next time it is generated.
33

44
# Taken from:

0 commit comments

Comments
 (0)