spreewald 3.0.2 → 4.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/test.yml +42 -0
- data/.ruby-version +1 -1
- data/CHANGELOG.md +29 -0
- data/Gemfile +1 -1
- data/Gemfile.lock +2 -2
- data/Gemfile.ruby245 +3 -0
- data/Gemfile.ruby245.lock +11 -2
- data/Gemfile.ruby266 +3 -0
- data/Gemfile.ruby266.lock +12 -2
- data/{Gemfile.ruby218 → Gemfile.ruby300} +6 -1
- data/Gemfile.ruby300.lock +108 -0
- data/README.md +41 -3
- data/Rakefile +34 -19
- data/features/binary.feature +2 -2
- data/features/support/step_definitions/custom_steps.rb +10 -0
- data/lib/spreewald.rb +1 -0
- data/lib/spreewald/browser_tab_steps.rb +1 -1
- data/lib/spreewald/development_steps.rb +5 -5
- data/lib/spreewald/email_steps.rb +3 -1
- data/lib/spreewald/frame_steps.rb +77 -0
- data/lib/spreewald_support/mail_finder.rb +11 -10
- data/lib/spreewald_support/mail_to_plaintext_converter.rb +42 -0
- data/lib/spreewald_support/unsupported_email_header.rb +22 -0
- data/lib/spreewald_support/version.rb +1 -1
- data/spec/spreewald_support/mail_to_plaintext_converter_spec.rb +60 -0
- data/tests/{rails-4_capybara-3 → rails-4_capybara-2}/Gemfile +1 -1
- data/tests/{rails-4_capybara-3 → rails-4_capybara-2}/Gemfile.lock +15 -17
- data/tests/{rails-4_capybara-3 → rails-4_capybara-2}/README.rdoc +0 -0
- data/tests/{rails-4_capybara-3 → rails-4_capybara-2}/Rakefile +0 -0
- data/tests/{rails-4_capybara-3 → rails-4_capybara-2}/app +0 -0
- data/tests/{rails-4_capybara-3 → rails-4_capybara-2}/bin/bundle +0 -0
- data/tests/{rails-4_capybara-3 → rails-4_capybara-2}/bin/rails +0 -0
- data/tests/{rails-4_capybara-3 → rails-4_capybara-2}/bin/rake +0 -0
- data/tests/{rails-4_capybara-3 → rails-4_capybara-2}/bin/setup +0 -0
- data/tests/{rails-4_capybara-3 → rails-4_capybara-2}/config.ru +0 -0
- data/tests/{rails-4_capybara-3 → rails-4_capybara-2}/config/application.rb +0 -0
- data/tests/{rails-4_capybara-3 → rails-4_capybara-2}/config/boot.rb +0 -0
- data/tests/{rails-4_capybara-3 → rails-4_capybara-2}/config/cucumber.yml +0 -0
- data/tests/{rails-4_capybara-3 → rails-4_capybara-2}/config/database.yml +0 -0
- data/tests/{rails-4_capybara-3 → rails-4_capybara-2}/config/environment.rb +0 -0
- data/tests/{rails-4_capybara-3 → rails-4_capybara-2}/config/environments/development.rb +0 -0
- data/tests/{rails-4_capybara-3 → rails-4_capybara-2}/config/environments/test.rb +0 -0
- data/tests/{rails-4_capybara-3 → rails-4_capybara-2}/config/initializers/backtrace_silencers.rb +0 -0
- data/tests/{rails-4_capybara-3 → rails-4_capybara-2}/config/initializers/cookies_serializer.rb +0 -0
- data/tests/{rails-4_capybara-3 → rails-4_capybara-2}/config/initializers/filter_parameter_logging.rb +0 -0
- data/tests/{rails-4_capybara-3 → rails-4_capybara-2}/config/initializers/inflections.rb +0 -0
- data/tests/{rails-4_capybara-3 → rails-4_capybara-2}/config/initializers/mime_types.rb +0 -0
- data/tests/{rails-4_capybara-3 → rails-4_capybara-2}/config/initializers/session_store.rb +0 -0
- data/tests/{rails-4_capybara-3 → rails-4_capybara-2}/config/initializers/silence_deprecation_warnings.rb +0 -0
- data/tests/{rails-4_capybara-3 → rails-4_capybara-2}/config/initializers/to_time_preserves_timezone.rb +0 -0
- data/tests/{rails-4_capybara-3 → rails-4_capybara-2}/config/initializers/wrap_parameters.rb +0 -0
- data/tests/{rails-4_capybara-3 → rails-4_capybara-2}/config/locales/en.yml +0 -0
- data/tests/{rails-3_capybara-1 → rails-4_capybara-2}/config/routes.rb +0 -0
- data/tests/{rails-4_capybara-3 → rails-4_capybara-2}/config/secrets.yml +0 -0
- data/tests/{rails-4_capybara-3 → rails-4_capybara-2}/db +0 -0
- data/tests/{rails-4_capybara-3 → rails-4_capybara-2}/features/browser_tab_steps.feature +0 -0
- data/tests/{rails-4_capybara-3 → rails-4_capybara-2}/features/development_steps.feature +0 -0
- data/tests/{rails-4_capybara-3 → rails-4_capybara-2}/features/email_steps.feature +0 -0
- data/tests/rails-4_capybara-2/features/iframe_steps.feature +1 -0
- data/tests/{rails-4_capybara-3 → rails-4_capybara-2}/features/overriding.feature +0 -0
- data/tests/{rails-4_capybara-3 → rails-4_capybara-2}/features/session_steps.feature +0 -0
- data/tests/{rails-4_capybara-3 → rails-4_capybara-2}/features/step_definitions/overriding_steps.rb +0 -0
- data/tests/{rails-4_capybara-3 → rails-4_capybara-2}/features/step_definitions/test_steps.rb +0 -0
- data/tests/{rails-4_capybara-3 → rails-4_capybara-2}/features/support/env.rb +0 -0
- data/tests/{rails-3_capybara-1 → rails-4_capybara-2}/features/support/paths.rb +0 -0
- data/tests/{rails-3_capybara-1 → rails-4_capybara-2}/features/support/selectors.rb +0 -0
- data/tests/rails-4_capybara-2/features/support/selenium.rb +1 -0
- data/tests/{rails-4_capybara-3 → rails-4_capybara-2}/features/table_steps.feature +0 -0
- data/tests/{rails-4_capybara-3 → rails-4_capybara-2}/features/time_steps.feature +0 -0
- data/tests/{rails-4_capybara-3 → rails-4_capybara-2}/features/web_steps.feature +0 -0
- data/tests/{rails-4_capybara-3 → rails-4_capybara-2}/lib/tasks/cucumber.rake +0 -0
- data/tests/{rails-4_capybara-3 → rails-4_capybara-2}/log/.keep +0 -0
- data/tests/{rails-4_capybara-3 → rails-4_capybara-2}/public/404.html +0 -0
- data/tests/{rails-4_capybara-3 → rails-4_capybara-2}/public/422.html +0 -0
- data/tests/{rails-4_capybara-3 → rails-4_capybara-2}/public/500.html +0 -0
- data/tests/{rails-4_capybara-3 → rails-4_capybara-2}/public/favicon.ico +0 -0
- data/tests/{rails-4_capybara-3 → rails-4_capybara-2}/public/fixture_files +0 -0
- data/tests/{rails-3_capybara-1 → rails-4_capybara-2}/script/cucumber +0 -0
- data/tests/rails-6_capybara-3/.ruby-version +1 -1
- data/tests/rails-6_capybara-3/Gemfile +4 -2
- data/tests/rails-6_capybara-3/Gemfile.lock +177 -143
- data/tests/rails-6_capybara-3/app/mailers/spreewald_mailer.rb +16 -0
- data/tests/rails-6_capybara-3/config.ru +1 -0
- data/tests/rails-6_capybara-3/config/cucumber.yml +1 -1
- data/tests/rails-6_capybara-3/config/environments/development.rb +21 -3
- data/tests/rails-6_capybara-3/config/environments/test.rb +12 -1
- data/tests/rails-6_capybara-3/config/initializers/backtrace_silencers.rb +4 -3
- data/tests/rails-6_capybara-3/config/initializers/filter_parameter_logging.rb +3 -1
- data/tests/rails-6_capybara-3/config/initializers/new_framework_defaults_6_1.rb +67 -0
- data/tests/rails-6_capybara-3/config/initializers/permissions_policy.rb +11 -0
- data/tests/rails-6_capybara-3/features/iframe_steps.feature +1 -0
- data/tests/rails-6_capybara-3/features/support/selenium.rb +1 -0
- data/tests/shared/app/controllers/emails_controller.rb +20 -0
- data/tests/shared/app/controllers/iframes_controller.rb +11 -0
- data/tests/shared/app/controllers/static_pages_controller.rb +12 -8
- data/tests/shared/app/models/mailer.rb +32 -0
- data/tests/shared/app/views/iframes/iframe_1_content.haml +12 -0
- data/tests/shared/app/views/iframes/iframe_2_content.haml +12 -0
- data/tests/shared/app/views/mailer/html_email_for_failed_test_without_header.haml +5 -0
- data/tests/shared/app/views/mailer/html_email_for_successful_test_without_header.haml +7 -0
- data/tests/shared/app/views/mailer/text_email_for_failed_test_without_header.text.erb +1 -0
- data/tests/shared/app/views/mailer/text_email_for_successful_test_without_header.text.erb +3 -0
- data/tests/shared/app/views/static_pages/iframe.haml +3 -0
- data/tests/shared/config/routes.rb +8 -0
- data/tests/shared/features/shared/email_steps.feature +185 -0
- data/tests/shared/features/shared/iframe_steps.feature +38 -0
- data/tests/shared/features/shared/step_definitions/test_steps.rb +5 -6
- data/tests/shared/features/support/selenium.rb +10 -0
- metadata +143 -184
- data/.travis.yml +0 -29
- data/Gemfile.ruby218.lock +0 -58
- data/tests/rails-3_capybara-1/.ruby-version +0 -1
- data/tests/rails-3_capybara-1/Gemfile +0 -20
- data/tests/rails-3_capybara-1/Gemfile.lock +0 -182
- data/tests/rails-3_capybara-1/Rakefile +0 -18
- data/tests/rails-3_capybara-1/app +0 -1
- data/tests/rails-3_capybara-1/config.ru +0 -4
- data/tests/rails-3_capybara-1/config/application.rb +0 -29
- data/tests/rails-3_capybara-1/config/boot.rb +0 -15
- data/tests/rails-3_capybara-1/config/cucumber.yml +0 -1
- data/tests/rails-3_capybara-1/config/database.yml +0 -1
- data/tests/rails-3_capybara-1/config/environment.rb +0 -7
- data/tests/rails-3_capybara-1/config/initializers/backtrace_silencers.rb +0 -9
- data/tests/rails-3_capybara-1/config/initializers/inflections.rb +0 -12
- data/tests/rails-3_capybara-1/config/initializers/mime_types.rb +0 -7
- data/tests/rails-3_capybara-1/config/initializers/secret_token.rb +0 -9
- data/tests/rails-3_capybara-1/config/initializers/session_store.rb +0 -5
- data/tests/rails-3_capybara-1/db +0 -1
- data/tests/rails-3_capybara-1/features/shared +0 -1
- data/tests/rails-3_capybara-1/features/support/env.rb +0 -65
- data/tests/rails-3_capybara-1/features/support/selenium.rb +0 -3
- data/tests/rails-3_capybara-1/public +0 -1
- data/tests/rails-3_capybara-1/script/rails +0 -6
- data/tests/rails-3_capybara-2/.ruby-version +0 -1
- data/tests/rails-3_capybara-2/Gemfile +0 -21
- data/tests/rails-3_capybara-2/Gemfile.lock +0 -191
- data/tests/rails-3_capybara-2/Rakefile +0 -1
- data/tests/rails-3_capybara-2/app +0 -1
- data/tests/rails-3_capybara-2/config +0 -1
- data/tests/rails-3_capybara-2/config.ru +0 -1
- data/tests/rails-3_capybara-2/db +0 -1
- data/tests/rails-3_capybara-2/features +0 -1
- data/tests/rails-3_capybara-2/public +0 -1
- data/tests/rails-3_capybara-2/script +0 -1
- data/tests/rails-4_capybara-3/config/routes.rb +0 -1
- data/tests/rails-4_capybara-3/features/support/paths.rb +0 -1
- data/tests/rails-4_capybara-3/features/support/selectors.rb +0 -1
- data/tests/rails-4_capybara-3/features/support/selenium.rb +0 -3
- data/tests/rails-4_capybara-3/script/cucumber +0 -10
- data/tests/rails-6_capybara-3/features/support/selenium.rb +0 -3
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/tests/{rails-4_capybara-3 → rails-4_capybara-2}/config/initializers/backtrace_silencers.rb
RENAMED
File without changes
|
data/tests/{rails-4_capybara-3 → rails-4_capybara-2}/config/initializers/cookies_serializer.rb
RENAMED
File without changes
|
data/tests/{rails-4_capybara-3 → rails-4_capybara-2}/config/initializers/filter_parameter_logging.rb
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1 @@
|
|
1
|
+
../../shared/features/shared/iframe_steps.feature
|
File without changes
|
File without changes
|
data/tests/{rails-4_capybara-3 → rails-4_capybara-2}/features/step_definitions/overriding_steps.rb
RENAMED
File without changes
|
data/tests/{rails-4_capybara-3 → rails-4_capybara-2}/features/step_definitions/test_steps.rb
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1 @@
|
|
1
|
+
../../../shared/features/support/selenium.rb
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
3.0.0
|
@@ -1,12 +1,14 @@
|
|
1
1
|
source 'https://rubygems.org'
|
2
2
|
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
3
3
|
|
4
|
-
ruby '
|
4
|
+
ruby '3.0.0'
|
5
5
|
|
6
|
-
gem 'rails', '~>6.
|
6
|
+
gem 'rails', '~>6.1'
|
7
7
|
gem 'sqlite3'
|
8
8
|
gem 'haml-rails'
|
9
9
|
gem 'gemika'
|
10
|
+
gem 'rexml'
|
11
|
+
gem 'webrick'
|
10
12
|
|
11
13
|
group :development, :test do
|
12
14
|
gem 'byebug'
|
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ../..
|
3
3
|
specs:
|
4
|
-
spreewald (
|
4
|
+
spreewald (4.1.2)
|
5
5
|
cucumber
|
6
6
|
cucumber_priority (>= 0.3.0)
|
7
7
|
rspec (>= 2.13.0)
|
@@ -9,114 +9,137 @@ PATH
|
|
9
9
|
GEM
|
10
10
|
remote: https://rubygems.org/
|
11
11
|
specs:
|
12
|
-
actioncable (6.
|
13
|
-
actionpack (= 6.
|
12
|
+
actioncable (6.1.3.1)
|
13
|
+
actionpack (= 6.1.3.1)
|
14
|
+
activesupport (= 6.1.3.1)
|
14
15
|
nio4r (~> 2.0)
|
15
16
|
websocket-driver (>= 0.6.1)
|
16
|
-
actionmailbox (6.
|
17
|
-
actionpack (= 6.
|
18
|
-
activejob (= 6.
|
19
|
-
activerecord (= 6.
|
20
|
-
activestorage (= 6.
|
21
|
-
activesupport (= 6.
|
17
|
+
actionmailbox (6.1.3.1)
|
18
|
+
actionpack (= 6.1.3.1)
|
19
|
+
activejob (= 6.1.3.1)
|
20
|
+
activerecord (= 6.1.3.1)
|
21
|
+
activestorage (= 6.1.3.1)
|
22
|
+
activesupport (= 6.1.3.1)
|
22
23
|
mail (>= 2.7.1)
|
23
|
-
actionmailer (6.
|
24
|
-
actionpack (= 6.
|
25
|
-
actionview (= 6.
|
26
|
-
activejob (= 6.
|
24
|
+
actionmailer (6.1.3.1)
|
25
|
+
actionpack (= 6.1.3.1)
|
26
|
+
actionview (= 6.1.3.1)
|
27
|
+
activejob (= 6.1.3.1)
|
28
|
+
activesupport (= 6.1.3.1)
|
27
29
|
mail (~> 2.5, >= 2.5.4)
|
28
30
|
rails-dom-testing (~> 2.0)
|
29
|
-
actionpack (6.
|
30
|
-
actionview (= 6.
|
31
|
-
activesupport (= 6.
|
32
|
-
rack (~> 2.0, >= 2.0.
|
31
|
+
actionpack (6.1.3.1)
|
32
|
+
actionview (= 6.1.3.1)
|
33
|
+
activesupport (= 6.1.3.1)
|
34
|
+
rack (~> 2.0, >= 2.0.9)
|
33
35
|
rack-test (>= 0.6.3)
|
34
36
|
rails-dom-testing (~> 2.0)
|
35
37
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
36
|
-
actiontext (6.
|
37
|
-
actionpack (= 6.
|
38
|
-
activerecord (= 6.
|
39
|
-
activestorage (= 6.
|
40
|
-
activesupport (= 6.
|
38
|
+
actiontext (6.1.3.1)
|
39
|
+
actionpack (= 6.1.3.1)
|
40
|
+
activerecord (= 6.1.3.1)
|
41
|
+
activestorage (= 6.1.3.1)
|
42
|
+
activesupport (= 6.1.3.1)
|
41
43
|
nokogiri (>= 1.8.5)
|
42
|
-
actionview (6.
|
43
|
-
activesupport (= 6.
|
44
|
+
actionview (6.1.3.1)
|
45
|
+
activesupport (= 6.1.3.1)
|
44
46
|
builder (~> 3.1)
|
45
47
|
erubi (~> 1.4)
|
46
48
|
rails-dom-testing (~> 2.0)
|
47
49
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
48
|
-
activejob (6.
|
49
|
-
activesupport (= 6.
|
50
|
+
activejob (6.1.3.1)
|
51
|
+
activesupport (= 6.1.3.1)
|
50
52
|
globalid (>= 0.3.6)
|
51
|
-
activemodel (6.
|
52
|
-
activesupport (= 6.
|
53
|
-
activerecord (6.
|
54
|
-
activemodel (= 6.
|
55
|
-
activesupport (= 6.
|
56
|
-
activestorage (6.
|
57
|
-
actionpack (= 6.
|
58
|
-
activejob (= 6.
|
59
|
-
activerecord (= 6.
|
60
|
-
|
61
|
-
|
53
|
+
activemodel (6.1.3.1)
|
54
|
+
activesupport (= 6.1.3.1)
|
55
|
+
activerecord (6.1.3.1)
|
56
|
+
activemodel (= 6.1.3.1)
|
57
|
+
activesupport (= 6.1.3.1)
|
58
|
+
activestorage (6.1.3.1)
|
59
|
+
actionpack (= 6.1.3.1)
|
60
|
+
activejob (= 6.1.3.1)
|
61
|
+
activerecord (= 6.1.3.1)
|
62
|
+
activesupport (= 6.1.3.1)
|
63
|
+
marcel (~> 1.0.0)
|
64
|
+
mini_mime (~> 1.0.2)
|
65
|
+
activesupport (6.1.3.1)
|
62
66
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
63
|
-
i18n (>=
|
64
|
-
minitest (
|
65
|
-
tzinfo (~>
|
66
|
-
zeitwerk (~> 2.
|
67
|
+
i18n (>= 1.6, < 2)
|
68
|
+
minitest (>= 5.1)
|
69
|
+
tzinfo (~> 2.0)
|
70
|
+
zeitwerk (~> 2.3)
|
67
71
|
addressable (2.7.0)
|
68
72
|
public_suffix (>= 2.0.2, < 5.0)
|
69
|
-
backports (3.17.0)
|
70
73
|
builder (3.2.4)
|
71
|
-
byebug (11.1.
|
72
|
-
capybara (3.
|
74
|
+
byebug (11.1.3)
|
75
|
+
capybara (3.35.3)
|
73
76
|
addressable
|
74
77
|
mini_mime (>= 0.1.3)
|
75
78
|
nokogiri (~> 1.8)
|
76
79
|
rack (>= 1.6.0)
|
77
80
|
rack-test (>= 0.6.3)
|
78
|
-
regexp_parser (
|
81
|
+
regexp_parser (>= 1.5, < 3.0)
|
79
82
|
xpath (~> 3.2)
|
80
|
-
capybara-screenshot (1.0.
|
83
|
+
capybara-screenshot (1.0.25)
|
81
84
|
capybara (>= 1.0, < 4)
|
82
85
|
launchy
|
83
86
|
childprocess (3.0.0)
|
84
|
-
coderay (1.1.
|
85
|
-
concurrent-ruby (1.1.
|
87
|
+
coderay (1.1.3)
|
88
|
+
concurrent-ruby (1.1.8)
|
86
89
|
crass (1.0.6)
|
87
|
-
cucumber (3.
|
88
|
-
builder (>= 2.
|
89
|
-
cucumber-core (~>
|
90
|
-
cucumber-
|
91
|
-
cucumber-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
90
|
+
cucumber (5.3.0)
|
91
|
+
builder (~> 3.2, >= 3.2.4)
|
92
|
+
cucumber-core (~> 8.0, >= 8.0.1)
|
93
|
+
cucumber-create-meta (~> 2.0, >= 2.0.2)
|
94
|
+
cucumber-cucumber-expressions (~> 10.3, >= 10.3.0)
|
95
|
+
cucumber-gherkin (~> 15.0, >= 15.0.2)
|
96
|
+
cucumber-html-formatter (~> 9.0, >= 9.0.0)
|
97
|
+
cucumber-messages (~> 13.1, >= 13.1.0)
|
98
|
+
cucumber-wire (~> 4.0, >= 4.0.1)
|
99
|
+
diff-lcs (~> 1.4, >= 1.4.4)
|
100
|
+
multi_test (~> 0.1, >= 0.1.2)
|
101
|
+
sys-uname (~> 1.2, >= 1.2.1)
|
102
|
+
cucumber-core (8.0.1)
|
103
|
+
cucumber-gherkin (~> 15.0, >= 15.0.2)
|
104
|
+
cucumber-messages (~> 13.0, >= 13.0.1)
|
105
|
+
cucumber-tag-expressions (~> 2.0, >= 2.0.4)
|
106
|
+
cucumber-create-meta (2.0.4)
|
107
|
+
cucumber-messages (~> 13.1, >= 13.1.0)
|
108
|
+
sys-uname (~> 1.2, >= 1.2.1)
|
109
|
+
cucumber-cucumber-expressions (10.3.0)
|
110
|
+
cucumber-gherkin (15.0.2)
|
111
|
+
cucumber-messages (~> 13.0, >= 13.0.1)
|
112
|
+
cucumber-html-formatter (9.0.0)
|
113
|
+
cucumber-messages (~> 13.0, >= 13.0.1)
|
114
|
+
cucumber-messages (13.2.1)
|
115
|
+
protobuf-cucumber (~> 3.10, >= 3.10.8)
|
116
|
+
cucumber-rails (2.3.0)
|
117
|
+
capybara (>= 2.18, < 4)
|
118
|
+
cucumber (>= 3.0.2, < 6)
|
119
|
+
mime-types (~> 3.2)
|
105
120
|
nokogiri (~> 1.8)
|
106
|
-
railties (>=
|
107
|
-
cucumber-
|
108
|
-
cucumber-wire (
|
121
|
+
railties (>= 5.0, < 7)
|
122
|
+
cucumber-tag-expressions (2.0.4)
|
123
|
+
cucumber-wire (4.0.1)
|
124
|
+
cucumber-core (~> 8.0, >= 8.0.1)
|
125
|
+
cucumber-cucumber-expressions (~> 10.3, >= 10.3.0)
|
126
|
+
cucumber-messages (~> 13.0, >= 13.0.1)
|
109
127
|
cucumber_priority (0.3.2)
|
110
128
|
cucumber
|
111
|
-
database_cleaner (
|
112
|
-
|
113
|
-
|
129
|
+
database_cleaner (2.0.1)
|
130
|
+
database_cleaner-active_record (~> 2.0.0)
|
131
|
+
database_cleaner-active_record (2.0.0)
|
132
|
+
activerecord (>= 5.a)
|
133
|
+
database_cleaner-core (~> 2.0.0)
|
134
|
+
database_cleaner-core (2.0.1)
|
135
|
+
diff-lcs (1.4.4)
|
136
|
+
erubi (1.10.0)
|
114
137
|
erubis (2.7.0)
|
115
|
-
|
116
|
-
|
138
|
+
ffi (1.15.0)
|
139
|
+
gemika (0.5.0)
|
117
140
|
globalid (0.4.2)
|
118
141
|
activesupport (>= 4.2.0)
|
119
|
-
haml (5.1
|
142
|
+
haml (5.2.1)
|
120
143
|
temple (>= 0.8.0)
|
121
144
|
tilt
|
122
145
|
haml-rails (2.0.1)
|
@@ -130,113 +153,122 @@ GEM
|
|
130
153
|
haml (>= 4.0, < 6)
|
131
154
|
nokogiri (>= 1.6.0)
|
132
155
|
ruby_parser (~> 3.5)
|
133
|
-
i18n (1.8.
|
156
|
+
i18n (1.8.10)
|
134
157
|
concurrent-ruby (~> 1.0)
|
135
158
|
launchy (2.5.0)
|
136
159
|
addressable (~> 2.7)
|
137
|
-
loofah (2.
|
160
|
+
loofah (2.9.0)
|
138
161
|
crass (~> 1.0.2)
|
139
162
|
nokogiri (>= 1.5.9)
|
140
163
|
mail (2.7.1)
|
141
164
|
mini_mime (>= 0.1.1)
|
142
|
-
marcel (0.
|
143
|
-
mimemagic (~> 0.3.2)
|
165
|
+
marcel (1.0.0)
|
144
166
|
method_source (1.0.0)
|
167
|
+
middleware (0.1.0)
|
145
168
|
mime-types (3.3.1)
|
146
169
|
mime-types-data (~> 3.2015)
|
147
|
-
mime-types-data (3.
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
minitest (5.14.0)
|
152
|
-
multi_json (1.14.1)
|
170
|
+
mime-types-data (3.2021.0225)
|
171
|
+
mini_mime (1.0.3)
|
172
|
+
mini_portile2 (2.5.0)
|
173
|
+
minitest (5.14.4)
|
153
174
|
multi_test (0.1.2)
|
154
|
-
nio4r (2.5.
|
155
|
-
nokogiri (1.
|
156
|
-
mini_portile2 (~> 2.
|
157
|
-
|
175
|
+
nio4r (2.5.7)
|
176
|
+
nokogiri (1.11.2)
|
177
|
+
mini_portile2 (~> 2.5.0)
|
178
|
+
racc (~> 1.4)
|
179
|
+
protobuf-cucumber (3.10.8)
|
180
|
+
activesupport (>= 3.2)
|
181
|
+
middleware
|
182
|
+
thor
|
183
|
+
thread_safe
|
184
|
+
pry (0.14.0)
|
158
185
|
coderay (~> 1.1)
|
159
186
|
method_source (~> 1.0)
|
160
|
-
public_suffix (4.0.
|
161
|
-
|
187
|
+
public_suffix (4.0.6)
|
188
|
+
racc (1.5.2)
|
189
|
+
rack (2.2.3)
|
162
190
|
rack-test (1.1.0)
|
163
191
|
rack (>= 1.0, < 3)
|
164
|
-
rails (6.
|
165
|
-
actioncable (= 6.
|
166
|
-
actionmailbox (= 6.
|
167
|
-
actionmailer (= 6.
|
168
|
-
actionpack (= 6.
|
169
|
-
actiontext (= 6.
|
170
|
-
actionview (= 6.
|
171
|
-
activejob (= 6.
|
172
|
-
activemodel (= 6.
|
173
|
-
activerecord (= 6.
|
174
|
-
activestorage (= 6.
|
175
|
-
activesupport (= 6.
|
176
|
-
bundler (>= 1.
|
177
|
-
railties (= 6.
|
192
|
+
rails (6.1.3.1)
|
193
|
+
actioncable (= 6.1.3.1)
|
194
|
+
actionmailbox (= 6.1.3.1)
|
195
|
+
actionmailer (= 6.1.3.1)
|
196
|
+
actionpack (= 6.1.3.1)
|
197
|
+
actiontext (= 6.1.3.1)
|
198
|
+
actionview (= 6.1.3.1)
|
199
|
+
activejob (= 6.1.3.1)
|
200
|
+
activemodel (= 6.1.3.1)
|
201
|
+
activerecord (= 6.1.3.1)
|
202
|
+
activestorage (= 6.1.3.1)
|
203
|
+
activesupport (= 6.1.3.1)
|
204
|
+
bundler (>= 1.15.0)
|
205
|
+
railties (= 6.1.3.1)
|
178
206
|
sprockets-rails (>= 2.0.0)
|
179
207
|
rails-dom-testing (2.0.3)
|
180
208
|
activesupport (>= 4.2.0)
|
181
209
|
nokogiri (>= 1.6)
|
182
210
|
rails-html-sanitizer (1.3.0)
|
183
211
|
loofah (~> 2.3)
|
184
|
-
railties (6.
|
185
|
-
actionpack (= 6.
|
186
|
-
activesupport (= 6.
|
212
|
+
railties (6.1.3.1)
|
213
|
+
actionpack (= 6.1.3.1)
|
214
|
+
activesupport (= 6.1.3.1)
|
187
215
|
method_source
|
188
216
|
rake (>= 0.8.7)
|
189
|
-
thor (
|
190
|
-
rake (13.0.
|
191
|
-
regexp_parser (1.
|
192
|
-
|
193
|
-
|
194
|
-
rspec-
|
195
|
-
rspec-
|
196
|
-
|
197
|
-
|
198
|
-
|
217
|
+
thor (~> 1.0)
|
218
|
+
rake (13.0.3)
|
219
|
+
regexp_parser (2.1.1)
|
220
|
+
rexml (3.2.4)
|
221
|
+
rspec (3.10.0)
|
222
|
+
rspec-core (~> 3.10.0)
|
223
|
+
rspec-expectations (~> 3.10.0)
|
224
|
+
rspec-mocks (~> 3.10.0)
|
225
|
+
rspec-core (3.10.1)
|
226
|
+
rspec-support (~> 3.10.0)
|
227
|
+
rspec-expectations (3.10.1)
|
199
228
|
diff-lcs (>= 1.2.0, < 2.0)
|
200
|
-
rspec-support (~> 3.
|
201
|
-
rspec-mocks (3.
|
229
|
+
rspec-support (~> 3.10.0)
|
230
|
+
rspec-mocks (3.10.2)
|
202
231
|
diff-lcs (>= 1.2.0, < 2.0)
|
203
|
-
rspec-support (~> 3.
|
204
|
-
rspec-rails (
|
205
|
-
actionpack (>=
|
206
|
-
activesupport (>=
|
207
|
-
railties (>=
|
208
|
-
rspec-core (~> 3.
|
209
|
-
rspec-expectations (~> 3.
|
210
|
-
rspec-mocks (~> 3.
|
211
|
-
rspec-support (~> 3.
|
212
|
-
rspec-support (3.
|
213
|
-
ruby_parser (3.
|
232
|
+
rspec-support (~> 3.10.0)
|
233
|
+
rspec-rails (5.0.1)
|
234
|
+
actionpack (>= 5.2)
|
235
|
+
activesupport (>= 5.2)
|
236
|
+
railties (>= 5.2)
|
237
|
+
rspec-core (~> 3.10)
|
238
|
+
rspec-expectations (~> 3.10)
|
239
|
+
rspec-mocks (~> 3.10)
|
240
|
+
rspec-support (~> 3.10)
|
241
|
+
rspec-support (3.10.2)
|
242
|
+
ruby_parser (3.15.1)
|
214
243
|
sexp_processor (~> 4.9)
|
215
244
|
rubyzip (2.3.0)
|
216
245
|
selenium-webdriver (3.142.7)
|
217
246
|
childprocess (>= 0.5, < 4.0)
|
218
247
|
rubyzip (>= 1.2.2)
|
219
|
-
sexp_processor (4.
|
220
|
-
sprockets (4.0.
|
248
|
+
sexp_processor (4.15.2)
|
249
|
+
sprockets (4.0.2)
|
221
250
|
concurrent-ruby (~> 1.0)
|
222
251
|
rack (> 1, < 3)
|
223
|
-
sprockets-rails (3.2.
|
252
|
+
sprockets-rails (3.2.2)
|
224
253
|
actionpack (>= 4.0)
|
225
254
|
activesupport (>= 4.0)
|
226
255
|
sprockets (>= 3.0.0)
|
227
256
|
sqlite3 (1.4.2)
|
257
|
+
sys-uname (1.2.2)
|
258
|
+
ffi (~> 1.1)
|
228
259
|
temple (0.8.2)
|
229
|
-
thor (1.0
|
260
|
+
thor (1.1.0)
|
230
261
|
thread_safe (0.3.6)
|
231
262
|
tilt (2.0.10)
|
232
|
-
tzinfo (
|
233
|
-
|
234
|
-
|
263
|
+
tzinfo (2.0.4)
|
264
|
+
concurrent-ruby (~> 1.0)
|
265
|
+
webrick (1.7.0)
|
266
|
+
websocket-driver (0.7.3)
|
235
267
|
websocket-extensions (>= 0.1.0)
|
236
|
-
websocket-extensions (0.1.
|
268
|
+
websocket-extensions (0.1.5)
|
237
269
|
xpath (3.2.0)
|
238
270
|
nokogiri (~> 1.8)
|
239
|
-
zeitwerk (2.
|
271
|
+
zeitwerk (2.4.2)
|
240
272
|
|
241
273
|
PLATFORMS
|
242
274
|
ruby
|
@@ -251,14 +283,16 @@ DEPENDENCIES
|
|
251
283
|
gemika
|
252
284
|
haml-rails
|
253
285
|
pry
|
254
|
-
rails (~> 6.
|
286
|
+
rails (~> 6.1)
|
287
|
+
rexml
|
255
288
|
rspec-rails
|
256
289
|
selenium-webdriver
|
257
290
|
spreewald!
|
258
291
|
sqlite3
|
292
|
+
webrick
|
259
293
|
|
260
294
|
RUBY VERSION
|
261
|
-
ruby
|
295
|
+
ruby 3.0.0p0
|
262
296
|
|
263
297
|
BUNDLED WITH
|
264
|
-
2.
|
298
|
+
2.2.3
|