rails-session_cookie 0.2.0 → 0.3.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.
Files changed (40) hide show
  1. checksums.yaml +5 -5
  2. data/.github/workflows/branch.yml +45 -0
  3. data/.github/workflows/ci.yml +50 -0
  4. data/.gitignore +1 -2
  5. data/.rubocop.yml +21 -2
  6. data/Appraisals +42 -18
  7. data/Gemfile +28 -1
  8. data/LICENSE +21 -0
  9. data/README.md +102 -34
  10. data/Rakefile +8 -1
  11. data/bin/console +1 -0
  12. data/gemfiles/rails_5.2.gemfile +22 -0
  13. data/gemfiles/rails_5.2_warden.gemfile +24 -0
  14. data/gemfiles/rails_6.0.gemfile +22 -0
  15. data/gemfiles/rails_6.0_warden.gemfile +24 -0
  16. data/gemfiles/rails_6.1.gemfile +22 -0
  17. data/gemfiles/rails_6.1_warden.gemfile +24 -0
  18. data/gemfiles/rails_7.0.gemfile +22 -0
  19. data/gemfiles/rails_7.0_warden.gemfile +24 -0
  20. data/lib/rails/session_cookie/app.rb +5 -3
  21. data/lib/rails/session_cookie/env.rb +40 -0
  22. data/lib/rails/session_cookie/version.rb +3 -1
  23. data/lib/rails/session_cookie/warden_app.rb +10 -2
  24. data/lib/rails/session_cookie.rb +5 -2
  25. data/lib/rails-session_cookie.rb +1 -0
  26. data/rails-session_cookie.gemspec +2 -16
  27. metadata +19 -174
  28. data/.travis.yml +0 -18
  29. data/gemfiles/rails_4.2.gemfile +0 -8
  30. data/gemfiles/rails_4.2.gemfile.lock +0 -202
  31. data/gemfiles/rails_4.2_warden.gemfile +0 -10
  32. data/gemfiles/rails_4.2_warden.gemfile.lock +0 -217
  33. data/gemfiles/rails_5.0.gemfile +0 -8
  34. data/gemfiles/rails_5.0.gemfile.lock +0 -208
  35. data/gemfiles/rails_5.0_warden.gemfile +0 -10
  36. data/gemfiles/rails_5.0_warden.gemfile.lock +0 -223
  37. data/gemfiles/rails_5.1.gemfile +0 -8
  38. data/gemfiles/rails_5.1.gemfile.lock +0 -208
  39. data/gemfiles/rails_5.1_warden.gemfile +0 -10
  40. data/gemfiles/rails_5.1_warden.gemfile.lock +0 -223
@@ -1,217 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- rails-session_cookie (0.1.0)
5
- rails (>= 4.0)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- actionmailer (4.2.9)
11
- actionpack (= 4.2.9)
12
- actionview (= 4.2.9)
13
- activejob (= 4.2.9)
14
- mail (~> 2.5, >= 2.5.4)
15
- rails-dom-testing (~> 1.0, >= 1.0.5)
16
- actionpack (4.2.9)
17
- actionview (= 4.2.9)
18
- activesupport (= 4.2.9)
19
- rack (~> 1.6)
20
- rack-test (~> 0.6.2)
21
- rails-dom-testing (~> 1.0, >= 1.0.5)
22
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
23
- actionview (4.2.9)
24
- activesupport (= 4.2.9)
25
- builder (~> 3.1)
26
- erubis (~> 2.7.0)
27
- rails-dom-testing (~> 1.0, >= 1.0.5)
28
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
29
- activejob (4.2.9)
30
- activesupport (= 4.2.9)
31
- globalid (>= 0.3.0)
32
- activemodel (4.2.9)
33
- activesupport (= 4.2.9)
34
- builder (~> 3.1)
35
- activerecord (4.2.9)
36
- activemodel (= 4.2.9)
37
- activesupport (= 4.2.9)
38
- arel (~> 6.0)
39
- activesupport (4.2.9)
40
- i18n (~> 0.7)
41
- minitest (~> 5.1)
42
- thread_safe (~> 0.3, >= 0.3.4)
43
- tzinfo (~> 1.1)
44
- addressable (2.5.2)
45
- public_suffix (>= 2.0.2, < 4.0)
46
- appraisal (2.2.0)
47
- bundler
48
- rake
49
- thor (>= 0.14.0)
50
- arel (6.0.4)
51
- ast (2.3.0)
52
- bcrypt (3.1.11)
53
- benchmark-perf (0.2.1)
54
- builder (3.2.3)
55
- byebug (9.1.0)
56
- capybara (2.15.1)
57
- addressable
58
- mini_mime (>= 0.1.3)
59
- nokogiri (>= 1.3.3)
60
- rack (>= 1.0.0)
61
- rack-test (>= 0.5.4)
62
- xpath (~> 2.0)
63
- codeclimate-test-reporter (1.0.8)
64
- simplecov (<= 0.13)
65
- coderay (1.1.2)
66
- concurrent-ruby (1.0.5)
67
- devise (4.3.0)
68
- bcrypt (~> 3.0)
69
- orm_adapter (~> 0.1)
70
- railties (>= 4.1.0, < 5.2)
71
- responders
72
- warden (~> 1.2.3)
73
- diff-lcs (1.3)
74
- docile (1.1.5)
75
- erubis (2.7.0)
76
- globalid (0.4.0)
77
- activesupport (>= 4.2.0)
78
- i18n (0.8.6)
79
- json (2.1.0)
80
- loofah (2.0.3)
81
- nokogiri (>= 1.5.9)
82
- mail (2.6.6)
83
- mime-types (>= 1.16, < 4)
84
- method_source (0.8.2)
85
- mime-types (3.1)
86
- mime-types-data (~> 3.2015)
87
- mime-types-data (3.2016.0521)
88
- mini_mime (0.1.4)
89
- mini_portile2 (2.2.0)
90
- minitest (5.10.3)
91
- nokogiri (1.8.0)
92
- mini_portile2 (~> 2.2.0)
93
- orm_adapter (0.5.0)
94
- parallel (1.12.0)
95
- parser (2.4.0.0)
96
- ast (~> 2.2)
97
- powerpack (0.1.1)
98
- pry (0.10.4)
99
- coderay (~> 1.1.0)
100
- method_source (~> 0.8.1)
101
- slop (~> 3.4)
102
- pry-byebug (3.5.0)
103
- byebug (~> 9.1)
104
- pry (~> 0.10)
105
- public_suffix (3.0.0)
106
- rack (1.6.8)
107
- rack-test (0.6.3)
108
- rack (>= 1.0)
109
- rails (4.2.9)
110
- actionmailer (= 4.2.9)
111
- actionpack (= 4.2.9)
112
- actionview (= 4.2.9)
113
- activejob (= 4.2.9)
114
- activemodel (= 4.2.9)
115
- activerecord (= 4.2.9)
116
- activesupport (= 4.2.9)
117
- bundler (>= 1.3.0, < 2.0)
118
- railties (= 4.2.9)
119
- sprockets-rails
120
- rails-deprecated_sanitizer (1.0.3)
121
- activesupport (>= 4.2.0.alpha)
122
- rails-dom-testing (1.0.8)
123
- activesupport (>= 4.2.0.beta, < 5.0)
124
- nokogiri (~> 1.6)
125
- rails-deprecated_sanitizer (>= 1.0.1)
126
- rails-html-sanitizer (1.0.3)
127
- loofah (~> 2.0)
128
- railties (4.2.9)
129
- actionpack (= 4.2.9)
130
- activesupport (= 4.2.9)
131
- rake (>= 0.8.7)
132
- thor (>= 0.18.1, < 2.0)
133
- rainbow (2.2.2)
134
- rake
135
- rake (10.5.0)
136
- responders (2.4.0)
137
- actionpack (>= 4.2.0, < 5.3)
138
- railties (>= 4.2.0, < 5.3)
139
- rspec (3.6.0)
140
- rspec-core (~> 3.6.0)
141
- rspec-expectations (~> 3.6.0)
142
- rspec-mocks (~> 3.6.0)
143
- rspec-benchmark (0.3.0)
144
- benchmark-perf (~> 0.2.0)
145
- rspec (>= 3.0.0, < 4.0.0)
146
- rspec-core (3.6.0)
147
- rspec-support (~> 3.6.0)
148
- rspec-expectations (3.6.0)
149
- diff-lcs (>= 1.2.0, < 2.0)
150
- rspec-support (~> 3.6.0)
151
- rspec-mocks (3.6.0)
152
- diff-lcs (>= 1.2.0, < 2.0)
153
- rspec-support (~> 3.6.0)
154
- rspec-rails (3.6.1)
155
- actionpack (>= 3.0)
156
- activesupport (>= 3.0)
157
- railties (>= 3.0)
158
- rspec-core (~> 3.6.0)
159
- rspec-expectations (~> 3.6.0)
160
- rspec-mocks (~> 3.6.0)
161
- rspec-support (~> 3.6.0)
162
- rspec-support (3.6.0)
163
- rubocop (0.49.1)
164
- parallel (~> 1.10)
165
- parser (>= 2.3.3.1, < 3.0)
166
- powerpack (~> 0.1)
167
- rainbow (>= 1.99.1, < 3.0)
168
- ruby-progressbar (~> 1.7)
169
- unicode-display_width (~> 1.0, >= 1.0.1)
170
- ruby-progressbar (1.8.1)
171
- simplecov (0.13.0)
172
- docile (~> 1.1.0)
173
- json (>= 1.8, < 3)
174
- simplecov-html (~> 0.10.0)
175
- simplecov-html (0.10.2)
176
- slop (3.6.0)
177
- sprockets (3.7.1)
178
- concurrent-ruby (~> 1.0)
179
- rack (> 1, < 3)
180
- sprockets-rails (3.2.1)
181
- actionpack (>= 4.0)
182
- activesupport (>= 4.0)
183
- sprockets (>= 3.0.0)
184
- sqlite3 (1.3.13)
185
- thor (0.20.0)
186
- thread_safe (0.3.6)
187
- tzinfo (1.2.3)
188
- thread_safe (~> 0.1)
189
- unicode-display_width (1.3.0)
190
- warden (1.2.7)
191
- rack (>= 1.0)
192
- xpath (2.1.0)
193
- nokogiri (~> 1.3)
194
-
195
- PLATFORMS
196
- ruby
197
-
198
- DEPENDENCIES
199
- appraisal (~> 2.2)
200
- bundler (~> 1.15)
201
- capybara (~> 2.15)
202
- codeclimate-test-reporter (= 1.0.8)
203
- devise (~> 4.3)
204
- pry-byebug
205
- rails (~> 4.2.9)
206
- rails-session_cookie!
207
- rake (~> 10.0)
208
- rspec (~> 3.0)
209
- rspec-benchmark (~> 0.3)
210
- rspec-rails (~> 3.6.1)
211
- rubocop (~> 0.49)
212
- simplecov (= 0.13.0)
213
- sqlite3 (~> 1.3)
214
- warden (>= 1.2)
215
-
216
- BUNDLED WITH
217
- 1.15.4
@@ -1,8 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "pry-byebug"
6
- gem "rails", "~> 5.0.5"
7
-
8
- gemspec path: "../"
@@ -1,208 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- rails-session_cookie (0.1.0)
5
- rails (>= 4.0)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- actioncable (5.0.5)
11
- actionpack (= 5.0.5)
12
- nio4r (>= 1.2, < 3.0)
13
- websocket-driver (~> 0.6.1)
14
- actionmailer (5.0.5)
15
- actionpack (= 5.0.5)
16
- actionview (= 5.0.5)
17
- activejob (= 5.0.5)
18
- mail (~> 2.5, >= 2.5.4)
19
- rails-dom-testing (~> 2.0)
20
- actionpack (5.0.5)
21
- actionview (= 5.0.5)
22
- activesupport (= 5.0.5)
23
- rack (~> 2.0)
24
- rack-test (~> 0.6.3)
25
- rails-dom-testing (~> 2.0)
26
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
27
- actionview (5.0.5)
28
- activesupport (= 5.0.5)
29
- builder (~> 3.1)
30
- erubis (~> 2.7.0)
31
- rails-dom-testing (~> 2.0)
32
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
33
- activejob (5.0.5)
34
- activesupport (= 5.0.5)
35
- globalid (>= 0.3.6)
36
- activemodel (5.0.5)
37
- activesupport (= 5.0.5)
38
- activerecord (5.0.5)
39
- activemodel (= 5.0.5)
40
- activesupport (= 5.0.5)
41
- arel (~> 7.0)
42
- activesupport (5.0.5)
43
- concurrent-ruby (~> 1.0, >= 1.0.2)
44
- i18n (~> 0.7)
45
- minitest (~> 5.1)
46
- tzinfo (~> 1.1)
47
- addressable (2.5.2)
48
- public_suffix (>= 2.0.2, < 4.0)
49
- appraisal (2.2.0)
50
- bundler
51
- rake
52
- thor (>= 0.14.0)
53
- arel (7.1.4)
54
- ast (2.3.0)
55
- benchmark-perf (0.2.1)
56
- builder (3.2.3)
57
- byebug (9.0.6)
58
- capybara (2.15.1)
59
- addressable
60
- mini_mime (>= 0.1.3)
61
- nokogiri (>= 1.3.3)
62
- rack (>= 1.0.0)
63
- rack-test (>= 0.5.4)
64
- xpath (~> 2.0)
65
- codeclimate-test-reporter (1.0.8)
66
- simplecov (<= 0.13)
67
- coderay (1.1.1)
68
- concurrent-ruby (1.0.5)
69
- diff-lcs (1.3)
70
- docile (1.1.5)
71
- erubis (2.7.0)
72
- globalid (0.4.0)
73
- activesupport (>= 4.2.0)
74
- i18n (0.8.6)
75
- json (2.1.0)
76
- loofah (2.0.3)
77
- nokogiri (>= 1.5.9)
78
- mail (2.6.6)
79
- mime-types (>= 1.16, < 4)
80
- method_source (0.8.2)
81
- mime-types (3.1)
82
- mime-types-data (~> 3.2015)
83
- mime-types-data (3.2016.0521)
84
- mini_mime (0.1.4)
85
- mini_portile2 (2.2.0)
86
- minitest (5.10.3)
87
- nio4r (2.1.0)
88
- nokogiri (1.8.0)
89
- mini_portile2 (~> 2.2.0)
90
- parallel (1.12.0)
91
- parser (2.4.0.0)
92
- ast (~> 2.2)
93
- powerpack (0.1.1)
94
- pry (0.10.4)
95
- coderay (~> 1.1.0)
96
- method_source (~> 0.8.1)
97
- slop (~> 3.4)
98
- pry-byebug (3.4.2)
99
- byebug (~> 9.0)
100
- pry (~> 0.10)
101
- public_suffix (3.0.0)
102
- rack (2.0.3)
103
- rack-test (0.6.3)
104
- rack (>= 1.0)
105
- rails (5.0.5)
106
- actioncable (= 5.0.5)
107
- actionmailer (= 5.0.5)
108
- actionpack (= 5.0.5)
109
- actionview (= 5.0.5)
110
- activejob (= 5.0.5)
111
- activemodel (= 5.0.5)
112
- activerecord (= 5.0.5)
113
- activesupport (= 5.0.5)
114
- bundler (>= 1.3.0)
115
- railties (= 5.0.5)
116
- sprockets-rails (>= 2.0.0)
117
- rails-dom-testing (2.0.3)
118
- activesupport (>= 4.2.0)
119
- nokogiri (>= 1.6)
120
- rails-html-sanitizer (1.0.3)
121
- loofah (~> 2.0)
122
- railties (5.0.5)
123
- actionpack (= 5.0.5)
124
- activesupport (= 5.0.5)
125
- method_source
126
- rake (>= 0.8.7)
127
- thor (>= 0.18.1, < 2.0)
128
- rainbow (2.2.2)
129
- rake
130
- rake (10.5.0)
131
- rspec (3.6.0)
132
- rspec-core (~> 3.6.0)
133
- rspec-expectations (~> 3.6.0)
134
- rspec-mocks (~> 3.6.0)
135
- rspec-benchmark (0.3.0)
136
- benchmark-perf (~> 0.2.0)
137
- rspec (>= 3.0.0, < 4.0.0)
138
- rspec-core (3.6.0)
139
- rspec-support (~> 3.6.0)
140
- rspec-expectations (3.6.0)
141
- diff-lcs (>= 1.2.0, < 2.0)
142
- rspec-support (~> 3.6.0)
143
- rspec-mocks (3.6.0)
144
- diff-lcs (>= 1.2.0, < 2.0)
145
- rspec-support (~> 3.6.0)
146
- rspec-rails (3.6.1)
147
- actionpack (>= 3.0)
148
- activesupport (>= 3.0)
149
- railties (>= 3.0)
150
- rspec-core (~> 3.6.0)
151
- rspec-expectations (~> 3.6.0)
152
- rspec-mocks (~> 3.6.0)
153
- rspec-support (~> 3.6.0)
154
- rspec-support (3.6.0)
155
- rubocop (0.49.1)
156
- parallel (~> 1.10)
157
- parser (>= 2.3.3.1, < 3.0)
158
- powerpack (~> 0.1)
159
- rainbow (>= 1.99.1, < 3.0)
160
- ruby-progressbar (~> 1.7)
161
- unicode-display_width (~> 1.0, >= 1.0.1)
162
- ruby-progressbar (1.8.1)
163
- simplecov (0.13.0)
164
- docile (~> 1.1.0)
165
- json (>= 1.8, < 3)
166
- simplecov-html (~> 0.10.0)
167
- simplecov-html (0.10.2)
168
- slop (3.6.0)
169
- sprockets (3.7.1)
170
- concurrent-ruby (~> 1.0)
171
- rack (> 1, < 3)
172
- sprockets-rails (3.2.1)
173
- actionpack (>= 4.0)
174
- activesupport (>= 4.0)
175
- sprockets (>= 3.0.0)
176
- sqlite3 (1.3.13)
177
- thor (0.20.0)
178
- thread_safe (0.3.6)
179
- tzinfo (1.2.3)
180
- thread_safe (~> 0.1)
181
- unicode-display_width (1.3.0)
182
- websocket-driver (0.6.5)
183
- websocket-extensions (>= 0.1.0)
184
- websocket-extensions (0.1.2)
185
- xpath (2.1.0)
186
- nokogiri (~> 1.3)
187
-
188
- PLATFORMS
189
- ruby
190
-
191
- DEPENDENCIES
192
- appraisal (~> 2.2)
193
- bundler (~> 1.15)
194
- capybara (~> 2.15)
195
- codeclimate-test-reporter (= 1.0.8)
196
- pry-byebug
197
- rails (~> 5.0.5)
198
- rails-session_cookie!
199
- rake (~> 10.0)
200
- rspec (~> 3.0)
201
- rspec-benchmark (~> 0.3)
202
- rspec-rails (~> 3.6.1)
203
- rubocop (~> 0.49)
204
- simplecov (= 0.13.0)
205
- sqlite3 (~> 1.3)
206
-
207
- BUNDLED WITH
208
- 1.15.4
@@ -1,10 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "pry-byebug"
6
- gem "rails", "~> 5.0.5"
7
- gem "warden", ">= 1.2"
8
- gem "devise", "~> 4.3"
9
-
10
- gemspec path: "../"
@@ -1,223 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- rails-session_cookie (0.1.0)
5
- rails (>= 4.0)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- actioncable (5.0.5)
11
- actionpack (= 5.0.5)
12
- nio4r (>= 1.2, < 3.0)
13
- websocket-driver (~> 0.6.1)
14
- actionmailer (5.0.5)
15
- actionpack (= 5.0.5)
16
- actionview (= 5.0.5)
17
- activejob (= 5.0.5)
18
- mail (~> 2.5, >= 2.5.4)
19
- rails-dom-testing (~> 2.0)
20
- actionpack (5.0.5)
21
- actionview (= 5.0.5)
22
- activesupport (= 5.0.5)
23
- rack (~> 2.0)
24
- rack-test (~> 0.6.3)
25
- rails-dom-testing (~> 2.0)
26
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
27
- actionview (5.0.5)
28
- activesupport (= 5.0.5)
29
- builder (~> 3.1)
30
- erubis (~> 2.7.0)
31
- rails-dom-testing (~> 2.0)
32
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
33
- activejob (5.0.5)
34
- activesupport (= 5.0.5)
35
- globalid (>= 0.3.6)
36
- activemodel (5.0.5)
37
- activesupport (= 5.0.5)
38
- activerecord (5.0.5)
39
- activemodel (= 5.0.5)
40
- activesupport (= 5.0.5)
41
- arel (~> 7.0)
42
- activesupport (5.0.5)
43
- concurrent-ruby (~> 1.0, >= 1.0.2)
44
- i18n (~> 0.7)
45
- minitest (~> 5.1)
46
- tzinfo (~> 1.1)
47
- addressable (2.5.2)
48
- public_suffix (>= 2.0.2, < 4.0)
49
- appraisal (2.2.0)
50
- bundler
51
- rake
52
- thor (>= 0.14.0)
53
- arel (7.1.4)
54
- ast (2.3.0)
55
- bcrypt (3.1.11)
56
- benchmark-perf (0.2.1)
57
- builder (3.2.3)
58
- byebug (9.1.0)
59
- capybara (2.15.1)
60
- addressable
61
- mini_mime (>= 0.1.3)
62
- nokogiri (>= 1.3.3)
63
- rack (>= 1.0.0)
64
- rack-test (>= 0.5.4)
65
- xpath (~> 2.0)
66
- codeclimate-test-reporter (1.0.8)
67
- simplecov (<= 0.13)
68
- coderay (1.1.2)
69
- concurrent-ruby (1.0.5)
70
- devise (4.3.0)
71
- bcrypt (~> 3.0)
72
- orm_adapter (~> 0.1)
73
- railties (>= 4.1.0, < 5.2)
74
- responders
75
- warden (~> 1.2.3)
76
- diff-lcs (1.3)
77
- docile (1.1.5)
78
- erubis (2.7.0)
79
- globalid (0.4.0)
80
- activesupport (>= 4.2.0)
81
- i18n (0.8.6)
82
- json (2.1.0)
83
- loofah (2.0.3)
84
- nokogiri (>= 1.5.9)
85
- mail (2.6.6)
86
- mime-types (>= 1.16, < 4)
87
- method_source (0.8.2)
88
- mime-types (3.1)
89
- mime-types-data (~> 3.2015)
90
- mime-types-data (3.2016.0521)
91
- mini_mime (0.1.4)
92
- mini_portile2 (2.2.0)
93
- minitest (5.10.3)
94
- nio4r (2.1.0)
95
- nokogiri (1.8.0)
96
- mini_portile2 (~> 2.2.0)
97
- orm_adapter (0.5.0)
98
- parallel (1.12.0)
99
- parser (2.4.0.0)
100
- ast (~> 2.2)
101
- powerpack (0.1.1)
102
- pry (0.10.4)
103
- coderay (~> 1.1.0)
104
- method_source (~> 0.8.1)
105
- slop (~> 3.4)
106
- pry-byebug (3.5.0)
107
- byebug (~> 9.1)
108
- pry (~> 0.10)
109
- public_suffix (3.0.0)
110
- rack (2.0.3)
111
- rack-test (0.6.3)
112
- rack (>= 1.0)
113
- rails (5.0.5)
114
- actioncable (= 5.0.5)
115
- actionmailer (= 5.0.5)
116
- actionpack (= 5.0.5)
117
- actionview (= 5.0.5)
118
- activejob (= 5.0.5)
119
- activemodel (= 5.0.5)
120
- activerecord (= 5.0.5)
121
- activesupport (= 5.0.5)
122
- bundler (>= 1.3.0)
123
- railties (= 5.0.5)
124
- sprockets-rails (>= 2.0.0)
125
- rails-dom-testing (2.0.3)
126
- activesupport (>= 4.2.0)
127
- nokogiri (>= 1.6)
128
- rails-html-sanitizer (1.0.3)
129
- loofah (~> 2.0)
130
- railties (5.0.5)
131
- actionpack (= 5.0.5)
132
- activesupport (= 5.0.5)
133
- method_source
134
- rake (>= 0.8.7)
135
- thor (>= 0.18.1, < 2.0)
136
- rainbow (2.2.2)
137
- rake
138
- rake (10.5.0)
139
- responders (2.4.0)
140
- actionpack (>= 4.2.0, < 5.3)
141
- railties (>= 4.2.0, < 5.3)
142
- rspec (3.6.0)
143
- rspec-core (~> 3.6.0)
144
- rspec-expectations (~> 3.6.0)
145
- rspec-mocks (~> 3.6.0)
146
- rspec-benchmark (0.3.0)
147
- benchmark-perf (~> 0.2.0)
148
- rspec (>= 3.0.0, < 4.0.0)
149
- rspec-core (3.6.0)
150
- rspec-support (~> 3.6.0)
151
- rspec-expectations (3.6.0)
152
- diff-lcs (>= 1.2.0, < 2.0)
153
- rspec-support (~> 3.6.0)
154
- rspec-mocks (3.6.0)
155
- diff-lcs (>= 1.2.0, < 2.0)
156
- rspec-support (~> 3.6.0)
157
- rspec-rails (3.6.1)
158
- actionpack (>= 3.0)
159
- activesupport (>= 3.0)
160
- railties (>= 3.0)
161
- rspec-core (~> 3.6.0)
162
- rspec-expectations (~> 3.6.0)
163
- rspec-mocks (~> 3.6.0)
164
- rspec-support (~> 3.6.0)
165
- rspec-support (3.6.0)
166
- rubocop (0.49.1)
167
- parallel (~> 1.10)
168
- parser (>= 2.3.3.1, < 3.0)
169
- powerpack (~> 0.1)
170
- rainbow (>= 1.99.1, < 3.0)
171
- ruby-progressbar (~> 1.7)
172
- unicode-display_width (~> 1.0, >= 1.0.1)
173
- ruby-progressbar (1.8.1)
174
- simplecov (0.13.0)
175
- docile (~> 1.1.0)
176
- json (>= 1.8, < 3)
177
- simplecov-html (~> 0.10.0)
178
- simplecov-html (0.10.2)
179
- slop (3.6.0)
180
- sprockets (3.7.1)
181
- concurrent-ruby (~> 1.0)
182
- rack (> 1, < 3)
183
- sprockets-rails (3.2.1)
184
- actionpack (>= 4.0)
185
- activesupport (>= 4.0)
186
- sprockets (>= 3.0.0)
187
- sqlite3 (1.3.13)
188
- thor (0.20.0)
189
- thread_safe (0.3.6)
190
- tzinfo (1.2.3)
191
- thread_safe (~> 0.1)
192
- unicode-display_width (1.3.0)
193
- warden (1.2.7)
194
- rack (>= 1.0)
195
- websocket-driver (0.6.5)
196
- websocket-extensions (>= 0.1.0)
197
- websocket-extensions (0.1.2)
198
- xpath (2.1.0)
199
- nokogiri (~> 1.3)
200
-
201
- PLATFORMS
202
- ruby
203
-
204
- DEPENDENCIES
205
- appraisal (~> 2.2)
206
- bundler (~> 1.15)
207
- capybara (~> 2.15)
208
- codeclimate-test-reporter (= 1.0.8)
209
- devise (~> 4.3)
210
- pry-byebug
211
- rails (~> 5.0.5)
212
- rails-session_cookie!
213
- rake (~> 10.0)
214
- rspec (~> 3.0)
215
- rspec-benchmark (~> 0.3)
216
- rspec-rails (~> 3.6.1)
217
- rubocop (~> 0.49)
218
- simplecov (= 0.13.0)
219
- sqlite3 (~> 1.3)
220
- warden (>= 1.2)
221
-
222
- BUNDLED WITH
223
- 1.15.4
@@ -1,8 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "pry-byebug"
6
- gem "rails", "~> 5.1.3"
7
-
8
- gemspec path: "../"