spreewald 2.4.0 → 2.4.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -1
- data/.travis.yml +14 -15
- data/CHANGELOG.md +7 -0
- data/Gemfile +1 -2
- data/Gemfile.lock +1 -16
- data/Gemfile.ruby266 +9 -0
- data/Gemfile.ruby266.lock +65 -0
- data/README.md +5 -0
- data/Rakefile +12 -2
- data/lib/spreewald/web_steps.rb +2 -2
- data/lib/spreewald_support/version.rb +1 -1
- data/tests/rails-3_capybara-1/Gemfile.lock +1 -1
- data/tests/rails-3_capybara-1/config/routes.rb +1 -0
- data/tests/rails-3_capybara-2/Gemfile.lock +1 -1
- data/tests/rails-4_capybara-3/Gemfile +1 -1
- data/tests/rails-4_capybara-3/Gemfile.lock +1 -1
- data/tests/rails-4_capybara-3/config/routes.rb +1 -0
- data/tests/rails-6_capybara-3/.ruby-version +1 -0
- data/tests/rails-6_capybara-3/Gemfile +25 -0
- data/tests/rails-6_capybara-3/Gemfile.lock +264 -0
- data/tests/rails-6_capybara-3/README.md +24 -0
- data/tests/rails-6_capybara-3/Rakefile +6 -0
- data/tests/rails-6_capybara-3/app/controllers +1 -0
- data/tests/rails-6_capybara-3/app/mailers/application_mailer.rb +4 -0
- data/tests/rails-6_capybara-3/app/mailers/spreewald_mailer.rb +30 -0
- data/tests/rails-6_capybara-3/app/models/application_record.rb +3 -0
- data/tests/rails-6_capybara-3/app/views +1 -0
- data/tests/rails-6_capybara-3/bin/bundle +114 -0
- data/tests/rails-6_capybara-3/bin/rails +4 -0
- data/tests/rails-6_capybara-3/bin/rake +4 -0
- data/tests/rails-6_capybara-3/bin/setup +33 -0
- data/tests/rails-6_capybara-3/config.ru +5 -0
- data/tests/rails-6_capybara-3/config/application.rb +35 -0
- data/tests/rails-6_capybara-3/config/boot.rb +3 -0
- data/tests/rails-6_capybara-3/config/cucumber.yml +9 -0
- data/tests/rails-6_capybara-3/config/database.yml +25 -0
- data/tests/rails-6_capybara-3/config/environment.rb +5 -0
- data/tests/rails-6_capybara-3/config/environments/development.rb +48 -0
- data/tests/rails-6_capybara-3/config/environments/test.rb +45 -0
- data/tests/rails-6_capybara-3/config/initializers/application_controller_renderer.rb +8 -0
- data/tests/rails-6_capybara-3/config/initializers/backtrace_silencers.rb +7 -0
- data/tests/rails-6_capybara-3/config/initializers/content_security_policy.rb +28 -0
- data/tests/rails-6_capybara-3/config/initializers/cookies_serializer.rb +5 -0
- data/tests/rails-6_capybara-3/config/initializers/filter_parameter_logging.rb +4 -0
- data/tests/rails-6_capybara-3/config/initializers/inflections.rb +16 -0
- data/tests/rails-6_capybara-3/config/initializers/mime_types.rb +4 -0
- data/tests/rails-6_capybara-3/config/initializers/wrap_parameters.rb +14 -0
- data/tests/rails-6_capybara-3/config/locales/en.yml +33 -0
- data/tests/rails-6_capybara-3/config/routes.rb +1 -0
- data/tests/rails-6_capybara-3/db +1 -0
- data/tests/rails-6_capybara-3/features/development_steps.feature +1 -0
- data/tests/rails-6_capybara-3/features/email_steps.feature +1 -0
- data/tests/rails-6_capybara-3/features/overriding.feature +1 -0
- data/tests/{shared/db/migrate/.gitignore → rails-6_capybara-3/features/step_definitions/.gitkeep} +0 -0
- data/tests/rails-6_capybara-3/features/step_definitions/overriding_steps.rb +1 -0
- data/tests/rails-6_capybara-3/features/step_definitions/test_steps.rb +1 -0
- data/tests/rails-6_capybara-3/features/support/env.rb +66 -0
- data/tests/rails-6_capybara-3/features/support/paths.rb +1 -0
- data/tests/rails-6_capybara-3/features/support/selectors.rb +1 -0
- data/tests/rails-6_capybara-3/features/support/selenium.rb +3 -0
- data/tests/rails-6_capybara-3/features/table_steps.feature +1 -0
- data/tests/rails-6_capybara-3/features/web_steps.feature +1 -0
- data/tests/rails-6_capybara-3/lib/tasks/.keep +0 -0
- data/tests/rails-6_capybara-3/lib/tasks/cucumber.rake +76 -0
- data/tests/rails-6_capybara-3/log/.keep +0 -0
- data/tests/rails-6_capybara-3/public/404.html +67 -0
- data/tests/rails-6_capybara-3/public/422.html +67 -0
- data/tests/rails-6_capybara-3/public/500.html +66 -0
- data/tests/rails-6_capybara-3/public/favicon.ico +0 -0
- data/tests/rails-6_capybara-3/public/fixture_files +1 -0
- data/tests/rails-6_capybara-3/script/cucumber +11 -0
- data/tests/shared/app/controllers/application_controller.rb +9 -0
- data/tests/shared/app/controllers/authenticated_controller.rb +10 -2
- data/tests/shared/app/controllers/emails_controller.rb +8 -5
- data/tests/shared/app/controllers/forms_controller.rb +3 -0
- data/tests/shared/app/controllers/static_pages_controller.rb +8 -2
- data/tests/shared/app/views/layouts/mailer.html.erb +13 -0
- data/tests/shared/app/views/layouts/mailer.text.erb +1 -0
- data/tests/shared/app/views/spreewald_mailer +1 -0
- data/tests/shared/config/routes.rb +33 -0
- data/tests/shared/db/migrate/.keep +0 -0
- metadata +124 -6
- data/tests/rails-3_capybara-1/config/routes.rb +0 -5
- data/tests/rails-4_capybara-3/.gitignore +0 -17
- data/tests/rails-4_capybara-3/config/routes.rb +0 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c226a047c194764d7645b43c70ab3b07d1a3e7a0d609a4e87dd8baab8e3c3a88
|
4
|
+
data.tar.gz: ecdfa9f9aa7fe19da7bc3a8e2f7852a80d4d397f4342e873fe89a32276c9f9d0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d2e322bb7fb70096255ade88045b40408f0d1b0899120f159ea5831b65a40bc5a4d7d2bfb0b9b9ede7ba3f7b8aca0a904129076c7c49cafc7c6780bcd0e329d1
|
7
|
+
data.tar.gz: 190918ee162ba71606593416c1ae87f1f963a92f316f10f0c7c50f6a3217c7bc1670ccd1412372faa75504d4c0bbff98bd7dd49b88470a3ee162f477052fff5b
|
data/.gitignore
CHANGED
data/.travis.yml
CHANGED
@@ -6,25 +6,24 @@ language: ruby
|
|
6
6
|
rvm:
|
7
7
|
- 2.1.8
|
8
8
|
- 2.4.5
|
9
|
-
|
10
|
-
gemfile:
|
11
|
-
# Test projects
|
12
|
-
- tests/rails-3_capybara-1/Gemfile
|
13
|
-
- tests/rails-3_capybara-2/Gemfile
|
14
|
-
- tests/rails-4_capybara-3/Gemfile
|
15
|
-
# Used to run rspec and tests for spreewald binary:
|
16
|
-
- Gemfile.ruby218
|
17
|
-
- Gemfile.ruby245
|
9
|
+
- 2.6.6
|
18
10
|
|
19
11
|
matrix:
|
20
|
-
|
12
|
+
include:
|
13
|
+
# Test projects
|
21
14
|
- gemfile: tests/rails-3_capybara-1/Gemfile
|
22
|
-
rvm: 2.
|
15
|
+
rvm: 2.1.8
|
23
16
|
- gemfile: tests/rails-3_capybara-2/Gemfile
|
24
|
-
rvm: 2.4.5
|
25
|
-
- gemfile: tests/rails-4_capybara-3/Gemfile
|
26
17
|
rvm: 2.1.8
|
27
|
-
- gemfile: Gemfile
|
18
|
+
- gemfile: tests/rails-4_capybara-3/Gemfile
|
28
19
|
rvm: 2.4.5
|
29
|
-
- gemfile: Gemfile
|
20
|
+
- gemfile: tests/rails-6_capybara-3/Gemfile
|
21
|
+
rvm: 2.6.6
|
22
|
+
# Used to run rspec and tests for spreewald binary:
|
23
|
+
- gemfile: Gemfile.ruby218
|
30
24
|
rvm: 2.1.8
|
25
|
+
- gemfile: Gemfile.ruby245
|
26
|
+
rvm: 2.4.5
|
27
|
+
- gemfile: Gemfile.ruby266
|
28
|
+
rvm: 2.6.6
|
29
|
+
|
data/CHANGELOG.md
CHANGED
@@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file.
|
|
3
3
|
|
4
4
|
This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
5
5
|
|
6
|
+
## 2.4.2
|
7
|
+
* Fix the step `I should( not)? see a link labeled "STRING"`, it is now overridable.
|
8
|
+
|
9
|
+
## 2.4.1
|
10
|
+
|
11
|
+
- Adapt `I should get a download with filename "..."` step to also work if the `filename` is not the last attribute in `Content-Disposition` header.
|
12
|
+
|
6
13
|
## 2.4.0
|
7
14
|
|
8
15
|
- Fix "I follow the ... link in the email" step for HTML e-mails to only follow URLs from `<a href="...">` links.
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,22 +1,8 @@
|
|
1
1
|
GEM
|
2
2
|
remote: https://rubygems.org/
|
3
3
|
specs:
|
4
|
-
|
5
|
-
gemika (0.3.4)
|
4
|
+
gemika (0.4.0)
|
6
5
|
rake (12.3.2)
|
7
|
-
rspec (3.8.0)
|
8
|
-
rspec-core (~> 3.8.0)
|
9
|
-
rspec-expectations (~> 3.8.0)
|
10
|
-
rspec-mocks (~> 3.8.0)
|
11
|
-
rspec-core (3.8.0)
|
12
|
-
rspec-support (~> 3.8.0)
|
13
|
-
rspec-expectations (3.8.3)
|
14
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
15
|
-
rspec-support (~> 3.8.0)
|
16
|
-
rspec-mocks (3.8.0)
|
17
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
18
|
-
rspec-support (~> 3.8.0)
|
19
|
-
rspec-support (3.8.0)
|
20
6
|
|
21
7
|
PLATFORMS
|
22
8
|
ruby
|
@@ -24,7 +10,6 @@ PLATFORMS
|
|
24
10
|
DEPENDENCIES
|
25
11
|
gemika
|
26
12
|
rake
|
27
|
-
rspec (>= 2.14.0)
|
28
13
|
|
29
14
|
BUNDLED WITH
|
30
15
|
1.17.3
|
data/Gemfile.ruby266
ADDED
@@ -0,0 +1,65 @@
|
|
1
|
+
GEM
|
2
|
+
remote: https://rubygems.org/
|
3
|
+
specs:
|
4
|
+
aruba (1.0.0)
|
5
|
+
childprocess (~> 3.0)
|
6
|
+
contracts (~> 0.16.0)
|
7
|
+
cucumber (>= 2.4, < 4.0)
|
8
|
+
ffi (~> 1.9)
|
9
|
+
rspec-expectations (~> 3.4)
|
10
|
+
thor (~> 1.0)
|
11
|
+
backports (3.17.0)
|
12
|
+
builder (3.2.4)
|
13
|
+
childprocess (3.0.0)
|
14
|
+
contracts (0.16.0)
|
15
|
+
cucumber (3.1.2)
|
16
|
+
builder (>= 2.1.2)
|
17
|
+
cucumber-core (~> 3.2.0)
|
18
|
+
cucumber-expressions (~> 6.0.1)
|
19
|
+
cucumber-wire (~> 0.0.1)
|
20
|
+
diff-lcs (~> 1.3)
|
21
|
+
gherkin (~> 5.1.0)
|
22
|
+
multi_json (>= 1.7.5, < 2.0)
|
23
|
+
multi_test (>= 0.1.2)
|
24
|
+
cucumber-core (3.2.1)
|
25
|
+
backports (>= 3.8.0)
|
26
|
+
cucumber-tag_expressions (~> 1.1.0)
|
27
|
+
gherkin (~> 5.0)
|
28
|
+
cucumber-expressions (6.0.1)
|
29
|
+
cucumber-tag_expressions (1.1.1)
|
30
|
+
cucumber-wire (0.0.1)
|
31
|
+
diff-lcs (1.3)
|
32
|
+
ffi (1.12.2)
|
33
|
+
gemika (0.4.0)
|
34
|
+
gherkin (5.1.0)
|
35
|
+
multi_json (1.14.1)
|
36
|
+
multi_test (0.1.2)
|
37
|
+
rspec (3.9.0)
|
38
|
+
rspec-core (~> 3.9.0)
|
39
|
+
rspec-expectations (~> 3.9.0)
|
40
|
+
rspec-mocks (~> 3.9.0)
|
41
|
+
rspec-core (3.9.1)
|
42
|
+
rspec-support (~> 3.9.1)
|
43
|
+
rspec-expectations (3.9.1)
|
44
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
45
|
+
rspec-support (~> 3.9.0)
|
46
|
+
rspec-mocks (3.9.1)
|
47
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
48
|
+
rspec-support (~> 3.9.0)
|
49
|
+
rspec-support (3.9.2)
|
50
|
+
thor (1.0.1)
|
51
|
+
|
52
|
+
PLATFORMS
|
53
|
+
ruby
|
54
|
+
|
55
|
+
DEPENDENCIES
|
56
|
+
aruba
|
57
|
+
cucumber
|
58
|
+
gemika
|
59
|
+
rspec
|
60
|
+
|
61
|
+
RUBY VERSION
|
62
|
+
ruby 2.6.6p146
|
63
|
+
|
64
|
+
BUNDLED WITH
|
65
|
+
2.1.4
|
data/README.md
CHANGED
@@ -93,6 +93,11 @@ Capybara.default_normalize_ws = true
|
|
93
93
|
|
94
94
|
This will affect all Spreewald steps that are using Capybara's `:text` option.
|
95
95
|
|
96
|
+
Furthermore, we recommend setting [Capybara's matching strategy](https://github.com/teamcapybara/capybara/blob/master/README.md#strategy) to `:prefer_exact`. This will positively affect Spreewald steps as it prevents the `Capybara::Ambiguous` error in the edge case when two fields are matching the given name, but one of the matches includes the name only as a substring,
|
97
|
+
|
98
|
+
```ruby
|
99
|
+
Capybara.match = :prefer_exact
|
100
|
+
````
|
96
101
|
|
97
102
|
## Contributing
|
98
103
|
|
data/Rakefile
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
#!/usr/bin/env rake
|
2
|
-
require
|
2
|
+
require 'bundler/gem_tasks'
|
3
3
|
|
4
4
|
begin
|
5
5
|
require 'gemika/tasks'
|
@@ -17,7 +17,7 @@ namespace :matrix do
|
|
17
17
|
directory = File.dirname(row.gemfile)
|
18
18
|
if directory.start_with?('tests')
|
19
19
|
# Run integration tests (uses embedded projects)
|
20
|
-
system(
|
20
|
+
system(cucumber_command(directory, row.ruby))
|
21
21
|
else
|
22
22
|
# Run specs and tests for spreewald binary
|
23
23
|
[
|
@@ -54,6 +54,16 @@ task :update_readme do
|
|
54
54
|
puts '', '> Done (diff applied).'
|
55
55
|
end
|
56
56
|
|
57
|
+
def cucumber_command(directory, ruby_version)
|
58
|
+
command = "cd #{directory} && BUNDLE_GEMFILE=Gemfile geordi cucumber"
|
59
|
+
if Gem::Version.new(ruby_version) > Gem::Version.new('2.5')
|
60
|
+
# Modern cucumber sees pending tests as failures.
|
61
|
+
# We don't want this.
|
62
|
+
command << ' --no-strict-pending'
|
63
|
+
end
|
64
|
+
command
|
65
|
+
end
|
66
|
+
|
57
67
|
def warn(text)
|
58
68
|
puts "\e[31m#{text}\e[0m" # red text
|
59
69
|
end
|
data/lib/spreewald/web_steps.rb
CHANGED
@@ -322,7 +322,7 @@ Then /^I should( not)? see a link labeled "([^"]*)"$/ do |negate, label|
|
|
322
322
|
expectation = negate ? :not_to : :to
|
323
323
|
link = page.first('a', :text => label, minimum: 0) || page.first(%(a[title="#{label}"]), minimum: 0)
|
324
324
|
expect(link).send(expectation, be_present)
|
325
|
-
end
|
325
|
+
end.overridable
|
326
326
|
|
327
327
|
# Checks that an input field contains some value (allowing * as wildcard character)
|
328
328
|
Then /^the "([^"]*)" field should (not )?contain "([^"]*)"$/ do |label, negate, expected_string|
|
@@ -463,7 +463,7 @@ end.overridable
|
|
463
463
|
#
|
464
464
|
# Attention: Doesn't work with Selenium, see https://github.com/jnicklas/capybara#gotchas
|
465
465
|
Then /^I should get a download with filename "([^\"]*)"$/ do |filename|
|
466
|
-
expect(page.response_headers['Content-Disposition']).to match /filename="#{Regexp.escape(filename)}"
|
466
|
+
expect(page.response_headers['Content-Disposition']).to match /filename="#{Regexp.escape(filename)}"(;|$)/
|
467
467
|
end.overridable
|
468
468
|
|
469
469
|
# Checks that a certain option is selected for a text field
|
@@ -0,0 +1 @@
|
|
1
|
+
../../shared/config/routes.rb
|
@@ -0,0 +1 @@
|
|
1
|
+
../../shared/config/routes.rb
|
@@ -0,0 +1 @@
|
|
1
|
+
2.7.1
|
@@ -0,0 +1,25 @@
|
|
1
|
+
source 'https://rubygems.org'
|
2
|
+
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
3
|
+
|
4
|
+
ruby '2.6.6'
|
5
|
+
|
6
|
+
gem 'rails', '~>6.0'
|
7
|
+
gem 'sqlite3'
|
8
|
+
gem 'haml-rails'
|
9
|
+
gem 'gemika'
|
10
|
+
|
11
|
+
group :development, :test do
|
12
|
+
gem 'byebug'
|
13
|
+
gem 'pry'
|
14
|
+
end
|
15
|
+
|
16
|
+
group :test do
|
17
|
+
gem 'database_cleaner'
|
18
|
+
gem 'capybara', "~>3"
|
19
|
+
gem 'capybara-screenshot'
|
20
|
+
gem 'cucumber-rails', require: false
|
21
|
+
gem 'cucumber'
|
22
|
+
gem 'selenium-webdriver'
|
23
|
+
gem 'rspec-rails'
|
24
|
+
gem 'spreewald', :path => '../..'
|
25
|
+
end
|
@@ -0,0 +1,264 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ../..
|
3
|
+
specs:
|
4
|
+
spreewald (2.4.1)
|
5
|
+
cucumber
|
6
|
+
cucumber_priority (>= 0.3.0)
|
7
|
+
rspec (>= 2.13.0)
|
8
|
+
|
9
|
+
GEM
|
10
|
+
remote: https://rubygems.org/
|
11
|
+
specs:
|
12
|
+
actioncable (6.0.2.2)
|
13
|
+
actionpack (= 6.0.2.2)
|
14
|
+
nio4r (~> 2.0)
|
15
|
+
websocket-driver (>= 0.6.1)
|
16
|
+
actionmailbox (6.0.2.2)
|
17
|
+
actionpack (= 6.0.2.2)
|
18
|
+
activejob (= 6.0.2.2)
|
19
|
+
activerecord (= 6.0.2.2)
|
20
|
+
activestorage (= 6.0.2.2)
|
21
|
+
activesupport (= 6.0.2.2)
|
22
|
+
mail (>= 2.7.1)
|
23
|
+
actionmailer (6.0.2.2)
|
24
|
+
actionpack (= 6.0.2.2)
|
25
|
+
actionview (= 6.0.2.2)
|
26
|
+
activejob (= 6.0.2.2)
|
27
|
+
mail (~> 2.5, >= 2.5.4)
|
28
|
+
rails-dom-testing (~> 2.0)
|
29
|
+
actionpack (6.0.2.2)
|
30
|
+
actionview (= 6.0.2.2)
|
31
|
+
activesupport (= 6.0.2.2)
|
32
|
+
rack (~> 2.0, >= 2.0.8)
|
33
|
+
rack-test (>= 0.6.3)
|
34
|
+
rails-dom-testing (~> 2.0)
|
35
|
+
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
36
|
+
actiontext (6.0.2.2)
|
37
|
+
actionpack (= 6.0.2.2)
|
38
|
+
activerecord (= 6.0.2.2)
|
39
|
+
activestorage (= 6.0.2.2)
|
40
|
+
activesupport (= 6.0.2.2)
|
41
|
+
nokogiri (>= 1.8.5)
|
42
|
+
actionview (6.0.2.2)
|
43
|
+
activesupport (= 6.0.2.2)
|
44
|
+
builder (~> 3.1)
|
45
|
+
erubi (~> 1.4)
|
46
|
+
rails-dom-testing (~> 2.0)
|
47
|
+
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
48
|
+
activejob (6.0.2.2)
|
49
|
+
activesupport (= 6.0.2.2)
|
50
|
+
globalid (>= 0.3.6)
|
51
|
+
activemodel (6.0.2.2)
|
52
|
+
activesupport (= 6.0.2.2)
|
53
|
+
activerecord (6.0.2.2)
|
54
|
+
activemodel (= 6.0.2.2)
|
55
|
+
activesupport (= 6.0.2.2)
|
56
|
+
activestorage (6.0.2.2)
|
57
|
+
actionpack (= 6.0.2.2)
|
58
|
+
activejob (= 6.0.2.2)
|
59
|
+
activerecord (= 6.0.2.2)
|
60
|
+
marcel (~> 0.3.1)
|
61
|
+
activesupport (6.0.2.2)
|
62
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
63
|
+
i18n (>= 0.7, < 2)
|
64
|
+
minitest (~> 5.1)
|
65
|
+
tzinfo (~> 1.1)
|
66
|
+
zeitwerk (~> 2.2)
|
67
|
+
addressable (2.7.0)
|
68
|
+
public_suffix (>= 2.0.2, < 5.0)
|
69
|
+
backports (3.17.0)
|
70
|
+
builder (3.2.4)
|
71
|
+
byebug (11.1.1)
|
72
|
+
capybara (3.32.0)
|
73
|
+
addressable
|
74
|
+
mini_mime (>= 0.1.3)
|
75
|
+
nokogiri (~> 1.8)
|
76
|
+
rack (>= 1.6.0)
|
77
|
+
rack-test (>= 0.6.3)
|
78
|
+
regexp_parser (~> 1.5)
|
79
|
+
xpath (~> 3.2)
|
80
|
+
capybara-screenshot (1.0.24)
|
81
|
+
capybara (>= 1.0, < 4)
|
82
|
+
launchy
|
83
|
+
childprocess (3.0.0)
|
84
|
+
coderay (1.1.2)
|
85
|
+
concurrent-ruby (1.1.6)
|
86
|
+
crass (1.0.6)
|
87
|
+
cucumber (3.1.2)
|
88
|
+
builder (>= 2.1.2)
|
89
|
+
cucumber-core (~> 3.2.0)
|
90
|
+
cucumber-expressions (~> 6.0.1)
|
91
|
+
cucumber-wire (~> 0.0.1)
|
92
|
+
diff-lcs (~> 1.3)
|
93
|
+
gherkin (~> 5.1.0)
|
94
|
+
multi_json (>= 1.7.5, < 2.0)
|
95
|
+
multi_test (>= 0.1.2)
|
96
|
+
cucumber-core (3.2.1)
|
97
|
+
backports (>= 3.8.0)
|
98
|
+
cucumber-tag_expressions (~> 1.1.0)
|
99
|
+
gherkin (~> 5.0)
|
100
|
+
cucumber-expressions (6.0.1)
|
101
|
+
cucumber-rails (2.0.0)
|
102
|
+
capybara (>= 2.12, < 4)
|
103
|
+
cucumber (>= 3.0.2, < 4)
|
104
|
+
mime-types (>= 2.0, < 4)
|
105
|
+
nokogiri (~> 1.8)
|
106
|
+
railties (>= 4.2, < 7)
|
107
|
+
cucumber-tag_expressions (1.1.1)
|
108
|
+
cucumber-wire (0.0.1)
|
109
|
+
cucumber_priority (0.3.2)
|
110
|
+
cucumber
|
111
|
+
database_cleaner (1.7.0)
|
112
|
+
diff-lcs (1.3)
|
113
|
+
erubi (1.9.0)
|
114
|
+
erubis (2.7.0)
|
115
|
+
gemika (0.4.0)
|
116
|
+
gherkin (5.1.0)
|
117
|
+
globalid (0.4.2)
|
118
|
+
activesupport (>= 4.2.0)
|
119
|
+
haml (5.1.2)
|
120
|
+
temple (>= 0.8.0)
|
121
|
+
tilt
|
122
|
+
haml-rails (2.0.1)
|
123
|
+
actionpack (>= 5.1)
|
124
|
+
activesupport (>= 5.1)
|
125
|
+
haml (>= 4.0.6, < 6.0)
|
126
|
+
html2haml (>= 1.0.1)
|
127
|
+
railties (>= 5.1)
|
128
|
+
html2haml (2.2.0)
|
129
|
+
erubis (~> 2.7.0)
|
130
|
+
haml (>= 4.0, < 6)
|
131
|
+
nokogiri (>= 1.6.0)
|
132
|
+
ruby_parser (~> 3.5)
|
133
|
+
i18n (1.8.2)
|
134
|
+
concurrent-ruby (~> 1.0)
|
135
|
+
launchy (2.5.0)
|
136
|
+
addressable (~> 2.7)
|
137
|
+
loofah (2.4.0)
|
138
|
+
crass (~> 1.0.2)
|
139
|
+
nokogiri (>= 1.5.9)
|
140
|
+
mail (2.7.1)
|
141
|
+
mini_mime (>= 0.1.1)
|
142
|
+
marcel (0.3.3)
|
143
|
+
mimemagic (~> 0.3.2)
|
144
|
+
method_source (1.0.0)
|
145
|
+
mime-types (3.3.1)
|
146
|
+
mime-types-data (~> 3.2015)
|
147
|
+
mime-types-data (3.2019.1009)
|
148
|
+
mimemagic (0.3.4)
|
149
|
+
mini_mime (1.0.2)
|
150
|
+
mini_portile2 (2.4.0)
|
151
|
+
minitest (5.14.0)
|
152
|
+
multi_json (1.14.1)
|
153
|
+
multi_test (0.1.2)
|
154
|
+
nio4r (2.5.2)
|
155
|
+
nokogiri (1.10.9)
|
156
|
+
mini_portile2 (~> 2.4.0)
|
157
|
+
pry (0.13.0)
|
158
|
+
coderay (~> 1.1)
|
159
|
+
method_source (~> 1.0)
|
160
|
+
public_suffix (4.0.3)
|
161
|
+
rack (2.2.2)
|
162
|
+
rack-test (1.1.0)
|
163
|
+
rack (>= 1.0, < 3)
|
164
|
+
rails (6.0.2.2)
|
165
|
+
actioncable (= 6.0.2.2)
|
166
|
+
actionmailbox (= 6.0.2.2)
|
167
|
+
actionmailer (= 6.0.2.2)
|
168
|
+
actionpack (= 6.0.2.2)
|
169
|
+
actiontext (= 6.0.2.2)
|
170
|
+
actionview (= 6.0.2.2)
|
171
|
+
activejob (= 6.0.2.2)
|
172
|
+
activemodel (= 6.0.2.2)
|
173
|
+
activerecord (= 6.0.2.2)
|
174
|
+
activestorage (= 6.0.2.2)
|
175
|
+
activesupport (= 6.0.2.2)
|
176
|
+
bundler (>= 1.3.0)
|
177
|
+
railties (= 6.0.2.2)
|
178
|
+
sprockets-rails (>= 2.0.0)
|
179
|
+
rails-dom-testing (2.0.3)
|
180
|
+
activesupport (>= 4.2.0)
|
181
|
+
nokogiri (>= 1.6)
|
182
|
+
rails-html-sanitizer (1.3.0)
|
183
|
+
loofah (~> 2.3)
|
184
|
+
railties (6.0.2.2)
|
185
|
+
actionpack (= 6.0.2.2)
|
186
|
+
activesupport (= 6.0.2.2)
|
187
|
+
method_source
|
188
|
+
rake (>= 0.8.7)
|
189
|
+
thor (>= 0.20.3, < 2.0)
|
190
|
+
rake (13.0.1)
|
191
|
+
regexp_parser (1.7.0)
|
192
|
+
rspec (3.9.0)
|
193
|
+
rspec-core (~> 3.9.0)
|
194
|
+
rspec-expectations (~> 3.9.0)
|
195
|
+
rspec-mocks (~> 3.9.0)
|
196
|
+
rspec-core (3.9.1)
|
197
|
+
rspec-support (~> 3.9.1)
|
198
|
+
rspec-expectations (3.9.1)
|
199
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
200
|
+
rspec-support (~> 3.9.0)
|
201
|
+
rspec-mocks (3.9.1)
|
202
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
203
|
+
rspec-support (~> 3.9.0)
|
204
|
+
rspec-rails (4.0.0)
|
205
|
+
actionpack (>= 4.2)
|
206
|
+
activesupport (>= 4.2)
|
207
|
+
railties (>= 4.2)
|
208
|
+
rspec-core (~> 3.9)
|
209
|
+
rspec-expectations (~> 3.9)
|
210
|
+
rspec-mocks (~> 3.9)
|
211
|
+
rspec-support (~> 3.9)
|
212
|
+
rspec-support (3.9.2)
|
213
|
+
ruby_parser (3.14.2)
|
214
|
+
sexp_processor (~> 4.9)
|
215
|
+
rubyzip (2.3.0)
|
216
|
+
selenium-webdriver (3.142.7)
|
217
|
+
childprocess (>= 0.5, < 4.0)
|
218
|
+
rubyzip (>= 1.2.2)
|
219
|
+
sexp_processor (4.14.1)
|
220
|
+
sprockets (4.0.0)
|
221
|
+
concurrent-ruby (~> 1.0)
|
222
|
+
rack (> 1, < 3)
|
223
|
+
sprockets-rails (3.2.1)
|
224
|
+
actionpack (>= 4.0)
|
225
|
+
activesupport (>= 4.0)
|
226
|
+
sprockets (>= 3.0.0)
|
227
|
+
sqlite3 (1.4.2)
|
228
|
+
temple (0.8.2)
|
229
|
+
thor (1.0.1)
|
230
|
+
thread_safe (0.3.6)
|
231
|
+
tilt (2.0.10)
|
232
|
+
tzinfo (1.2.6)
|
233
|
+
thread_safe (~> 0.1)
|
234
|
+
websocket-driver (0.7.1)
|
235
|
+
websocket-extensions (>= 0.1.0)
|
236
|
+
websocket-extensions (0.1.4)
|
237
|
+
xpath (3.2.0)
|
238
|
+
nokogiri (~> 1.8)
|
239
|
+
zeitwerk (2.3.0)
|
240
|
+
|
241
|
+
PLATFORMS
|
242
|
+
ruby
|
243
|
+
|
244
|
+
DEPENDENCIES
|
245
|
+
byebug
|
246
|
+
capybara (~> 3)
|
247
|
+
capybara-screenshot
|
248
|
+
cucumber
|
249
|
+
cucumber-rails
|
250
|
+
database_cleaner
|
251
|
+
gemika
|
252
|
+
haml-rails
|
253
|
+
pry
|
254
|
+
rails (~> 6.0)
|
255
|
+
rspec-rails
|
256
|
+
selenium-webdriver
|
257
|
+
spreewald!
|
258
|
+
sqlite3
|
259
|
+
|
260
|
+
RUBY VERSION
|
261
|
+
ruby 2.6.6p146
|
262
|
+
|
263
|
+
BUNDLED WITH
|
264
|
+
2.1.4
|