ds_media_library 0.5.4 → 0.5.5
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 +13 -1
- data/Appraisals +20 -0
- data/README.md +1 -1
- data/ds_media_library.gemspec +1 -0
- data/gemfiles/capybara_2.gemfile +7 -0
- data/gemfiles/capybara_2.gemfile.lock +274 -0
- data/gemfiles/capybara_3.gemfile +7 -0
- data/gemfiles/capybara_3.gemfile.lock +274 -0
- data/gemfiles/rails_5.0.gemfile +7 -0
- data/gemfiles/rails_5.0.gemfile.lock +266 -0
- data/gemfiles/rails_5.1.gemfile +7 -0
- data/gemfiles/rails_5.1.gemfile.lock +266 -0
- data/gemfiles/rails_5.2.gemfile +7 -0
- data/gemfiles/rails_5.2.gemfile.lock +274 -0
- data/lib/ds_media_library/cucumber.rb +2 -2
- data/lib/ds_media_library/version.rb +1 -1
- metadata +27 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ee0dfbd68fbc06c53b1c320f3eb9bc744165dc33
|
4
|
+
data.tar.gz: 60933bc63c282871b069cb8598ac8dc51cb19796
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 721a7e86e3dae545ec8c7dc55ddf3b1d4fc74657e15a6a9b97ad435c87d377fc9b86b8192e262190e7302fcd7698f9fdf74e0fef9a781fe164a3d098a90951a8
|
7
|
+
data.tar.gz: 08bec05bbea36acf86c1548ce60c5e63df4c0bfbcdab2a6078af5a515a5d33885b8baf9f32a478a27588ed211dbdc5176d23b5010d2e87a891d270aea00cca0c
|
data/.gitignore
CHANGED
data/.travis.yml
CHANGED
@@ -1,10 +1,22 @@
|
|
1
1
|
sudo: false
|
2
2
|
language: ruby
|
3
|
+
|
3
4
|
rvm:
|
4
5
|
- 2.2
|
5
|
-
|
6
|
+
- 2.3
|
7
|
+
- 2.4
|
8
|
+
|
9
|
+
gemfile:
|
10
|
+
- gemfiles/capybara_2.gemfile
|
11
|
+
- gemfiles/capybara_3.gemfile
|
12
|
+
- gemfiles/rails_5.0.gemfile
|
13
|
+
- gemfiles/rails_5.1.gemfile
|
14
|
+
- gemfiles/rails_5.2.gemfile
|
15
|
+
|
6
16
|
addons:
|
7
17
|
apt:
|
8
18
|
packages:
|
9
19
|
- mplayer
|
10
20
|
|
21
|
+
cache: bundler
|
22
|
+
|
data/Appraisals
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
appraise "capybara-2" do
|
2
|
+
gem "capybara", "~>2.0"
|
3
|
+
end
|
4
|
+
|
5
|
+
appraise "capybara-3" do
|
6
|
+
gem "capybara", "~>3.0"
|
7
|
+
end
|
8
|
+
|
9
|
+
appraise "rails-5.0" do
|
10
|
+
gem "rails", "~>5.0.0"
|
11
|
+
end
|
12
|
+
|
13
|
+
appraise "rails-5.1" do
|
14
|
+
gem "rails", "~>5.1.0"
|
15
|
+
end
|
16
|
+
|
17
|
+
appraise "rails-5.2" do
|
18
|
+
gem "rails", "~>5.2.0"
|
19
|
+
end
|
20
|
+
|
data/README.md
CHANGED
data/ds_media_library.gemspec
CHANGED
@@ -24,6 +24,7 @@ Gem::Specification.new do |spec|
|
|
24
24
|
spec.add_development_dependency "bundler", "~> 1.14"
|
25
25
|
spec.add_development_dependency "rake", "~> 10.0"
|
26
26
|
spec.add_development_dependency "rspec", "~> 3.0"
|
27
|
+
spec.add_development_dependency "appraisal"
|
27
28
|
spec.add_development_dependency "cucumber-rails"
|
28
29
|
spec.add_development_dependency "chop"
|
29
30
|
spec.add_development_dependency "sqlite3"
|
@@ -0,0 +1,274 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
ds_media_library (0.5.5)
|
5
|
+
awesome_nested_set
|
6
|
+
coffee-rails
|
7
|
+
ds_node
|
8
|
+
font-awesome-rails
|
9
|
+
handlebars_assets
|
10
|
+
jquery-rails
|
11
|
+
jquery-ui-rails
|
12
|
+
rails
|
13
|
+
sass-rails
|
14
|
+
slim
|
15
|
+
|
16
|
+
GEM
|
17
|
+
remote: https://rubygems.org/
|
18
|
+
specs:
|
19
|
+
actioncable (5.2.0)
|
20
|
+
actionpack (= 5.2.0)
|
21
|
+
nio4r (~> 2.0)
|
22
|
+
websocket-driver (>= 0.6.1)
|
23
|
+
actionmailer (5.2.0)
|
24
|
+
actionpack (= 5.2.0)
|
25
|
+
actionview (= 5.2.0)
|
26
|
+
activejob (= 5.2.0)
|
27
|
+
mail (~> 2.5, >= 2.5.4)
|
28
|
+
rails-dom-testing (~> 2.0)
|
29
|
+
actionpack (5.2.0)
|
30
|
+
actionview (= 5.2.0)
|
31
|
+
activesupport (= 5.2.0)
|
32
|
+
rack (~> 2.0)
|
33
|
+
rack-test (>= 0.6.3)
|
34
|
+
rails-dom-testing (~> 2.0)
|
35
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
36
|
+
actionview (5.2.0)
|
37
|
+
activesupport (= 5.2.0)
|
38
|
+
builder (~> 3.1)
|
39
|
+
erubi (~> 1.4)
|
40
|
+
rails-dom-testing (~> 2.0)
|
41
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
42
|
+
active_record-json_associations (0.6.8)
|
43
|
+
activerecord
|
44
|
+
activejob (5.2.0)
|
45
|
+
activesupport (= 5.2.0)
|
46
|
+
globalid (>= 0.3.6)
|
47
|
+
activemodel (5.2.0)
|
48
|
+
activesupport (= 5.2.0)
|
49
|
+
activerecord (5.2.0)
|
50
|
+
activemodel (= 5.2.0)
|
51
|
+
activesupport (= 5.2.0)
|
52
|
+
arel (>= 9.0)
|
53
|
+
activestorage (5.2.0)
|
54
|
+
actionpack (= 5.2.0)
|
55
|
+
activerecord (= 5.2.0)
|
56
|
+
marcel (~> 0.3.1)
|
57
|
+
activesupport (5.2.0)
|
58
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
59
|
+
i18n (>= 0.7, < 2)
|
60
|
+
minitest (~> 5.1)
|
61
|
+
tzinfo (~> 1.1)
|
62
|
+
addressable (2.5.2)
|
63
|
+
public_suffix (>= 2.0.2, < 4.0)
|
64
|
+
appraisal (2.2.0)
|
65
|
+
bundler
|
66
|
+
rake
|
67
|
+
thor (>= 0.14.0)
|
68
|
+
arel (9.0.0)
|
69
|
+
awesome_nested_set (3.1.4)
|
70
|
+
activerecord (>= 4.0.0, < 5.3)
|
71
|
+
backports (3.11.3)
|
72
|
+
builder (3.2.3)
|
73
|
+
byebug (10.0.2)
|
74
|
+
capybara (2.18.0)
|
75
|
+
addressable
|
76
|
+
mini_mime (>= 0.1.3)
|
77
|
+
nokogiri (>= 1.3.3)
|
78
|
+
rack (>= 1.0.0)
|
79
|
+
rack-test (>= 0.5.4)
|
80
|
+
xpath (>= 2.0, < 4.0)
|
81
|
+
capybara-screenshot (1.0.21)
|
82
|
+
capybara (>= 1.0, < 4)
|
83
|
+
launchy
|
84
|
+
chop (0.22.1)
|
85
|
+
activerecord
|
86
|
+
capybara
|
87
|
+
cucumber
|
88
|
+
cliver (0.3.2)
|
89
|
+
coffee-rails (4.2.2)
|
90
|
+
coffee-script (>= 2.2.0)
|
91
|
+
railties (>= 4.0.0)
|
92
|
+
coffee-script (2.4.1)
|
93
|
+
coffee-script-source
|
94
|
+
execjs
|
95
|
+
coffee-script-source (1.12.2)
|
96
|
+
concurrent-ruby (1.0.5)
|
97
|
+
crass (1.0.4)
|
98
|
+
cucumber (3.1.2)
|
99
|
+
builder (>= 2.1.2)
|
100
|
+
cucumber-core (~> 3.2.0)
|
101
|
+
cucumber-expressions (~> 6.0.1)
|
102
|
+
cucumber-wire (~> 0.0.1)
|
103
|
+
diff-lcs (~> 1.3)
|
104
|
+
gherkin (~> 5.1.0)
|
105
|
+
multi_json (>= 1.7.5, < 2.0)
|
106
|
+
multi_test (>= 0.1.2)
|
107
|
+
cucumber-core (3.2.0)
|
108
|
+
backports (>= 3.8.0)
|
109
|
+
cucumber-tag_expressions (~> 1.1.0)
|
110
|
+
gherkin (>= 5.0.0)
|
111
|
+
cucumber-expressions (6.0.1)
|
112
|
+
cucumber-rails (1.6.0)
|
113
|
+
capybara (>= 1.1.2, < 4)
|
114
|
+
cucumber (>= 3.0.2, < 4)
|
115
|
+
mime-types (>= 1.17, < 4)
|
116
|
+
nokogiri (~> 1.8)
|
117
|
+
railties (>= 4, < 6)
|
118
|
+
cucumber-tag_expressions (1.1.1)
|
119
|
+
cucumber-wire (0.0.1)
|
120
|
+
database_cleaner (1.7.0)
|
121
|
+
diff-lcs (1.3)
|
122
|
+
ds_node (0.1.2)
|
123
|
+
active_record-json_associations
|
124
|
+
activerecord
|
125
|
+
mime-types
|
126
|
+
erubi (1.7.1)
|
127
|
+
execjs (2.7.0)
|
128
|
+
ffi (1.9.25)
|
129
|
+
font-awesome-rails (4.7.0.4)
|
130
|
+
railties (>= 3.2, < 6.0)
|
131
|
+
gherkin (5.1.0)
|
132
|
+
globalid (0.4.1)
|
133
|
+
activesupport (>= 4.2.0)
|
134
|
+
handlebars_assets (0.23.2)
|
135
|
+
execjs (~> 2.0)
|
136
|
+
sprockets (>= 2.0.0)
|
137
|
+
tilt (>= 1.2)
|
138
|
+
i18n (1.0.1)
|
139
|
+
concurrent-ruby (~> 1.0)
|
140
|
+
jquery-rails (4.3.3)
|
141
|
+
rails-dom-testing (>= 1, < 3)
|
142
|
+
railties (>= 4.2.0)
|
143
|
+
thor (>= 0.14, < 2.0)
|
144
|
+
jquery-ui-rails (6.0.1)
|
145
|
+
railties (>= 3.2.16)
|
146
|
+
launchy (2.4.3)
|
147
|
+
addressable (~> 2.3)
|
148
|
+
loofah (2.2.2)
|
149
|
+
crass (~> 1.0.2)
|
150
|
+
nokogiri (>= 1.5.9)
|
151
|
+
mail (2.7.0)
|
152
|
+
mini_mime (>= 0.1.1)
|
153
|
+
marcel (0.3.2)
|
154
|
+
mimemagic (~> 0.3.2)
|
155
|
+
method_source (0.9.0)
|
156
|
+
mime-types (3.1)
|
157
|
+
mime-types-data (~> 3.2015)
|
158
|
+
mime-types-data (3.2016.0521)
|
159
|
+
mimemagic (0.3.2)
|
160
|
+
mini_mime (1.0.0)
|
161
|
+
mini_portile2 (2.3.0)
|
162
|
+
minitest (5.11.3)
|
163
|
+
multi_json (1.13.1)
|
164
|
+
multi_test (0.1.2)
|
165
|
+
nio4r (2.3.1)
|
166
|
+
nokogiri (1.8.4)
|
167
|
+
mini_portile2 (~> 2.3.0)
|
168
|
+
phantomjs (2.1.1.0)
|
169
|
+
poltergeist (1.18.1)
|
170
|
+
capybara (>= 2.1, < 4)
|
171
|
+
cliver (~> 0.3.1)
|
172
|
+
websocket-driver (>= 0.2.0)
|
173
|
+
public_suffix (3.0.2)
|
174
|
+
rack (2.0.5)
|
175
|
+
rack-test (1.1.0)
|
176
|
+
rack (>= 1.0, < 3)
|
177
|
+
rails (5.2.0)
|
178
|
+
actioncable (= 5.2.0)
|
179
|
+
actionmailer (= 5.2.0)
|
180
|
+
actionpack (= 5.2.0)
|
181
|
+
actionview (= 5.2.0)
|
182
|
+
activejob (= 5.2.0)
|
183
|
+
activemodel (= 5.2.0)
|
184
|
+
activerecord (= 5.2.0)
|
185
|
+
activestorage (= 5.2.0)
|
186
|
+
activesupport (= 5.2.0)
|
187
|
+
bundler (>= 1.3.0)
|
188
|
+
railties (= 5.2.0)
|
189
|
+
sprockets-rails (>= 2.0.0)
|
190
|
+
rails-dom-testing (2.0.3)
|
191
|
+
activesupport (>= 4.2.0)
|
192
|
+
nokogiri (>= 1.6)
|
193
|
+
rails-html-sanitizer (1.0.4)
|
194
|
+
loofah (~> 2.2, >= 2.2.2)
|
195
|
+
railties (5.2.0)
|
196
|
+
actionpack (= 5.2.0)
|
197
|
+
activesupport (= 5.2.0)
|
198
|
+
method_source
|
199
|
+
rake (>= 0.8.7)
|
200
|
+
thor (>= 0.18.1, < 2.0)
|
201
|
+
rake (10.5.0)
|
202
|
+
rb-fsevent (0.10.3)
|
203
|
+
rb-inotify (0.9.10)
|
204
|
+
ffi (>= 0.5.0, < 2)
|
205
|
+
rspec (3.7.0)
|
206
|
+
rspec-core (~> 3.7.0)
|
207
|
+
rspec-expectations (~> 3.7.0)
|
208
|
+
rspec-mocks (~> 3.7.0)
|
209
|
+
rspec-core (3.7.1)
|
210
|
+
rspec-support (~> 3.7.0)
|
211
|
+
rspec-expectations (3.7.0)
|
212
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
213
|
+
rspec-support (~> 3.7.0)
|
214
|
+
rspec-mocks (3.7.0)
|
215
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
216
|
+
rspec-support (~> 3.7.0)
|
217
|
+
rspec-support (3.7.1)
|
218
|
+
sass (3.5.7)
|
219
|
+
sass-listen (~> 4.0.0)
|
220
|
+
sass-listen (4.0.0)
|
221
|
+
rb-fsevent (~> 0.9, >= 0.9.4)
|
222
|
+
rb-inotify (~> 0.9, >= 0.9.7)
|
223
|
+
sass-rails (5.0.7)
|
224
|
+
railties (>= 4.0.0, < 6)
|
225
|
+
sass (~> 3.1)
|
226
|
+
sprockets (>= 2.8, < 4.0)
|
227
|
+
sprockets-rails (>= 2.0, < 4.0)
|
228
|
+
tilt (>= 1.1, < 3)
|
229
|
+
slim (3.0.9)
|
230
|
+
temple (>= 0.7.6, < 0.9)
|
231
|
+
tilt (>= 1.3.3, < 2.1)
|
232
|
+
sprockets (3.7.2)
|
233
|
+
concurrent-ruby (~> 1.0)
|
234
|
+
rack (> 1, < 3)
|
235
|
+
sprockets-rails (3.2.1)
|
236
|
+
actionpack (>= 4.0)
|
237
|
+
activesupport (>= 4.0)
|
238
|
+
sprockets (>= 3.0.0)
|
239
|
+
sqlite3 (1.3.13)
|
240
|
+
temple (0.8.0)
|
241
|
+
thor (0.20.0)
|
242
|
+
thread_safe (0.3.6)
|
243
|
+
tilt (2.0.8)
|
244
|
+
timecop (0.9.1)
|
245
|
+
tzinfo (1.2.5)
|
246
|
+
thread_safe (~> 0.1)
|
247
|
+
websocket-driver (0.7.0)
|
248
|
+
websocket-extensions (>= 0.1.0)
|
249
|
+
websocket-extensions (0.1.3)
|
250
|
+
xpath (3.1.0)
|
251
|
+
nokogiri (~> 1.8)
|
252
|
+
|
253
|
+
PLATFORMS
|
254
|
+
ruby
|
255
|
+
|
256
|
+
DEPENDENCIES
|
257
|
+
appraisal
|
258
|
+
bundler (~> 1.14)
|
259
|
+
byebug
|
260
|
+
capybara (~> 2.0)
|
261
|
+
capybara-screenshot
|
262
|
+
chop
|
263
|
+
cucumber-rails
|
264
|
+
database_cleaner
|
265
|
+
ds_media_library!
|
266
|
+
phantomjs
|
267
|
+
poltergeist
|
268
|
+
rake (~> 10.0)
|
269
|
+
rspec (~> 3.0)
|
270
|
+
sqlite3
|
271
|
+
timecop
|
272
|
+
|
273
|
+
BUNDLED WITH
|
274
|
+
1.16.3
|
@@ -0,0 +1,274 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
ds_media_library (0.5.5)
|
5
|
+
awesome_nested_set
|
6
|
+
coffee-rails
|
7
|
+
ds_node
|
8
|
+
font-awesome-rails
|
9
|
+
handlebars_assets
|
10
|
+
jquery-rails
|
11
|
+
jquery-ui-rails
|
12
|
+
rails
|
13
|
+
sass-rails
|
14
|
+
slim
|
15
|
+
|
16
|
+
GEM
|
17
|
+
remote: https://rubygems.org/
|
18
|
+
specs:
|
19
|
+
actioncable (5.2.0)
|
20
|
+
actionpack (= 5.2.0)
|
21
|
+
nio4r (~> 2.0)
|
22
|
+
websocket-driver (>= 0.6.1)
|
23
|
+
actionmailer (5.2.0)
|
24
|
+
actionpack (= 5.2.0)
|
25
|
+
actionview (= 5.2.0)
|
26
|
+
activejob (= 5.2.0)
|
27
|
+
mail (~> 2.5, >= 2.5.4)
|
28
|
+
rails-dom-testing (~> 2.0)
|
29
|
+
actionpack (5.2.0)
|
30
|
+
actionview (= 5.2.0)
|
31
|
+
activesupport (= 5.2.0)
|
32
|
+
rack (~> 2.0)
|
33
|
+
rack-test (>= 0.6.3)
|
34
|
+
rails-dom-testing (~> 2.0)
|
35
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
36
|
+
actionview (5.2.0)
|
37
|
+
activesupport (= 5.2.0)
|
38
|
+
builder (~> 3.1)
|
39
|
+
erubi (~> 1.4)
|
40
|
+
rails-dom-testing (~> 2.0)
|
41
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
42
|
+
active_record-json_associations (0.6.8)
|
43
|
+
activerecord
|
44
|
+
activejob (5.2.0)
|
45
|
+
activesupport (= 5.2.0)
|
46
|
+
globalid (>= 0.3.6)
|
47
|
+
activemodel (5.2.0)
|
48
|
+
activesupport (= 5.2.0)
|
49
|
+
activerecord (5.2.0)
|
50
|
+
activemodel (= 5.2.0)
|
51
|
+
activesupport (= 5.2.0)
|
52
|
+
arel (>= 9.0)
|
53
|
+
activestorage (5.2.0)
|
54
|
+
actionpack (= 5.2.0)
|
55
|
+
activerecord (= 5.2.0)
|
56
|
+
marcel (~> 0.3.1)
|
57
|
+
activesupport (5.2.0)
|
58
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
59
|
+
i18n (>= 0.7, < 2)
|
60
|
+
minitest (~> 5.1)
|
61
|
+
tzinfo (~> 1.1)
|
62
|
+
addressable (2.5.2)
|
63
|
+
public_suffix (>= 2.0.2, < 4.0)
|
64
|
+
appraisal (2.2.0)
|
65
|
+
bundler
|
66
|
+
rake
|
67
|
+
thor (>= 0.14.0)
|
68
|
+
arel (9.0.0)
|
69
|
+
awesome_nested_set (3.1.4)
|
70
|
+
activerecord (>= 4.0.0, < 5.3)
|
71
|
+
backports (3.11.3)
|
72
|
+
builder (3.2.3)
|
73
|
+
byebug (10.0.2)
|
74
|
+
capybara (3.1.1)
|
75
|
+
addressable
|
76
|
+
mini_mime (>= 0.1.3)
|
77
|
+
nokogiri (~> 1.8)
|
78
|
+
rack (>= 1.6.0)
|
79
|
+
rack-test (>= 0.6.3)
|
80
|
+
xpath (~> 3.0)
|
81
|
+
capybara-screenshot (1.0.21)
|
82
|
+
capybara (>= 1.0, < 4)
|
83
|
+
launchy
|
84
|
+
chop (0.22.1)
|
85
|
+
activerecord
|
86
|
+
capybara
|
87
|
+
cucumber
|
88
|
+
cliver (0.3.2)
|
89
|
+
coffee-rails (4.2.2)
|
90
|
+
coffee-script (>= 2.2.0)
|
91
|
+
railties (>= 4.0.0)
|
92
|
+
coffee-script (2.4.1)
|
93
|
+
coffee-script-source
|
94
|
+
execjs
|
95
|
+
coffee-script-source (1.12.2)
|
96
|
+
concurrent-ruby (1.0.5)
|
97
|
+
crass (1.0.4)
|
98
|
+
cucumber (3.1.2)
|
99
|
+
builder (>= 2.1.2)
|
100
|
+
cucumber-core (~> 3.2.0)
|
101
|
+
cucumber-expressions (~> 6.0.1)
|
102
|
+
cucumber-wire (~> 0.0.1)
|
103
|
+
diff-lcs (~> 1.3)
|
104
|
+
gherkin (~> 5.1.0)
|
105
|
+
multi_json (>= 1.7.5, < 2.0)
|
106
|
+
multi_test (>= 0.1.2)
|
107
|
+
cucumber-core (3.2.0)
|
108
|
+
backports (>= 3.8.0)
|
109
|
+
cucumber-tag_expressions (~> 1.1.0)
|
110
|
+
gherkin (>= 5.0.0)
|
111
|
+
cucumber-expressions (6.0.1)
|
112
|
+
cucumber-rails (1.6.0)
|
113
|
+
capybara (>= 1.1.2, < 4)
|
114
|
+
cucumber (>= 3.0.2, < 4)
|
115
|
+
mime-types (>= 1.17, < 4)
|
116
|
+
nokogiri (~> 1.8)
|
117
|
+
railties (>= 4, < 6)
|
118
|
+
cucumber-tag_expressions (1.1.1)
|
119
|
+
cucumber-wire (0.0.1)
|
120
|
+
database_cleaner (1.7.0)
|
121
|
+
diff-lcs (1.3)
|
122
|
+
ds_node (0.1.2)
|
123
|
+
active_record-json_associations
|
124
|
+
activerecord
|
125
|
+
mime-types
|
126
|
+
erubi (1.7.1)
|
127
|
+
execjs (2.7.0)
|
128
|
+
ffi (1.9.25)
|
129
|
+
font-awesome-rails (4.7.0.4)
|
130
|
+
railties (>= 3.2, < 6.0)
|
131
|
+
gherkin (5.1.0)
|
132
|
+
globalid (0.4.1)
|
133
|
+
activesupport (>= 4.2.0)
|
134
|
+
handlebars_assets (0.23.2)
|
135
|
+
execjs (~> 2.0)
|
136
|
+
sprockets (>= 2.0.0)
|
137
|
+
tilt (>= 1.2)
|
138
|
+
i18n (1.0.1)
|
139
|
+
concurrent-ruby (~> 1.0)
|
140
|
+
jquery-rails (4.3.3)
|
141
|
+
rails-dom-testing (>= 1, < 3)
|
142
|
+
railties (>= 4.2.0)
|
143
|
+
thor (>= 0.14, < 2.0)
|
144
|
+
jquery-ui-rails (6.0.1)
|
145
|
+
railties (>= 3.2.16)
|
146
|
+
launchy (2.4.3)
|
147
|
+
addressable (~> 2.3)
|
148
|
+
loofah (2.2.2)
|
149
|
+
crass (~> 1.0.2)
|
150
|
+
nokogiri (>= 1.5.9)
|
151
|
+
mail (2.7.0)
|
152
|
+
mini_mime (>= 0.1.1)
|
153
|
+
marcel (0.3.2)
|
154
|
+
mimemagic (~> 0.3.2)
|
155
|
+
method_source (0.9.0)
|
156
|
+
mime-types (3.1)
|
157
|
+
mime-types-data (~> 3.2015)
|
158
|
+
mime-types-data (3.2016.0521)
|
159
|
+
mimemagic (0.3.2)
|
160
|
+
mini_mime (1.0.0)
|
161
|
+
mini_portile2 (2.3.0)
|
162
|
+
minitest (5.11.3)
|
163
|
+
multi_json (1.13.1)
|
164
|
+
multi_test (0.1.2)
|
165
|
+
nio4r (2.3.1)
|
166
|
+
nokogiri (1.8.4)
|
167
|
+
mini_portile2 (~> 2.3.0)
|
168
|
+
phantomjs (2.1.1.0)
|
169
|
+
poltergeist (1.18.1)
|
170
|
+
capybara (>= 2.1, < 4)
|
171
|
+
cliver (~> 0.3.1)
|
172
|
+
websocket-driver (>= 0.2.0)
|
173
|
+
public_suffix (3.0.2)
|
174
|
+
rack (2.0.5)
|
175
|
+
rack-test (1.1.0)
|
176
|
+
rack (>= 1.0, < 3)
|
177
|
+
rails (5.2.0)
|
178
|
+
actioncable (= 5.2.0)
|
179
|
+
actionmailer (= 5.2.0)
|
180
|
+
actionpack (= 5.2.0)
|
181
|
+
actionview (= 5.2.0)
|
182
|
+
activejob (= 5.2.0)
|
183
|
+
activemodel (= 5.2.0)
|
184
|
+
activerecord (= 5.2.0)
|
185
|
+
activestorage (= 5.2.0)
|
186
|
+
activesupport (= 5.2.0)
|
187
|
+
bundler (>= 1.3.0)
|
188
|
+
railties (= 5.2.0)
|
189
|
+
sprockets-rails (>= 2.0.0)
|
190
|
+
rails-dom-testing (2.0.3)
|
191
|
+
activesupport (>= 4.2.0)
|
192
|
+
nokogiri (>= 1.6)
|
193
|
+
rails-html-sanitizer (1.0.4)
|
194
|
+
loofah (~> 2.2, >= 2.2.2)
|
195
|
+
railties (5.2.0)
|
196
|
+
actionpack (= 5.2.0)
|
197
|
+
activesupport (= 5.2.0)
|
198
|
+
method_source
|
199
|
+
rake (>= 0.8.7)
|
200
|
+
thor (>= 0.18.1, < 2.0)
|
201
|
+
rake (10.5.0)
|
202
|
+
rb-fsevent (0.10.3)
|
203
|
+
rb-inotify (0.9.10)
|
204
|
+
ffi (>= 0.5.0, < 2)
|
205
|
+
rspec (3.7.0)
|
206
|
+
rspec-core (~> 3.7.0)
|
207
|
+
rspec-expectations (~> 3.7.0)
|
208
|
+
rspec-mocks (~> 3.7.0)
|
209
|
+
rspec-core (3.7.1)
|
210
|
+
rspec-support (~> 3.7.0)
|
211
|
+
rspec-expectations (3.7.0)
|
212
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
213
|
+
rspec-support (~> 3.7.0)
|
214
|
+
rspec-mocks (3.7.0)
|
215
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
216
|
+
rspec-support (~> 3.7.0)
|
217
|
+
rspec-support (3.7.1)
|
218
|
+
sass (3.5.7)
|
219
|
+
sass-listen (~> 4.0.0)
|
220
|
+
sass-listen (4.0.0)
|
221
|
+
rb-fsevent (~> 0.9, >= 0.9.4)
|
222
|
+
rb-inotify (~> 0.9, >= 0.9.7)
|
223
|
+
sass-rails (5.0.7)
|
224
|
+
railties (>= 4.0.0, < 6)
|
225
|
+
sass (~> 3.1)
|
226
|
+
sprockets (>= 2.8, < 4.0)
|
227
|
+
sprockets-rails (>= 2.0, < 4.0)
|
228
|
+
tilt (>= 1.1, < 3)
|
229
|
+
slim (3.0.9)
|
230
|
+
temple (>= 0.7.6, < 0.9)
|
231
|
+
tilt (>= 1.3.3, < 2.1)
|
232
|
+
sprockets (3.7.2)
|
233
|
+
concurrent-ruby (~> 1.0)
|
234
|
+
rack (> 1, < 3)
|
235
|
+
sprockets-rails (3.2.1)
|
236
|
+
actionpack (>= 4.0)
|
237
|
+
activesupport (>= 4.0)
|
238
|
+
sprockets (>= 3.0.0)
|
239
|
+
sqlite3 (1.3.13)
|
240
|
+
temple (0.8.0)
|
241
|
+
thor (0.20.0)
|
242
|
+
thread_safe (0.3.6)
|
243
|
+
tilt (2.0.8)
|
244
|
+
timecop (0.9.1)
|
245
|
+
tzinfo (1.2.5)
|
246
|
+
thread_safe (~> 0.1)
|
247
|
+
websocket-driver (0.7.0)
|
248
|
+
websocket-extensions (>= 0.1.0)
|
249
|
+
websocket-extensions (0.1.3)
|
250
|
+
xpath (3.1.0)
|
251
|
+
nokogiri (~> 1.8)
|
252
|
+
|
253
|
+
PLATFORMS
|
254
|
+
ruby
|
255
|
+
|
256
|
+
DEPENDENCIES
|
257
|
+
appraisal
|
258
|
+
bundler (~> 1.14)
|
259
|
+
byebug
|
260
|
+
capybara (~> 3.0)
|
261
|
+
capybara-screenshot
|
262
|
+
chop
|
263
|
+
cucumber-rails
|
264
|
+
database_cleaner
|
265
|
+
ds_media_library!
|
266
|
+
phantomjs
|
267
|
+
poltergeist
|
268
|
+
rake (~> 10.0)
|
269
|
+
rspec (~> 3.0)
|
270
|
+
sqlite3
|
271
|
+
timecop
|
272
|
+
|
273
|
+
BUNDLED WITH
|
274
|
+
1.16.3
|