cucumber_factory 2.1.0 → 2.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/test.yml +60 -0
- data/.gitignore +1 -0
- data/CHANGELOG.md +46 -0
- data/Gemfile.cucumber-1.3 +2 -1
- data/Gemfile.cucumber-1.3.lock +12 -4
- data/Gemfile.cucumber-2.4 +2 -1
- data/Gemfile.cucumber-2.4.lock +12 -4
- data/Gemfile.cucumber-3.0 +2 -1
- data/Gemfile.cucumber-3.0.lock +12 -4
- data/Gemfile.cucumber-3.1 +2 -1
- data/Gemfile.cucumber-3.1.lock +12 -4
- data/Gemfile.cucumber-4.1 +20 -0
- data/Gemfile.cucumber-4.1.lock +140 -0
- data/Gemfile.cucumber-5.3 +20 -0
- data/Gemfile.cucumber-5.3.lock +140 -0
- data/README.md +36 -6
- data/lib/cucumber_factory.rb +1 -0
- data/lib/cucumber_factory/build_strategy.rb +6 -1
- data/lib/cucumber_factory/factory.rb +97 -37
- data/lib/cucumber_factory/update_strategy.rb +30 -0
- data/lib/cucumber_factory/version.rb +1 -1
- data/spec/assets/file.txt +1 -0
- data/spec/assets/file2.txt +1 -0
- data/spec/assets/symlink.txt +1 -0
- data/spec/cucumber_factory/steps_spec.rb +173 -7
- data/spec/spec_helper.rb +3 -0
- data/spec/support/database.github.yml +6 -0
- data/spec/support/database.rb +3 -0
- data/spec/support/database.sample.yml +3 -3
- data/spec/support/factories/factories.rb +15 -1
- data/spec/support/models/movie.rb +1 -0
- data/spec/support/models/opera.rb +1 -1
- data/spec/support/models/payment.rb +13 -8
- data/spec/support/uploaders/attachment_uploader.rb +3 -0
- metadata +14 -5
- data/.travis.yml +0 -32
- data/spec/support/database.travis.yml +0 -4
data/.travis.yml
DELETED
@@ -1,32 +0,0 @@
|
|
1
|
-
rvm:
|
2
|
-
- 2.1.10
|
3
|
-
- 2.5.3
|
4
|
-
|
5
|
-
gemfile:
|
6
|
-
- Gemfile.cucumber-1.3
|
7
|
-
- Gemfile.cucumber-2.4
|
8
|
-
- Gemfile.cucumber-3.0
|
9
|
-
- Gemfile.cucumber-3.1
|
10
|
-
|
11
|
-
dist: trusty
|
12
|
-
|
13
|
-
matrix:
|
14
|
-
exclude:
|
15
|
-
- gemfile: Gemfile.cucumber-3.1
|
16
|
-
rvm: 2.1.10 # cucumber 3 wants ruby >= 2.2
|
17
|
-
- gemfile: Gemfile.cucumber-3.0
|
18
|
-
rvm: 2.1.10 # cucumber 3 wants ruby >= 2.2
|
19
|
-
|
20
|
-
install:
|
21
|
-
# Replace default Travis CI bundler script with a version that doesn't
|
22
|
-
# explode when lockfile doesn't match recently bumped version
|
23
|
-
- bundle install --no-deployment --jobs=3 --retry=3 --path=${BUNDLE_PATH:-vendor/bundle}
|
24
|
-
|
25
|
-
before_script:
|
26
|
-
- mysql -e 'create database IF NOT EXISTS cucumber_factory_test;'
|
27
|
-
|
28
|
-
script: bundle exec rake current_rspec
|
29
|
-
|
30
|
-
sudo: false
|
31
|
-
|
32
|
-
cache: bundler
|