refinerycms-photo-gallery 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 (37) hide show
  1. checksums.yaml +4 -4
  2. data/Changelog.md +7 -1
  3. data/Gemfile +8 -3
  4. data/Gemfile.lock +244 -183
  5. data/README.md +12 -11
  6. data/app/assets/javascripts/refinery/photo_gallery/admin/photo_gallery.js.erb +1 -10
  7. data/app/controllers/refinery/photo_gallery/admin/photos_controller.rb +2 -2
  8. data/app/models/refinery/album_page.rb +1 -1
  9. data/app/models/refinery/photo_gallery/album.rb +6 -7
  10. data/app/views/refinery/admin/pages/tabs/_form.html.erb +1 -1
  11. data/app/views/refinery/admin/pages/tabs/_photo_gallery.html.erb +1 -1
  12. data/app/views/refinery/photo_gallery/admin/albums/_album.html.erb +1 -1
  13. data/config/locales/de.yml +109 -0
  14. data/config/locales/no.yml +109 -0
  15. data/config/locales/zh-CN.yml +109 -0
  16. data/db/migrate/20120804063842_create_albums.rb +3 -3
  17. data/db/migrate/20120805131321_create_collections.rb +1 -1
  18. data/db/migrate/20120805131547_create_collection_albums.rb +1 -1
  19. data/db/migrate/20120805165238_create_photos.rb +3 -3
  20. data/db/migrate/20120805222125_add_indexes.rb +1 -1
  21. data/db/migrate/20120805222126_create_album_pages.rb +1 -1
  22. data/db/migrate/20130127175559_add_url_to_photos.rb +1 -1
  23. data/db/migrate/20130128173800_add_css_styles_and_show_original_fields_to_photos.rb +1 -1
  24. data/lib/refinery/photo_gallery/extensions/pages_controller_extension.rb +1 -1
  25. data/lib/refinery/photo_gallery/extensions/pages_extension.rb +2 -2
  26. data/lib/refinery/photo_gallery/version.rb +1 -1
  27. data/refinerycms-photo-gallery.gemspec +5 -4
  28. data/spec/factories/album_photos.rb +2 -2
  29. data/spec/factories/albums.rb +3 -3
  30. data/spec/factories/collections.rb +3 -3
  31. data/spec/factories/photos.rb +2 -2
  32. data/spec/features/manage_albums_spec.rb +3 -3
  33. data/spec/features/manage_collections_spec.rb +3 -3
  34. data/spec/features/manage_photos_spec.rb +3 -3
  35. data/tasks/testing.rake +2 -1
  36. metadata +30 -15
  37. data/spec/factories/user.rb +0 -27
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 00fe71a7431c8031c2342d69504077f545a1d750
4
- data.tar.gz: 87e7b252e70f8bbba11e8ed41060b10529797d61
3
+ metadata.gz: ba384d6ccd92e6dad427b1f974aba288bb1ce356
4
+ data.tar.gz: a12571c2af111cf747ea32406dfd978d4567f0b4
5
5
  SHA512:
6
- metadata.gz: b29a94104225ad70863752e2f104194b7c8c73237e29b9e208be01eb3af8e5f6ec7f604db7112adb8084deeaeb82b332976996f0f2a87aaa0cfbf7525dda4002
7
- data.tar.gz: dd0149397b8f11315e03cc47cfd90efab4f13cc757ac3355c0dac1463ba6eb2fdc3f8cf080a1810af46ca6f4f12eaa7318bd19aa145661c951f8d7644f990f62
6
+ metadata.gz: 5e18bb09790d313b4a67f0d30ed9e8399445a39312bf35e8ddcf29ed25939b5d6a726e20567100095c59e6a9fb93cc17b889dee9e7a2234033426443e81e1a91
7
+ data.tar.gz: 5705b378b434e38d392e16666af934ac19a33f1e0b5f244332d1e4e5727f658264cefe338ca9d1ab04aaa70702987984e6c623472964bd43ab250343acb74134
@@ -1,4 +1,10 @@
1
- ## 0.2.0 [unreleased]
1
+ ## 0.3.0 [1 November 2019]
2
+ * Fix mini_magick version to >= 4.9.4, due to CVE-2019-13574 vulnerability
3
+ * Change rack version to >= 1.6.11 due to CVE-2018-16471 vulnerability
4
+ * Add locales for de, no, zh-CN
5
+ * Added support for Rails 5.1 and Refinery 4.0.3
6
+
7
+ ## 0.2.0 [29 December 2016]
2
8
  * introduce support for Rails 4.2 and Refinery 3.0
3
9
  * introduce Strong Parameters protection instead of attr_*
4
10
  * change Plupload version from 1.5.9 to 2.1.9 due to JQuery incompatibilities
data/Gemfile CHANGED
@@ -1,13 +1,18 @@
1
1
  source "https://rubygems.org"
2
2
 
3
- gem "refinerycms-authentication-devise", '~> 1.0.4'
3
+ # this is due to renaming FactoryGirl -> FactoryBot. You do not need to use this version exactly
4
+ gem "refinerycms-authentication-devise", '~> 2.0.1', git: 'https://github.com/refinery/refinerycms-authentication-devise', ref: "4fbe5428ea2fd2bfe033617d50c47dc2ce14351d"
4
5
 
5
6
  gemspec
6
7
 
7
- gem 'refinerycms', '~> 3.0.5'
8
+ gem 'refinerycms', '~> 4.0.3'
8
9
 
9
10
  group :development, :test do
10
- gem 'refinerycms-testing', '~> 3.0.5'
11
+ gem 'listen'
12
+ end
13
+
14
+ group :development, :test do
15
+ gem 'refinerycms-testing', '~> 4.0.3'
11
16
  end
12
17
 
13
18
  # Add the default visual editor, for now.
@@ -1,139 +1,184 @@
1
+ GIT
2
+ remote: https://github.com/refinery/refinerycms-authentication-devise
3
+ revision: 4fbe5428ea2fd2bfe033617d50c47dc2ce14351d
4
+ ref: 4fbe5428ea2fd2bfe033617d50c47dc2ce14351d
5
+ specs:
6
+ refinerycms-authentication-devise (2.0.1)
7
+ actionmailer (>= 5.0.0)
8
+ devise (~> 4.0, >= 4.3.0)
9
+ friendly_id (~> 5.2.1)
10
+ refinerycms-core (>= 3.0.0, < 5.0)
11
+
1
12
  PATH
2
13
  remote: .
3
14
  specs:
4
- refinerycms-photo-gallery (0.2.0)
5
- carrierwave (= 0.6.2)
15
+ refinerycms-photo-gallery (0.3.0)
16
+ carrierwave (~> 1.3.1)
6
17
  mime-types
7
18
  mini_exiftool
8
- mini_magick
9
- refinerycms-core (~> 3.0.5)
19
+ mini_magick (>= 4.9.4)
20
+ rack (>= 1.6.11)
21
+ refinerycms-core (~> 4.0.3)
10
22
 
11
23
  GEM
12
24
  remote: https://rubygems.org/
13
25
  specs:
14
- actionmailer (4.2.7.1)
15
- actionpack (= 4.2.7.1)
16
- actionview (= 4.2.7.1)
17
- activejob (= 4.2.7.1)
26
+ actionmailer (5.1.7)
27
+ actionpack (= 5.1.7)
28
+ actionview (= 5.1.7)
29
+ activejob (= 5.1.7)
18
30
  mail (~> 2.5, >= 2.5.4)
19
- rails-dom-testing (~> 1.0, >= 1.0.5)
20
- actionpack (4.2.7.1)
21
- actionview (= 4.2.7.1)
22
- activesupport (= 4.2.7.1)
23
- rack (~> 1.6)
24
- rack-test (~> 0.6.2)
25
- rails-dom-testing (~> 1.0, >= 1.0.5)
31
+ rails-dom-testing (~> 2.0)
32
+ actionpack (5.1.7)
33
+ actionview (= 5.1.7)
34
+ activesupport (= 5.1.7)
35
+ rack (~> 2.0)
36
+ rack-test (>= 0.6.3)
37
+ rails-dom-testing (~> 2.0)
26
38
  rails-html-sanitizer (~> 1.0, >= 1.0.2)
27
- actionview (4.2.7.1)
28
- activesupport (= 4.2.7.1)
39
+ actionview (5.1.7)
40
+ activesupport (= 5.1.7)
29
41
  builder (~> 3.1)
30
- erubis (~> 2.7.0)
31
- rails-dom-testing (~> 1.0, >= 1.0.5)
32
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
33
- activejob (4.2.7.1)
34
- activesupport (= 4.2.7.1)
35
- globalid (>= 0.3.0)
36
- activemodel (4.2.7.1)
37
- activesupport (= 4.2.7.1)
42
+ erubi (~> 1.4)
43
+ rails-dom-testing (~> 2.0)
44
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
45
+ activejob (5.1.7)
46
+ activesupport (= 5.1.7)
47
+ globalid (>= 0.3.6)
48
+ activemodel (5.1.7)
49
+ activesupport (= 5.1.7)
50
+ activemodel-serializers-xml (1.0.2)
51
+ activemodel (> 5.x)
52
+ activesupport (> 5.x)
38
53
  builder (~> 3.1)
39
- activerecord (4.2.7.1)
40
- activemodel (= 4.2.7.1)
41
- activesupport (= 4.2.7.1)
42
- arel (~> 6.0)
43
- activesupport (4.2.7.1)
44
- i18n (~> 0.7)
45
- json (~> 1.7, >= 1.7.7)
54
+ activerecord (5.1.7)
55
+ activemodel (= 5.1.7)
56
+ activesupport (= 5.1.7)
57
+ arel (~> 8.0)
58
+ activesupport (5.1.7)
59
+ concurrent-ruby (~> 1.0, >= 1.0.2)
60
+ i18n (>= 0.7, < 2)
46
61
  minitest (~> 5.1)
47
- thread_safe (~> 0.3, >= 0.3.4)
48
62
  tzinfo (~> 1.1)
49
63
  acts_as_indexed (0.8.3)
50
- addressable (2.5.0)
51
- public_suffix (~> 2.0, >= 2.0.2)
52
- arel (6.0.3)
53
- awesome_nested_set (3.0.3)
54
- activerecord (>= 4.0.0, < 5)
55
- babosa (1.0.2)
56
- bcrypt (3.1.11)
57
- builder (3.2.2)
58
- capybara (2.4.4)
59
- mime-types (>= 1.16)
64
+ addressable (2.7.0)
65
+ public_suffix (>= 2.0.2, < 5.0)
66
+ arel (8.0.0)
67
+ awesome_nested_set (3.2.0)
68
+ activerecord (>= 4.0.0, < 7.0)
69
+ babosa (1.0.3)
70
+ bcrypt (3.1.13)
71
+ builder (3.2.3)
72
+ capybara (2.18.0)
73
+ addressable
74
+ mini_mime (>= 0.1.3)
60
75
  nokogiri (>= 1.3.3)
61
76
  rack (>= 1.0.0)
62
77
  rack-test (>= 0.5.4)
63
- xpath (~> 2.0)
78
+ xpath (>= 2.0, < 4.0)
64
79
  capybara-screenshot (1.0.14)
65
80
  capybara (>= 1.0, < 3)
66
81
  launchy
67
- carrierwave (0.6.2)
68
- activemodel (>= 3.2.0)
69
- activesupport (>= 3.2.0)
82
+ carrierwave (1.3.1)
83
+ activemodel (>= 4.0.0)
84
+ activesupport (>= 4.0.0)
85
+ mime-types (>= 1.16)
70
86
  cliver (0.3.2)
71
87
  coderay (1.1.1)
72
- coffee-rails (4.2.1)
88
+ coffee-rails (4.2.2)
73
89
  coffee-script (>= 2.2.0)
74
- railties (>= 4.0.0, < 5.2.x)
90
+ railties (>= 4.0.0)
75
91
  coffee-script (2.4.1)
76
92
  coffee-script-source
77
93
  execjs
78
94
  coffee-script-source (1.12.2)
79
- concurrent-ruby (1.0.3)
80
- database_cleaner (1.3.0)
81
- decorators (2.0.2)
82
- railties (>= 4.0.0, < 5.1)
83
- devise (3.5.10)
95
+ concurrent-ruby (1.1.5)
96
+ crass (1.0.5)
97
+ database_cleaner (1.7.0)
98
+ decorators (2.0.5)
99
+ railties (>= 4.0.0, < 7)
100
+ devise (4.7.1)
84
101
  bcrypt (~> 3.0)
85
102
  orm_adapter (~> 0.1)
86
- railties (>= 3.2.6, < 5)
103
+ railties (>= 4.1.0)
87
104
  responders
88
- thread_safe (~> 0.1)
89
105
  warden (~> 1.2.3)
90
- diff-lcs (1.2.5)
91
- diffy (3.1.0)
92
- dragonfly (1.0.12)
106
+ diff-lcs (1.3)
107
+ diffy (3.3.0)
108
+ dragonfly (1.2.0)
93
109
  addressable (~> 2.3)
94
110
  multi_json (~> 1.0)
95
- rack (>= 1.3.0)
96
- erubis (2.7.0)
111
+ rack (>= 1.3)
112
+ dragonfly-s3_data_store (1.3.0)
113
+ dragonfly (~> 1.0)
114
+ fog-aws
115
+ erubi (1.9.0)
116
+ excon (0.68.0)
97
117
  execjs (2.7.0)
98
- factory_girl (4.5.0)
118
+ factory_bot (4.11.1)
99
119
  activesupport (>= 3.0.0)
100
- factory_girl_rails (4.6.0)
101
- factory_girl (~> 4.5.0)
120
+ factory_bot_rails (4.11.1)
121
+ factory_bot (~> 4.11.1)
102
122
  railties (>= 3.0.0)
123
+ ffi (1.11.1)
124
+ fog-aws (3.5.2)
125
+ fog-core (~> 2.1)
126
+ fog-json (~> 1.1)
127
+ fog-xml (~> 0.1)
128
+ ipaddress (~> 0.8)
129
+ fog-core (2.1.2)
130
+ builder
131
+ excon (~> 0.58)
132
+ formatador (~> 0.2)
133
+ mime-types
134
+ fog-json (1.2.0)
135
+ fog-core
136
+ multi_json (~> 1.10)
137
+ fog-xml (0.1.3)
138
+ fog-core
139
+ nokogiri (>= 1.5.11, < 2.0.0)
103
140
  font-awesome-sass (4.7.0)
104
141
  sass (>= 3.2)
105
- friendly_id (5.1.0)
142
+ formatador (0.2.5)
143
+ friendly_id (5.2.5)
106
144
  activerecord (>= 4.0.0)
107
- globalid (0.3.7)
108
- activesupport (>= 4.1.0)
109
- globalize (5.0.1)
110
- activemodel (>= 4.2.0, < 4.3)
111
- activerecord (>= 4.2.0, < 4.3)
112
- i18n (0.7.0)
113
- jquery-rails (4.2.1)
145
+ globalid (0.4.2)
146
+ activesupport (>= 4.2.0)
147
+ globalize (5.1.0)
148
+ activemodel (>= 4.2, < 5.2)
149
+ activerecord (>= 4.2, < 5.2)
150
+ request_store (~> 1.0)
151
+ i18n (0.9.5)
152
+ concurrent-ruby (~> 1.0)
153
+ ipaddress (0.8.3)
154
+ jquery-rails (4.3.5)
114
155
  rails-dom-testing (>= 1, < 3)
115
156
  railties (>= 4.2.0)
116
157
  thor (>= 0.14, < 2.0)
117
158
  jquery-ui-rails (5.0.5)
118
159
  railties (>= 3.2.16)
119
- json (1.8.3)
120
160
  launchy (2.4.3)
121
161
  addressable (~> 2.3)
122
- loofah (2.0.3)
162
+ listen (3.2.0)
163
+ rb-fsevent (~> 0.10, >= 0.10.3)
164
+ rb-inotify (~> 0.9, >= 0.9.10)
165
+ loofah (2.3.1)
166
+ crass (~> 1.0.2)
123
167
  nokogiri (>= 1.5.9)
124
- mail (2.6.4)
125
- mime-types (>= 1.16, < 4)
168
+ mail (2.7.1)
169
+ mini_mime (>= 0.1.1)
126
170
  method_source (0.8.2)
127
- mime-types (3.1)
171
+ mime-types (3.3)
128
172
  mime-types-data (~> 3.2015)
129
- mime-types-data (3.2016.0521)
130
- mini_exiftool (2.8.0)
131
- mini_magick (4.6.0)
132
- mini_portile2 (2.1.0)
133
- minitest (5.10.1)
134
- multi_json (1.12.1)
135
- nokogiri (1.6.8.1)
136
- mini_portile2 (~> 2.1.0)
173
+ mime-types-data (3.2019.1009)
174
+ mini_exiftool (2.9.1)
175
+ mini_magick (4.9.5)
176
+ mini_mime (1.0.2)
177
+ mini_portile2 (2.4.0)
178
+ minitest (5.13.0)
179
+ multi_json (1.14.1)
180
+ nokogiri (1.10.5)
181
+ mini_portile2 (~> 2.4.0)
137
182
  orm_adapter (0.5.0)
138
183
  pg (0.19.0)
139
184
  poltergeist (1.12.0)
@@ -144,137 +189,152 @@ GEM
144
189
  coderay (~> 1.1.0)
145
190
  method_source (~> 0.8.1)
146
191
  slop (~> 3.4)
147
- public_suffix (2.0.4)
148
- rack (1.6.5)
149
- rack-test (0.6.3)
150
- rack (>= 1.0)
151
- rails-deprecated_sanitizer (1.0.3)
152
- activesupport (>= 4.2.0.alpha)
153
- rails-dom-testing (1.0.7)
154
- activesupport (>= 4.2.0.beta, < 5.0)
155
- nokogiri (~> 1.6.0)
156
- rails-deprecated_sanitizer (>= 1.0.1)
157
- rails-html-sanitizer (1.0.3)
158
- loofah (~> 2.0)
159
- rails-i18n (4.0.9)
192
+ public_suffix (4.0.1)
193
+ rack (2.0.7)
194
+ rack-test (1.1.0)
195
+ rack (>= 1.0, < 3)
196
+ rails-controller-testing (0.1.1)
197
+ actionpack (~> 5.x)
198
+ actionview (~> 5.x)
199
+ activesupport (~> 5.x)
200
+ rails-dom-testing (2.0.3)
201
+ activesupport (>= 4.2.0)
202
+ nokogiri (>= 1.6)
203
+ rails-html-sanitizer (1.3.0)
204
+ loofah (~> 2.3)
205
+ rails-i18n (5.0.4)
160
206
  i18n (~> 0.7)
161
- railties (~> 4.0)
162
- railties (4.2.7.1)
163
- actionpack (= 4.2.7.1)
164
- activesupport (= 4.2.7.1)
207
+ railties (~> 5.0)
208
+ railties (5.1.7)
209
+ actionpack (= 5.1.7)
210
+ activesupport (= 5.1.7)
211
+ method_source
165
212
  rake (>= 0.8.7)
166
213
  thor (>= 0.18.1, < 2.0)
167
- rake (12.0.0)
168
- refinerycms (3.0.5)
169
- refinerycms-core (= 3.0.5)
170
- refinerycms-images (= 3.0.5)
171
- refinerycms-pages (= 3.0.5)
172
- refinerycms-resources (= 3.0.5)
173
- refinerycms-authentication-devise (1.0.4)
174
- actionmailer (~> 4.2, >= 4.2.0)
175
- devise (~> 3.0, >= 3.2.4)
176
- friendly_id (~> 5.1.0)
177
- refinerycms-core (~> 3.0, >= 3.0.0)
178
- refinerycms-core (3.0.5)
179
- actionpack (>= 4.2.3, < 5.0)
180
- activerecord (>= 4.2.3, < 5.0)
181
- awesome_nested_set (~> 3.0.0)
214
+ rake (13.0.0)
215
+ rb-fsevent (0.10.3)
216
+ rb-inotify (0.10.0)
217
+ ffi (~> 1.0)
218
+ refinerycms (4.0.3)
219
+ refinerycms-core (= 4.0.3)
220
+ refinerycms-images (= 4.0.3)
221
+ refinerycms-pages (= 4.0.3)
222
+ refinerycms-resources (= 4.0.3)
223
+ refinerycms-core (4.0.3)
224
+ actionpack (>= 5.1.0, < 5.2)
225
+ activerecord (>= 5.1.0, < 5.2)
226
+ awesome_nested_set (~> 3.0, >= 3.0.0)
182
227
  coffee-rails (~> 4.0, >= 4.0.0)
183
- decorators (~> 2.0.0)
228
+ decorators (~> 2.0, >= 2.0.0)
184
229
  font-awesome-sass (>= 4.3.0, < 5.0)
185
- jquery-rails (>= 2.3.0)
186
- jquery-ui-rails (~> 5.0.0)
187
- railties (>= 4.2.3, < 5.0)
188
- refinerycms-i18n (~> 3.0.0)
230
+ jquery-rails (~> 4.3, >= 4.3.1)
231
+ jquery-ui-rails (~> 5.0, >= 5.0.0)
232
+ railties (>= 5.1.0, < 5.2)
233
+ refinerycms-i18n (~> 4.0, >= 4.0.0)
189
234
  sass-rails (>= 4.0, < 5.1)
190
235
  truncate_html (~> 0.9)
191
- will_paginate (~> 3.0.2)
192
- zilch-authorisation
193
- refinerycms-i18n (3.0.1)
194
- rails-i18n (~> 4.0.1)
236
+ will_paginate (~> 3.1, >= 3.1.0)
237
+ zilch-authorisation (~> 0, >= 0.0.1)
238
+ refinerycms-dragonfly (1.0.1)
239
+ dragonfly (~> 1.1)
240
+ dragonfly-s3_data_store
241
+ refinerycms-i18n (4.0.2)
242
+ rails-i18n (~> 5.0.0)
195
243
  routing-filter (>= 0.4.0)
196
- refinerycms-images (3.0.5)
197
- dragonfly (~> 1.0.0)
198
- globalize (>= 4.0.0, < 5.2)
199
- refinerycms-core (= 3.0.5)
200
- refinerycms-pages (3.0.5)
201
- awesome_nested_set (~> 3.0.0)
244
+ refinerycms-images (4.0.3)
245
+ activemodel-serializers-xml (~> 1.0, >= 1.0.1)
246
+ globalize (>= 5.1.0.beta1, < 5.2)
247
+ refinerycms-core (= 4.0.3)
248
+ refinerycms-dragonfly (~> 1.0)
249
+ refinerycms-pages (4.0.3)
250
+ activemodel-serializers-xml (~> 1.0, >= 1.0.1)
251
+ awesome_nested_set (~> 3.1, >= 3.1.0)
202
252
  babosa (!= 0.3.6)
203
- diffy (~> 3.1.0)
253
+ diffy (~> 3.1, >= 3.1.0)
204
254
  friendly_id (>= 5.1.0, < 5.3)
205
- globalize (>= 4.0.0, < 5.2)
206
- refinerycms-core (= 3.0.5)
207
- seo_meta (~> 2.0.0.rc.1)
208
- speakingurl-rails (~> 8.0.0)
209
- refinerycms-resources (3.0.5)
255
+ globalize (>= 5.1.0.beta1, < 5.2)
256
+ refinerycms-core (= 4.0.3)
257
+ seo_meta (~> 3.0, >= 3.0.0)
258
+ speakingurl-rails (~> 8.0, >= 8.0.0)
259
+ refinerycms-resources (4.0.3)
260
+ activemodel-serializers-xml (~> 1.0, >= 1.0.1)
210
261
  acts_as_indexed (~> 0.8.0)
211
- dragonfly (~> 1.0.0)
212
- globalize (>= 4.0.0, < 5.2)
213
- refinerycms-core (= 3.0.5)
214
- refinerycms-testing (3.0.5)
215
- capybara (~> 2.4.3)
216
- database_cleaner (~> 1.3.0)
217
- factory_girl_rails (~> 4.6.0)
218
- refinerycms-core (= 3.0.5)
219
- rspec-rails (~> 3.0)
262
+ dragonfly (~> 1.1, >= 1.1.0)
263
+ globalize (>= 5.1.0.beta1, < 5.2)
264
+ refinerycms-core (= 4.0.3)
265
+ refinerycms-dragonfly (~> 1.0)
266
+ refinerycms-testing (4.0.3)
267
+ capybara (~> 2.7)
268
+ database_cleaner (~> 1.6)
269
+ factory_bot_rails (~> 4.8)
270
+ rails-controller-testing (~> 0.1.1)
271
+ refinerycms-core (= 4.0.3)
272
+ rspec-rails (~> 3.5)
220
273
  refinerycms-wymeditor (1.1.0)
221
274
  refinerycms-core (>= 3.0.0, < 5.0)
222
- responders (2.3.0)
223
- railties (>= 4.2.0, < 5.1)
224
- routing-filter (0.6.0)
225
- actionpack (>= 4.2, < 5.1)
226
- activesupport (>= 4.2, < 5.1)
227
- rspec-core (3.5.4)
228
- rspec-support (~> 3.5.0)
229
- rspec-expectations (3.5.0)
275
+ request_store (1.4.1)
276
+ rack (>= 1.4)
277
+ responders (3.0.0)
278
+ actionpack (>= 5.0)
279
+ railties (>= 5.0)
280
+ routing-filter (0.6.3)
281
+ actionpack (>= 4.2)
282
+ activesupport (>= 4.2)
283
+ rspec-core (3.9.0)
284
+ rspec-support (~> 3.9.0)
285
+ rspec-expectations (3.9.0)
230
286
  diff-lcs (>= 1.2.0, < 2.0)
231
- rspec-support (~> 3.5.0)
232
- rspec-mocks (3.5.0)
287
+ rspec-support (~> 3.9.0)
288
+ rspec-mocks (3.9.0)
233
289
  diff-lcs (>= 1.2.0, < 2.0)
234
- rspec-support (~> 3.5.0)
235
- rspec-rails (3.5.2)
290
+ rspec-support (~> 3.9.0)
291
+ rspec-rails (3.9.0)
236
292
  actionpack (>= 3.0)
237
293
  activesupport (>= 3.0)
238
294
  railties (>= 3.0)
239
- rspec-core (~> 3.5.0)
240
- rspec-expectations (~> 3.5.0)
241
- rspec-mocks (~> 3.5.0)
242
- rspec-support (~> 3.5.0)
243
- rspec-support (3.5.0)
244
- sass (3.4.23)
245
- sass-rails (5.0.6)
295
+ rspec-core (~> 3.9.0)
296
+ rspec-expectations (~> 3.9.0)
297
+ rspec-mocks (~> 3.9.0)
298
+ rspec-support (~> 3.9.0)
299
+ rspec-support (3.9.0)
300
+ sass (3.7.4)
301
+ sass-listen (~> 4.0.0)
302
+ sass-listen (4.0.0)
303
+ rb-fsevent (~> 0.9, >= 0.9.4)
304
+ rb-inotify (~> 0.9, >= 0.9.7)
305
+ sass-rails (5.0.7)
246
306
  railties (>= 4.0.0, < 6)
247
307
  sass (~> 3.1)
248
308
  sprockets (>= 2.8, < 4.0)
249
309
  sprockets-rails (>= 2.0, < 4.0)
250
310
  tilt (>= 1.1, < 3)
251
- seo_meta (2.0.0.rc.1)
252
- railties (>= 3.0.0)
311
+ seo_meta (3.0.0)
312
+ railties (>= 5.0.0)
253
313
  slop (3.6.0)
254
314
  speakingurl-rails (8.0.2)
255
315
  railties (>= 3.1)
256
- sprockets (3.7.1)
316
+ sprockets (3.7.2)
257
317
  concurrent-ruby (~> 1.0)
258
318
  rack (> 1, < 3)
259
- sprockets-rails (3.2.0)
319
+ sprockets-rails (3.2.1)
260
320
  actionpack (>= 4.0)
261
321
  activesupport (>= 4.0)
262
322
  sprockets (>= 3.0.0)
263
323
  sqlite3 (1.3.12)
264
- thor (0.19.4)
265
- thread_safe (0.3.5)
266
- tilt (2.0.5)
324
+ thor (0.20.3)
325
+ thread_safe (0.3.6)
326
+ tilt (2.0.10)
267
327
  truncate_html (0.9.3)
268
- tzinfo (1.2.2)
328
+ tzinfo (1.2.5)
269
329
  thread_safe (~> 0.1)
270
- warden (1.2.6)
271
- rack (>= 1.0)
330
+ warden (1.2.8)
331
+ rack (>= 2.0.6)
272
332
  websocket-driver (0.6.4)
273
333
  websocket-extensions (>= 0.1.0)
274
334
  websocket-extensions (0.1.2)
275
- will_paginate (3.0.12)
276
- xpath (2.0.0)
277
- nokogiri (~> 1.3)
335
+ will_paginate (3.2.1)
336
+ xpath (3.2.0)
337
+ nokogiri (~> 1.8)
278
338
  zilch-authorisation (0.0.1)
279
339
 
280
340
  PLATFORMS
@@ -286,16 +346,17 @@ DEPENDENCIES
286
346
  capybara-screenshot
287
347
  coffee-rails
288
348
  launchy
349
+ listen
289
350
  pg
290
351
  poltergeist
291
352
  pry
292
- refinerycms (~> 3.0.5)
293
- refinerycms-authentication-devise (~> 1.0.4)
353
+ refinerycms (~> 4.0.3)
354
+ refinerycms-authentication-devise (~> 2.0.1)!
294
355
  refinerycms-photo-gallery!
295
- refinerycms-testing (~> 3.0.5)
356
+ refinerycms-testing (~> 4.0.3)
296
357
  refinerycms-wymeditor (~> 1.0, >= 1.0.6)
297
358
  sass-rails
298
359
  sqlite3
299
360
 
300
361
  BUNDLED WITH
301
- 1.13.7
362
+ 1.16.1