shoulda 4.0.0.rc1 → 4.0.0.rc2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.ruby-version +1 -1
- data/.travis.yml +21 -14
- data/Appraisals +4 -4
- data/Gemfile +5 -3
- data/gemfiles/rails_4_2.gemfile +7 -4
- data/gemfiles/rails_4_2.gemfile.lock +81 -81
- data/gemfiles/rails_5_0.gemfile +7 -4
- data/gemfiles/rails_5_0.gemfile.lock +88 -88
- data/gemfiles/rails_5_1.gemfile +7 -4
- data/gemfiles/rails_5_1.gemfile.lock +95 -97
- data/gemfiles/rails_5_2.gemfile +7 -4
- data/gemfiles/rails_5_2.gemfile.lock +109 -111
- data/gemfiles/rails_6_0.gemfile +7 -4
- data/gemfiles/rails_6_0.gemfile.lock +96 -90
- data/lib/shoulda/version.rb +1 -1
- data/shoulda.gemspec +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6fde182b63930a1fbbc5ad653b591c4a0257654706533b8e3e62c6c157655619
|
4
|
+
data.tar.gz: 12a63633f7ac882c50c05bbf1659b6fa97e54c0abc11c6164b01ae6651a98fc7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 633be9d4a25039cdc70646c02307d1716b5004436ca1ea7f1f29d0898d723a67124f81b5064156147491fb853287fe4ca85059dd16238aa6d8f47744806b2458
|
7
|
+
data.tar.gz: 07c1577d7a78290d1b758879292566f35d28e07c4428cde0c69f51a93d47247f91464dce853dffe85b5e78503c20710d5823090782a82ca9bf2c9198da298918
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.
|
1
|
+
2.7.1
|
data/.travis.yml
CHANGED
@@ -1,10 +1,23 @@
|
|
1
|
-
dist: trusty
|
2
1
|
language: ruby
|
3
2
|
dist: xenial
|
3
|
+
os: linux
|
4
|
+
cache:
|
5
|
+
directories:
|
6
|
+
- vendor/bundle
|
7
|
+
# Source: <https://docs.travis-ci.com/user/languages/ruby/#bundler-20>
|
8
|
+
before_install:
|
9
|
+
- gem update --system '3.1.2' --no-document
|
10
|
+
- gem uninstall -v '< 2' -i $(rvm gemdir)@global -ax bundler || true
|
11
|
+
- gem install bundler -v '< 2' --no-document
|
12
|
+
- nvm use v11.0.0
|
13
|
+
- bundle config set path vendor/bundle
|
14
|
+
install: "bundle install --jobs=3 --retry=3"
|
15
|
+
script: "bundle exec rake"
|
4
16
|
rvm:
|
5
|
-
- 2.4.
|
6
|
-
- 2.5.
|
7
|
-
- 2.6.
|
17
|
+
- 2.4.9
|
18
|
+
- 2.5.8
|
19
|
+
- 2.6.6
|
20
|
+
- 2.7.1
|
8
21
|
gemfile:
|
9
22
|
- gemfiles/rails_4_2.gemfile
|
10
23
|
- gemfiles/rails_5_0.gemfile
|
@@ -13,15 +26,9 @@ gemfile:
|
|
13
26
|
- gemfiles/rails_6_0.gemfile
|
14
27
|
matrix:
|
15
28
|
exclude:
|
16
|
-
- rvm: 2.4.
|
29
|
+
- rvm: 2.4.9
|
17
30
|
gemfile: gemfiles/rails_6_0.gemfile
|
18
|
-
- rvm: 2.6.
|
31
|
+
- rvm: 2.6.6
|
32
|
+
gemfile: gemfiles/rails_4_2.gemfile
|
33
|
+
- rvm: 2.7.1
|
19
34
|
gemfile: gemfiles/rails_4_2.gemfile
|
20
|
-
# Source: <https://docs.travis-ci.com/user/languages/ruby/#bundler-20>
|
21
|
-
before_install:
|
22
|
-
- gem update --system '2.7.8' --no-document
|
23
|
-
- gem uninstall -v '>= 2' -i $(rvm gemdir)@global -ax bundler || true
|
24
|
-
- gem install bundler -v '< 2' --no-document
|
25
|
-
- nvm use v11.0.0
|
26
|
-
install: "bundle install --jobs=3 --retry=3 --path vendor/bundle"
|
27
|
-
script: "bundle exec rake"
|
data/Appraisals
CHANGED
@@ -4,7 +4,8 @@
|
|
4
4
|
# can compare them more easily.
|
5
5
|
|
6
6
|
shared_rails_dependencies = proc do
|
7
|
-
gem 'sqlite3',
|
7
|
+
gem 'sqlite3', '~> 1.3.6'
|
8
|
+
gem 'rubyzip', '~> 1.3.0'
|
8
9
|
end
|
9
10
|
|
10
11
|
shared_spring_dependencies = proc do
|
@@ -89,9 +90,7 @@ appraise 'rails_5_2' do
|
|
89
90
|
gem 'spring-watcher-listen', '~> 2.0.0'
|
90
91
|
end
|
91
92
|
|
92
|
-
if (
|
93
|
-
Gem::Requirement.new('>= 2.5.0').satisfied_by?(Gem::Version.new(RUBY_VERSION))
|
94
|
-
)
|
93
|
+
if Gem::Requirement.new('>= 2.5.0').satisfied_by?(Gem::Version.new(RUBY_VERSION))
|
95
94
|
appraise 'rails_6_0' do
|
96
95
|
instance_eval(&shared_dependencies)
|
97
96
|
|
@@ -107,6 +106,7 @@ if (
|
|
107
106
|
gem 'spring-watcher-listen', '~> 2.0.0'
|
108
107
|
gem 'capybara', '>= 2.15'
|
109
108
|
gem 'selenium-webdriver'
|
109
|
+
gem "sqlite3", "~> 1.4.0"
|
110
110
|
gem 'webdrivers'
|
111
111
|
|
112
112
|
# Other dependencies
|
data/Gemfile
CHANGED
@@ -8,7 +8,9 @@ gem 'm'
|
|
8
8
|
gem 'minitest', '~> 5.0'
|
9
9
|
gem 'minitest-reporters', '~> 1.0'
|
10
10
|
gem 'mry'
|
11
|
-
gem 'pry
|
12
|
-
gem '
|
13
|
-
gem '
|
11
|
+
gem 'pry', '~> 0.12.0'
|
12
|
+
gem 'pry-byebug', '~> 3.6.0'
|
13
|
+
gem 'rubocop', '0.71.0', require: false
|
14
|
+
gem 'rubocop-rails', require: false
|
15
|
+
gem 'snowglobe', '>= 0.3.0'
|
14
16
|
gem 'warnings_logger'
|
data/gemfiles/rails_4_2.gemfile
CHANGED
@@ -8,11 +8,14 @@ gem "m"
|
|
8
8
|
gem "minitest", "~> 5.0"
|
9
9
|
gem "minitest-reporters"
|
10
10
|
gem "mry"
|
11
|
-
gem "pry
|
12
|
-
gem "
|
13
|
-
gem "
|
11
|
+
gem "pry", "~> 0.12.0"
|
12
|
+
gem "pry-byebug", "~> 3.6.0"
|
13
|
+
gem "rubocop", "0.71.0", require: false
|
14
|
+
gem "rubocop-rails", require: false
|
15
|
+
gem "snowglobe", ">= 0.3.0"
|
14
16
|
gem "warnings_logger"
|
15
|
-
gem "sqlite3",
|
17
|
+
gem "sqlite3", "~> 1.3.6"
|
18
|
+
gem "rubyzip", "~> 1.3.0"
|
16
19
|
gem "spring"
|
17
20
|
gem "spring-commands-rspec"
|
18
21
|
gem "rails", "~> 4.2.10"
|
@@ -1,47 +1,47 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
shoulda (4.0.0.
|
5
|
-
shoulda-context (= 2.0.0.
|
4
|
+
shoulda (4.0.0.rc2)
|
5
|
+
shoulda-context (= 2.0.0.rc4)
|
6
6
|
shoulda-matchers (~> 4.0)
|
7
7
|
|
8
8
|
GEM
|
9
9
|
remote: https://rubygems.org/
|
10
10
|
specs:
|
11
|
-
actionmailer (4.2.11)
|
12
|
-
actionpack (= 4.2.11)
|
13
|
-
actionview (= 4.2.11)
|
14
|
-
activejob (= 4.2.11)
|
11
|
+
actionmailer (4.2.11.1)
|
12
|
+
actionpack (= 4.2.11.1)
|
13
|
+
actionview (= 4.2.11.1)
|
14
|
+
activejob (= 4.2.11.1)
|
15
15
|
mail (~> 2.5, >= 2.5.4)
|
16
16
|
rails-dom-testing (~> 1.0, >= 1.0.5)
|
17
|
-
actionpack (4.2.11)
|
18
|
-
actionview (= 4.2.11)
|
19
|
-
activesupport (= 4.2.11)
|
17
|
+
actionpack (4.2.11.1)
|
18
|
+
actionview (= 4.2.11.1)
|
19
|
+
activesupport (= 4.2.11.1)
|
20
20
|
rack (~> 1.6)
|
21
21
|
rack-test (~> 0.6.2)
|
22
22
|
rails-dom-testing (~> 1.0, >= 1.0.5)
|
23
23
|
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
24
|
-
actionview (4.2.11)
|
25
|
-
activesupport (= 4.2.11)
|
24
|
+
actionview (4.2.11.1)
|
25
|
+
activesupport (= 4.2.11.1)
|
26
26
|
builder (~> 3.1)
|
27
27
|
erubis (~> 2.7.0)
|
28
28
|
rails-dom-testing (~> 1.0, >= 1.0.5)
|
29
29
|
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
30
|
-
activejob (4.2.11)
|
31
|
-
activesupport (= 4.2.11)
|
30
|
+
activejob (4.2.11.1)
|
31
|
+
activesupport (= 4.2.11.1)
|
32
32
|
globalid (>= 0.3.0)
|
33
|
-
activemodel (4.2.11)
|
34
|
-
activesupport (= 4.2.11)
|
33
|
+
activemodel (4.2.11.1)
|
34
|
+
activesupport (= 4.2.11.1)
|
35
35
|
builder (~> 3.1)
|
36
|
-
activerecord (4.2.11)
|
37
|
-
activemodel (= 4.2.11)
|
38
|
-
activesupport (= 4.2.11)
|
36
|
+
activerecord (4.2.11.1)
|
37
|
+
activemodel (= 4.2.11.1)
|
38
|
+
activesupport (= 4.2.11.1)
|
39
39
|
arel (~> 6.0)
|
40
40
|
activeresource (4.0.0)
|
41
41
|
activemodel (~> 4.0)
|
42
42
|
activesupport (~> 4.0)
|
43
43
|
rails-observers (~> 0.1.1)
|
44
|
-
activesupport (4.2.11)
|
44
|
+
activesupport (4.2.11.1)
|
45
45
|
i18n (~> 0.7)
|
46
46
|
minitest (~> 5.1)
|
47
47
|
thread_safe (~> 0.3, >= 0.3.4)
|
@@ -53,9 +53,9 @@ GEM
|
|
53
53
|
thor (>= 0.14.0)
|
54
54
|
arel (6.0.4)
|
55
55
|
ast (2.4.0)
|
56
|
-
bcrypt (3.1.
|
57
|
-
builder (3.2.
|
58
|
-
byebug (
|
56
|
+
bcrypt (3.1.13)
|
57
|
+
builder (3.2.4)
|
58
|
+
byebug (10.0.2)
|
59
59
|
coderay (1.1.2)
|
60
60
|
coffee-rails (4.1.1)
|
61
61
|
coffee-script (>= 2.2.0)
|
@@ -64,25 +64,24 @@ GEM
|
|
64
64
|
coffee-script-source
|
65
65
|
execjs
|
66
66
|
coffee-script-source (1.12.2)
|
67
|
-
concurrent-ruby (1.1.
|
68
|
-
crass (1.0.
|
67
|
+
concurrent-ruby (1.1.6)
|
68
|
+
crass (1.0.6)
|
69
69
|
erubis (2.7.0)
|
70
70
|
execjs (2.7.0)
|
71
|
-
ffi (1.
|
71
|
+
ffi (1.12.2)
|
72
72
|
globalid (0.4.2)
|
73
73
|
activesupport (>= 4.2.0)
|
74
74
|
i18n (0.9.5)
|
75
75
|
concurrent-ruby (~> 1.0)
|
76
|
-
jaro_winkler (1.5.
|
77
|
-
jbuilder (2.
|
76
|
+
jaro_winkler (1.5.4)
|
77
|
+
jbuilder (2.9.1)
|
78
78
|
activesupport (>= 4.2.0)
|
79
|
-
|
80
|
-
jquery-rails (4.3.3)
|
79
|
+
jquery-rails (4.3.5)
|
81
80
|
rails-dom-testing (>= 1, < 3)
|
82
81
|
railties (>= 4.2.0)
|
83
82
|
thor (>= 0.14, < 2.0)
|
84
83
|
json (1.8.6)
|
85
|
-
loofah (2.
|
84
|
+
loofah (2.4.0)
|
86
85
|
crass (~> 1.0.2)
|
87
86
|
nokogiri (>= 1.5.9)
|
88
87
|
m (1.5.1)
|
@@ -91,45 +90,42 @@ GEM
|
|
91
90
|
mail (2.7.1)
|
92
91
|
mini_mime (>= 0.1.1)
|
93
92
|
method_source (0.9.2)
|
94
|
-
mini_mime (1.0.
|
93
|
+
mini_mime (1.0.2)
|
95
94
|
mini_portile2 (2.4.0)
|
96
|
-
minitest (5.
|
97
|
-
minitest-reporters (1.
|
95
|
+
minitest (5.14.0)
|
96
|
+
minitest-reporters (1.4.2)
|
98
97
|
ansi
|
99
98
|
builder
|
100
99
|
minitest (>= 5.0)
|
101
100
|
ruby-progressbar
|
102
|
-
mry (0.
|
101
|
+
mry (0.78.0.0)
|
103
102
|
rubocop (>= 0.41.0)
|
104
|
-
|
105
|
-
nokogiri (1.10.1)
|
103
|
+
nokogiri (1.10.9)
|
106
104
|
mini_portile2 (~> 2.4.0)
|
107
|
-
parallel (1.
|
108
|
-
parser (2.
|
105
|
+
parallel (1.19.1)
|
106
|
+
parser (2.7.1.0)
|
109
107
|
ast (~> 2.4.0)
|
110
|
-
powerpack (0.1.2)
|
111
108
|
protected_attributes (1.0.9)
|
112
109
|
activemodel (>= 4.0.1, < 5.0)
|
113
110
|
pry (0.12.2)
|
114
111
|
coderay (~> 1.1.0)
|
115
112
|
method_source (~> 0.9.0)
|
116
|
-
pry-byebug (3.
|
117
|
-
byebug (~>
|
113
|
+
pry-byebug (3.6.0)
|
114
|
+
byebug (~> 10.0)
|
118
115
|
pry (~> 0.10)
|
119
|
-
|
120
|
-
rack (1.6.11)
|
116
|
+
rack (1.6.13)
|
121
117
|
rack-test (0.6.3)
|
122
118
|
rack (>= 1.0)
|
123
|
-
rails (4.2.11)
|
124
|
-
actionmailer (= 4.2.11)
|
125
|
-
actionpack (= 4.2.11)
|
126
|
-
actionview (= 4.2.11)
|
127
|
-
activejob (= 4.2.11)
|
128
|
-
activemodel (= 4.2.11)
|
129
|
-
activerecord (= 4.2.11)
|
130
|
-
activesupport (= 4.2.11)
|
119
|
+
rails (4.2.11.1)
|
120
|
+
actionmailer (= 4.2.11.1)
|
121
|
+
actionpack (= 4.2.11.1)
|
122
|
+
actionview (= 4.2.11.1)
|
123
|
+
activejob (= 4.2.11.1)
|
124
|
+
activemodel (= 4.2.11.1)
|
125
|
+
activerecord (= 4.2.11.1)
|
126
|
+
activesupport (= 4.2.11.1)
|
131
127
|
bundler (>= 1.3.0, < 2.0)
|
132
|
-
railties (= 4.2.11)
|
128
|
+
railties (= 4.2.11.1)
|
133
129
|
sprockets-rails
|
134
130
|
rails-deprecated_sanitizer (1.0.3)
|
135
131
|
activesupport (>= 4.2.0.alpha)
|
@@ -137,32 +133,34 @@ GEM
|
|
137
133
|
activesupport (>= 4.2.0, < 5.0)
|
138
134
|
nokogiri (~> 1.6)
|
139
135
|
rails-deprecated_sanitizer (>= 1.0.1)
|
140
|
-
rails-html-sanitizer (1.0
|
141
|
-
loofah (~> 2.
|
136
|
+
rails-html-sanitizer (1.3.0)
|
137
|
+
loofah (~> 2.3)
|
142
138
|
rails-observers (0.1.5)
|
143
139
|
activemodel (>= 4.0)
|
144
|
-
railties (4.2.11)
|
145
|
-
actionpack (= 4.2.11)
|
146
|
-
activesupport (= 4.2.11)
|
140
|
+
railties (4.2.11.1)
|
141
|
+
actionpack (= 4.2.11.1)
|
142
|
+
activesupport (= 4.2.11.1)
|
147
143
|
rake (>= 0.8.7)
|
148
144
|
thor (>= 0.18.1, < 2.0)
|
149
145
|
rainbow (3.0.0)
|
150
|
-
rake (
|
146
|
+
rake (13.0.1)
|
151
147
|
rb-fsevent (0.10.3)
|
152
|
-
rb-inotify (0.10.
|
148
|
+
rb-inotify (0.10.1)
|
153
149
|
ffi (~> 1.0)
|
154
150
|
rdoc (4.3.0)
|
155
|
-
rubocop (0.
|
151
|
+
rubocop (0.71.0)
|
156
152
|
jaro_winkler (~> 1.5.1)
|
157
153
|
parallel (~> 1.10)
|
158
|
-
parser (>= 2.
|
159
|
-
powerpack (~> 0.1)
|
160
|
-
psych (>= 3.1.0)
|
154
|
+
parser (>= 2.6)
|
161
155
|
rainbow (>= 2.2.2, < 4.0)
|
162
156
|
ruby-progressbar (~> 1.7)
|
163
|
-
unicode-display_width (
|
164
|
-
|
165
|
-
|
157
|
+
unicode-display_width (>= 1.4.0, < 1.7)
|
158
|
+
rubocop-rails (2.0.1)
|
159
|
+
rack (>= 1.1)
|
160
|
+
rubocop (>= 0.70.0)
|
161
|
+
ruby-progressbar (1.10.1)
|
162
|
+
rubyzip (1.3.0)
|
163
|
+
sass (3.7.4)
|
166
164
|
sass-listen (~> 4.0.0)
|
167
165
|
sass-listen (4.0.0)
|
168
166
|
rb-fsevent (~> 0.9, >= 0.9.4)
|
@@ -176,12 +174,11 @@ GEM
|
|
176
174
|
sdoc (0.4.2)
|
177
175
|
json (~> 1.7, >= 1.7.7)
|
178
176
|
rdoc (~> 4.0)
|
179
|
-
shoulda-context (2.0.0.
|
180
|
-
shoulda-matchers (4.
|
177
|
+
shoulda-context (2.0.0.rc4)
|
178
|
+
shoulda-matchers (4.3.0)
|
181
179
|
activesupport (>= 4.2.0)
|
182
|
-
snowglobe (0.
|
183
|
-
spring (2.0
|
184
|
-
activesupport (>= 4.2)
|
180
|
+
snowglobe (0.3.0)
|
181
|
+
spring (2.1.0)
|
185
182
|
spring-commands-rspec (1.0.4)
|
186
183
|
spring (>= 0.9.1)
|
187
184
|
sprockets (3.7.2)
|
@@ -192,17 +189,17 @@ GEM
|
|
192
189
|
activesupport (>= 4.0)
|
193
190
|
sprockets (>= 3.0.0)
|
194
191
|
sqlite3 (1.3.13)
|
195
|
-
thor (0.
|
192
|
+
thor (1.0.1)
|
196
193
|
thread_safe (0.3.6)
|
197
|
-
tilt (2.0.
|
198
|
-
turbolinks (5.2.
|
194
|
+
tilt (2.0.10)
|
195
|
+
turbolinks (5.2.1)
|
199
196
|
turbolinks-source (~> 5.2)
|
200
197
|
turbolinks-source (5.2.0)
|
201
|
-
tzinfo (1.2.
|
198
|
+
tzinfo (1.2.7)
|
202
199
|
thread_safe (~> 0.1)
|
203
|
-
uglifier (4.
|
200
|
+
uglifier (4.2.0)
|
204
201
|
execjs (>= 0.3.0, < 3)
|
205
|
-
unicode-display_width (1.
|
202
|
+
unicode-display_width (1.6.1)
|
206
203
|
warnings_logger (0.1.0)
|
207
204
|
|
208
205
|
PLATFORMS
|
@@ -222,16 +219,19 @@ DEPENDENCIES
|
|
222
219
|
minitest-reporters
|
223
220
|
mry
|
224
221
|
protected_attributes (~> 1.0.6)
|
225
|
-
pry
|
222
|
+
pry (~> 0.12.0)
|
223
|
+
pry-byebug (~> 3.6.0)
|
226
224
|
rails (~> 4.2.10)
|
227
|
-
rubocop
|
225
|
+
rubocop (= 0.71.0)
|
226
|
+
rubocop-rails
|
227
|
+
rubyzip (~> 1.3.0)
|
228
228
|
sass-rails (~> 5.0)
|
229
229
|
sdoc (~> 0.4.0)
|
230
230
|
shoulda!
|
231
|
-
snowglobe
|
231
|
+
snowglobe (>= 0.3.0)
|
232
232
|
spring
|
233
233
|
spring-commands-rspec
|
234
|
-
sqlite3
|
234
|
+
sqlite3 (~> 1.3.6)
|
235
235
|
turbolinks
|
236
236
|
uglifier (>= 1.3.0)
|
237
237
|
warnings_logger
|
data/gemfiles/rails_5_0.gemfile
CHANGED
@@ -8,11 +8,14 @@ gem "m"
|
|
8
8
|
gem "minitest", "~> 5.0"
|
9
9
|
gem "minitest-reporters"
|
10
10
|
gem "mry"
|
11
|
-
gem "pry
|
12
|
-
gem "
|
13
|
-
gem "
|
11
|
+
gem "pry", "~> 0.12.0"
|
12
|
+
gem "pry-byebug", "~> 3.6.0"
|
13
|
+
gem "rubocop", "0.71.0", require: false
|
14
|
+
gem "rubocop-rails", require: false
|
15
|
+
gem "snowglobe", ">= 0.3.0"
|
14
16
|
gem "warnings_logger"
|
15
|
-
gem "sqlite3",
|
17
|
+
gem "sqlite3", "~> 1.3.6"
|
18
|
+
gem "rubyzip", "~> 1.3.0"
|
16
19
|
gem "spring"
|
17
20
|
gem "spring-commands-rspec"
|
18
21
|
gem "rails", "~> 5.0.7"
|
@@ -1,46 +1,46 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
shoulda (4.0.0.
|
5
|
-
shoulda-context (= 2.0.0.
|
4
|
+
shoulda (4.0.0.rc2)
|
5
|
+
shoulda-context (= 2.0.0.rc4)
|
6
6
|
shoulda-matchers (~> 4.0)
|
7
7
|
|
8
8
|
GEM
|
9
9
|
remote: https://rubygems.org/
|
10
10
|
specs:
|
11
|
-
actioncable (5.0.7.
|
12
|
-
actionpack (= 5.0.7.
|
11
|
+
actioncable (5.0.7.2)
|
12
|
+
actionpack (= 5.0.7.2)
|
13
13
|
nio4r (>= 1.2, < 3.0)
|
14
14
|
websocket-driver (~> 0.6.1)
|
15
|
-
actionmailer (5.0.7.
|
16
|
-
actionpack (= 5.0.7.
|
17
|
-
actionview (= 5.0.7.
|
18
|
-
activejob (= 5.0.7.
|
15
|
+
actionmailer (5.0.7.2)
|
16
|
+
actionpack (= 5.0.7.2)
|
17
|
+
actionview (= 5.0.7.2)
|
18
|
+
activejob (= 5.0.7.2)
|
19
19
|
mail (~> 2.5, >= 2.5.4)
|
20
20
|
rails-dom-testing (~> 2.0)
|
21
|
-
actionpack (5.0.7.
|
22
|
-
actionview (= 5.0.7.
|
23
|
-
activesupport (= 5.0.7.
|
21
|
+
actionpack (5.0.7.2)
|
22
|
+
actionview (= 5.0.7.2)
|
23
|
+
activesupport (= 5.0.7.2)
|
24
24
|
rack (~> 2.0)
|
25
25
|
rack-test (~> 0.6.3)
|
26
26
|
rails-dom-testing (~> 2.0)
|
27
27
|
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
28
|
-
actionview (5.0.7.
|
29
|
-
activesupport (= 5.0.7.
|
28
|
+
actionview (5.0.7.2)
|
29
|
+
activesupport (= 5.0.7.2)
|
30
30
|
builder (~> 3.1)
|
31
31
|
erubis (~> 2.7.0)
|
32
32
|
rails-dom-testing (~> 2.0)
|
33
33
|
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
34
|
-
activejob (5.0.7.
|
35
|
-
activesupport (= 5.0.7.
|
34
|
+
activejob (5.0.7.2)
|
35
|
+
activesupport (= 5.0.7.2)
|
36
36
|
globalid (>= 0.3.6)
|
37
|
-
activemodel (5.0.7.
|
38
|
-
activesupport (= 5.0.7.
|
39
|
-
activerecord (5.0.7.
|
40
|
-
activemodel (= 5.0.7.
|
41
|
-
activesupport (= 5.0.7.
|
37
|
+
activemodel (5.0.7.2)
|
38
|
+
activesupport (= 5.0.7.2)
|
39
|
+
activerecord (5.0.7.2)
|
40
|
+
activemodel (= 5.0.7.2)
|
41
|
+
activesupport (= 5.0.7.2)
|
42
42
|
arel (~> 7.0)
|
43
|
-
activesupport (5.0.7.
|
43
|
+
activesupport (5.0.7.2)
|
44
44
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
45
45
|
i18n (>= 0.7, < 2)
|
46
46
|
minitest (~> 5.1)
|
@@ -52,30 +52,29 @@ GEM
|
|
52
52
|
thor (>= 0.14.0)
|
53
53
|
arel (7.1.4)
|
54
54
|
ast (2.4.0)
|
55
|
-
bcrypt (3.1.
|
56
|
-
builder (3.2.
|
57
|
-
byebug (
|
55
|
+
bcrypt (3.1.13)
|
56
|
+
builder (3.2.4)
|
57
|
+
byebug (10.0.2)
|
58
58
|
coderay (1.1.2)
|
59
|
-
concurrent-ruby (1.1.
|
60
|
-
crass (1.0.
|
59
|
+
concurrent-ruby (1.1.6)
|
60
|
+
crass (1.0.6)
|
61
61
|
erubis (2.7.0)
|
62
|
-
ffi (1.
|
62
|
+
ffi (1.12.2)
|
63
63
|
globalid (0.4.2)
|
64
64
|
activesupport (>= 4.2.0)
|
65
|
-
i18n (1.
|
65
|
+
i18n (1.8.2)
|
66
66
|
concurrent-ruby (~> 1.0)
|
67
|
-
jaro_winkler (1.5.
|
68
|
-
jbuilder (2.
|
69
|
-
activesupport (>=
|
70
|
-
|
71
|
-
jquery-rails (4.3.3)
|
67
|
+
jaro_winkler (1.5.4)
|
68
|
+
jbuilder (2.10.0)
|
69
|
+
activesupport (>= 5.0.0)
|
70
|
+
jquery-rails (4.3.5)
|
72
71
|
rails-dom-testing (>= 1, < 3)
|
73
72
|
railties (>= 4.2.0)
|
74
73
|
thor (>= 0.14, < 2.0)
|
75
74
|
listen (3.0.8)
|
76
75
|
rb-fsevent (~> 0.9, >= 0.9.4)
|
77
76
|
rb-inotify (~> 0.9, >= 0.9.7)
|
78
|
-
loofah (2.
|
77
|
+
loofah (2.4.0)
|
79
78
|
crass (~> 1.0.2)
|
80
79
|
nokogiri (>= 1.5.9)
|
81
80
|
m (1.5.1)
|
@@ -84,46 +83,43 @@ GEM
|
|
84
83
|
mail (2.7.1)
|
85
84
|
mini_mime (>= 0.1.1)
|
86
85
|
method_source (0.9.2)
|
87
|
-
mini_mime (1.0.
|
86
|
+
mini_mime (1.0.2)
|
88
87
|
mini_portile2 (2.4.0)
|
89
|
-
minitest (5.
|
90
|
-
minitest-reporters (1.
|
88
|
+
minitest (5.14.0)
|
89
|
+
minitest-reporters (1.4.2)
|
91
90
|
ansi
|
92
91
|
builder
|
93
92
|
minitest (>= 5.0)
|
94
93
|
ruby-progressbar
|
95
|
-
mry (0.
|
94
|
+
mry (0.78.0.0)
|
96
95
|
rubocop (>= 0.41.0)
|
97
|
-
|
98
|
-
|
99
|
-
nokogiri (1.10.1)
|
96
|
+
nio4r (2.5.2)
|
97
|
+
nokogiri (1.10.9)
|
100
98
|
mini_portile2 (~> 2.4.0)
|
101
|
-
parallel (1.
|
102
|
-
parser (2.
|
99
|
+
parallel (1.19.1)
|
100
|
+
parser (2.7.1.0)
|
103
101
|
ast (~> 2.4.0)
|
104
|
-
powerpack (0.1.2)
|
105
102
|
pry (0.12.2)
|
106
103
|
coderay (~> 1.1.0)
|
107
104
|
method_source (~> 0.9.0)
|
108
|
-
pry-byebug (3.
|
109
|
-
byebug (~>
|
105
|
+
pry-byebug (3.6.0)
|
106
|
+
byebug (~> 10.0)
|
110
107
|
pry (~> 0.10)
|
111
|
-
|
112
|
-
|
113
|
-
rack (2.0.6)
|
108
|
+
puma (3.12.4)
|
109
|
+
rack (2.2.2)
|
114
110
|
rack-test (0.6.3)
|
115
111
|
rack (>= 1.0)
|
116
|
-
rails (5.0.7.
|
117
|
-
actioncable (= 5.0.7.
|
118
|
-
actionmailer (= 5.0.7.
|
119
|
-
actionpack (= 5.0.7.
|
120
|
-
actionview (= 5.0.7.
|
121
|
-
activejob (= 5.0.7.
|
122
|
-
activemodel (= 5.0.7.
|
123
|
-
activerecord (= 5.0.7.
|
124
|
-
activesupport (= 5.0.7.
|
112
|
+
rails (5.0.7.2)
|
113
|
+
actioncable (= 5.0.7.2)
|
114
|
+
actionmailer (= 5.0.7.2)
|
115
|
+
actionpack (= 5.0.7.2)
|
116
|
+
actionview (= 5.0.7.2)
|
117
|
+
activejob (= 5.0.7.2)
|
118
|
+
activemodel (= 5.0.7.2)
|
119
|
+
activerecord (= 5.0.7.2)
|
120
|
+
activesupport (= 5.0.7.2)
|
125
121
|
bundler (>= 1.3.0)
|
126
|
-
railties (= 5.0.7.
|
122
|
+
railties (= 5.0.7.2)
|
127
123
|
sprockets-rails (>= 2.0.0)
|
128
124
|
rails-controller-testing (1.0.4)
|
129
125
|
actionpack (>= 5.0.1.x)
|
@@ -132,30 +128,32 @@ GEM
|
|
132
128
|
rails-dom-testing (2.0.3)
|
133
129
|
activesupport (>= 4.2.0)
|
134
130
|
nokogiri (>= 1.6)
|
135
|
-
rails-html-sanitizer (1.0
|
136
|
-
loofah (~> 2.
|
137
|
-
railties (5.0.7.
|
138
|
-
actionpack (= 5.0.7.
|
139
|
-
activesupport (= 5.0.7.
|
131
|
+
rails-html-sanitizer (1.3.0)
|
132
|
+
loofah (~> 2.3)
|
133
|
+
railties (5.0.7.2)
|
134
|
+
actionpack (= 5.0.7.2)
|
135
|
+
activesupport (= 5.0.7.2)
|
140
136
|
method_source
|
141
137
|
rake (>= 0.8.7)
|
142
138
|
thor (>= 0.18.1, < 2.0)
|
143
139
|
rainbow (3.0.0)
|
144
|
-
rake (
|
140
|
+
rake (13.0.1)
|
145
141
|
rb-fsevent (0.10.3)
|
146
|
-
rb-inotify (0.10.
|
142
|
+
rb-inotify (0.10.1)
|
147
143
|
ffi (~> 1.0)
|
148
|
-
rubocop (0.
|
144
|
+
rubocop (0.71.0)
|
149
145
|
jaro_winkler (~> 1.5.1)
|
150
146
|
parallel (~> 1.10)
|
151
|
-
parser (>= 2.
|
152
|
-
powerpack (~> 0.1)
|
153
|
-
psych (>= 3.1.0)
|
147
|
+
parser (>= 2.6)
|
154
148
|
rainbow (>= 2.2.2, < 4.0)
|
155
149
|
ruby-progressbar (~> 1.7)
|
156
|
-
unicode-display_width (
|
157
|
-
|
158
|
-
|
150
|
+
unicode-display_width (>= 1.4.0, < 1.7)
|
151
|
+
rubocop-rails (2.0.1)
|
152
|
+
rack (>= 1.1)
|
153
|
+
rubocop (>= 0.70.0)
|
154
|
+
ruby-progressbar (1.10.1)
|
155
|
+
rubyzip (1.3.0)
|
156
|
+
sass (3.7.4)
|
159
157
|
sass-listen (~> 4.0.0)
|
160
158
|
sass-listen (4.0.0)
|
161
159
|
rb-fsevent (~> 0.9, >= 0.9.4)
|
@@ -166,12 +164,11 @@ GEM
|
|
166
164
|
sprockets (>= 2.8, < 4.0)
|
167
165
|
sprockets-rails (>= 2.0, < 4.0)
|
168
166
|
tilt (>= 1.1, < 3)
|
169
|
-
shoulda-context (2.0.0.
|
170
|
-
shoulda-matchers (4.
|
167
|
+
shoulda-context (2.0.0.rc4)
|
168
|
+
shoulda-matchers (4.3.0)
|
171
169
|
activesupport (>= 4.2.0)
|
172
|
-
snowglobe (0.
|
173
|
-
spring (2.0
|
174
|
-
activesupport (>= 4.2)
|
170
|
+
snowglobe (0.3.0)
|
171
|
+
spring (2.1.0)
|
175
172
|
spring-commands-rspec (1.0.4)
|
176
173
|
spring (>= 0.9.1)
|
177
174
|
spring-watcher-listen (2.0.1)
|
@@ -185,19 +182,19 @@ GEM
|
|
185
182
|
activesupport (>= 4.0)
|
186
183
|
sprockets (>= 3.0.0)
|
187
184
|
sqlite3 (1.3.13)
|
188
|
-
thor (0.
|
185
|
+
thor (1.0.1)
|
189
186
|
thread_safe (0.3.6)
|
190
|
-
tilt (2.0.
|
191
|
-
turbolinks (5.2.
|
187
|
+
tilt (2.0.10)
|
188
|
+
turbolinks (5.2.1)
|
192
189
|
turbolinks-source (~> 5.2)
|
193
190
|
turbolinks-source (5.2.0)
|
194
|
-
tzinfo (1.2.
|
191
|
+
tzinfo (1.2.7)
|
195
192
|
thread_safe (~> 0.1)
|
196
|
-
unicode-display_width (1.
|
193
|
+
unicode-display_width (1.6.1)
|
197
194
|
warnings_logger (0.1.0)
|
198
195
|
websocket-driver (0.6.5)
|
199
196
|
websocket-extensions (>= 0.1.0)
|
200
|
-
websocket-extensions (0.1.
|
197
|
+
websocket-extensions (0.1.4)
|
201
198
|
|
202
199
|
PLATFORMS
|
203
200
|
ruby
|
@@ -213,18 +210,21 @@ DEPENDENCIES
|
|
213
210
|
minitest (~> 5.0)
|
214
211
|
minitest-reporters
|
215
212
|
mry
|
216
|
-
pry
|
213
|
+
pry (~> 0.12.0)
|
214
|
+
pry-byebug (~> 3.6.0)
|
217
215
|
puma (~> 3.0)
|
218
216
|
rails (~> 5.0.7)
|
219
217
|
rails-controller-testing (>= 1.0.1)
|
220
|
-
rubocop
|
218
|
+
rubocop (= 0.71.0)
|
219
|
+
rubocop-rails
|
220
|
+
rubyzip (~> 1.3.0)
|
221
221
|
sass-rails (~> 5.0)
|
222
222
|
shoulda!
|
223
|
-
snowglobe
|
223
|
+
snowglobe (>= 0.3.0)
|
224
224
|
spring
|
225
225
|
spring-commands-rspec
|
226
226
|
spring-watcher-listen (~> 2.0.0)
|
227
|
-
sqlite3
|
227
|
+
sqlite3 (~> 1.3.6)
|
228
228
|
turbolinks (~> 5)
|
229
229
|
warnings_logger
|
230
230
|
|