Skip to content

Commit 8e98a8c

Browse files
author
Peak
committed
Loose dependency on paperclip to allow for older versions as needed. 3.4.x should be sufficent for integration w/ BrowserSpree
1 parent 21994cc commit 8e98a8c

File tree

3 files changed

+40
-30
lines changed

3 files changed

+40
-30
lines changed

Gemfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ gem 'bluecloth', :groups=>[:development, :test] # For YARD
1212

1313
gem "thin" # To avoid annoying Ruby 1.9.3/Rails/Webrick warnings - See http://stackoverflow.com/questions/7082364/what-does-warn-could-not-determine-content-length-of-response-body-mean-and-h
1414

15-
gem 'paperclip', '~> 3.4.1'
15+
# Uncomment to confirm that older versions work (for compaitiblity with Spree 2.2.4/bcms_spree)
16+
# gem 'paperclip', '~> 3.4.1'
1617
# For testing behavior in production
1718
group :production do
1819
gem 'uglifier'

Gemfile.lock

Lines changed: 37 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ PATH
1111
jquery-rails (~> 3.1)
1212
jquery-ui-rails (~> 4.1)
1313
panoramic
14-
paperclip (~> 3.5.1)
14+
paperclip (~> 3.4)
1515
rails (~> 4.0.0)
1616
sass-rails
1717
simple_form (>= 3.0.0.rc, < 3.1)
@@ -57,10 +57,9 @@ GEM
5757
childprocess (>= 0.3.6)
5858
cucumber (>= 1.1.1)
5959
rspec-expectations (>= 2.7.0)
60-
atomic (1.1.14)
61-
bcrypt-ruby (3.1.2)
60+
bcrypt (3.1.7)
6261
bluecloth (2.2.0)
63-
bootstrap-sass (3.1.0.2)
62+
bootstrap-sass (3.2.0.2)
6463
sass (~> 3.2)
6564
builder (3.1.4)
6665
capybara (2.1.0)
@@ -71,19 +70,28 @@ GEM
7170
xpath (~> 2.0)
7271
childprocess (0.3.9)
7372
ffi (~> 1.0, >= 1.0.11)
74-
chunky_png (1.3.0)
75-
ckeditor_rails (4.3.1)
73+
chunky_png (1.3.1)
74+
ckeditor_rails (4.3.4)
7675
railties (>= 3.0)
7776
climate_control (0.0.3)
7877
activesupport (>= 3.0)
79-
cocaine (0.5.3)
78+
cocaine (0.5.4)
8079
climate_control (>= 0.0.3, < 1.0)
81-
compass (0.12.2)
80+
compass (1.0.1)
8281
chunky_png (~> 1.2)
83-
fssm (>= 0.2.7)
84-
sass (~> 3.1)
85-
compass-rails (1.1.3)
82+
compass-core (~> 1.0.1)
83+
compass-import-once (~> 1.0.5)
84+
rb-fsevent (>= 0.9.3)
85+
rb-inotify (>= 0.9)
86+
sass (>= 3.3.13, < 3.5)
87+
compass-core (1.0.1)
88+
multi_json (~> 1.0)
89+
sass (>= 3.3.0, < 3.5)
90+
compass-import-once (1.0.5)
91+
sass (>= 3.2, < 3.5)
92+
compass-rails (1.1.7)
8693
compass (>= 0.12.2)
94+
sprockets (<= 2.11.0)
8795
cucumber (1.3.6)
8896
builder (>= 2.1.2)
8997
diff-lcs (>= 1.1.3)
@@ -96,8 +104,8 @@ GEM
96104
nokogiri (>= 1.5.0)
97105
daemons (1.1.9)
98106
database_cleaner (1.2.0)
99-
devise (3.2.2)
100-
bcrypt-ruby (~> 3.0)
107+
devise (3.3.0)
108+
bcrypt (~> 3.0)
101109
orm_adapter (~> 0.1)
102110
railties (>= 3.2.6, < 5)
103111
thread_safe (~> 0.1)
@@ -115,18 +123,17 @@ GEM
115123
faye-websocket (0.4.7)
116124
eventmachine (>= 0.12.0)
117125
ffi (1.9.0)
118-
fssm (0.2.10)
119126
gherkin (2.12.1)
120127
multi_json (~> 1.3)
121128
hashie (2.0.5)
122129
hike (1.2.3)
123130
http_parser.rb (0.5.3)
124-
i18n (0.6.9)
125-
jquery-rails (3.1.0)
131+
i18n (0.6.11)
132+
jquery-rails (3.1.2)
126133
railties (>= 3.0, < 5.0)
127134
thor (>= 0.14, < 2.0)
128-
jquery-ui-rails (4.1.1)
129-
railties (>= 3.1.0)
135+
jquery-ui-rails (4.2.1)
136+
railties (>= 3.2.16)
130137
launchy (2.3.0)
131138
addressable (~> 2.3)
132139
m (1.3.2)
@@ -190,17 +197,20 @@ GEM
190197
rake (>= 0.8.7)
191198
thor (>= 0.18.1, < 2.0)
192199
rake (10.1.1)
200+
rb-fsevent (0.9.4)
201+
rb-inotify (0.9.5)
202+
ffi (>= 0.5.0)
193203
rspec-expectations (2.14.1)
194204
diff-lcs (>= 1.1.3, < 2.0)
195205
ruby-prof (0.13.0)
196-
sass (3.2.14)
206+
sass (3.4.5)
197207
sass-rails (4.0.1)
198208
railties (>= 4.0.0, < 5.0)
199209
sass (>= 3.1.10)
200210
sprockets-rails (~> 2.0.0)
201-
simple_form (3.0.1)
202-
actionpack (>= 4.0.0, < 4.1)
203-
activemodel (>= 4.0.0, < 4.1)
211+
simple_form (3.1.0.rc2)
212+
actionpack (~> 4.0)
213+
activemodel (~> 4.0)
204214
single_test (0.6.0)
205215
rake
206216
sprockets (2.10.1)
@@ -222,21 +232,20 @@ GEM
222232
eventmachine (>= 0.12.6)
223233
rack (>= 1.0.0)
224234
thor (0.18.1)
225-
thread_safe (0.1.3)
226-
atomic
235+
thread_safe (0.3.4)
227236
tilt (1.4.1)
228-
tins (1.0.0)
237+
tins (1.3.3)
229238
treetop (1.4.15)
230239
polyglot
231240
polyglot (>= 0.3.1)
232-
tzinfo (0.3.38)
241+
tzinfo (0.3.41)
233242
uglifier (2.1.2)
234243
execjs (>= 0.3.0)
235244
multi_json (~> 1.0, >= 1.0.2)
236-
underscore-rails (1.5.2)
245+
underscore-rails (1.7.0)
237246
warden (1.2.3)
238247
rack (>= 1.0)
239-
will_paginate (3.0.5)
248+
will_paginate (3.0.7)
240249
xpath (2.0.0)
241250
nokogiri (~> 1.3)
242251
yard (0.8.7)

browsercms.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Gem::Specification.new do |s|
4040
s.add_dependency("underscore-rails", "~> 1.4")
4141
s.add_dependency("jquery-rails", "~> 3.1")
4242
s.add_dependency("jquery-ui-rails", "~> 4.1")
43-
s.add_dependency("paperclip", "~> 3.5.1")
43+
s.add_dependency("paperclip", "~> 3.4")
4444
s.add_dependency("panoramic")
4545
s.add_dependency("will_paginate", "~>3.0.0")
4646
s.add_dependency("actionpack-page_caching", "~>1.0")

0 commit comments

Comments
 (0)