Fix error with avatars:
[paperclip] An error was received while processing: Paperclip::Errors::NotIdentifiedByImageMagickError: ... is not recognized by the 'identify' command.
This commit is contained in:
parent
3f3edfe1d9
commit
87be12a6b7
2
Gemfile
2
Gemfile
|
@ -13,7 +13,7 @@ gem 'omniauth-openid', '~> 1.0.1'
|
||||||
gem 'cancan', '1.6.7' # 1.6.8 fail specs with strange error
|
gem 'cancan', '1.6.7' # 1.6.8 fail specs with strange error
|
||||||
|
|
||||||
gem 'ancestry', '~> 1.3.0'
|
gem 'ancestry', '~> 1.3.0'
|
||||||
gem 'paperclip', '~> 3.1.4'
|
gem 'paperclip', '~> 3.3.1'
|
||||||
gem 'resque', '~> 1.21.0'
|
gem 'resque', '~> 1.21.0'
|
||||||
gem 'resque-status', '~> 0.3.3'
|
gem 'resque-status', '~> 0.3.3'
|
||||||
gem 'resque_mailer', '~> 2.1.0'
|
gem 'resque_mailer', '~> 2.1.0'
|
||||||
|
|
11
Gemfile.lock
11
Gemfile.lock
|
@ -82,10 +82,7 @@ GEM
|
||||||
charlock_holmes (0.6.9)
|
charlock_holmes (0.6.9)
|
||||||
chronic (0.6.7)
|
chronic (0.6.7)
|
||||||
chunky_png (1.2.7)
|
chunky_png (1.2.7)
|
||||||
climate_control (0.0.3)
|
cocaine (0.4.2)
|
||||||
activesupport (>= 3.0)
|
|
||||||
cocaine (0.5.1)
|
|
||||||
climate_control (>= 0.0.3, < 1.0)
|
|
||||||
coffee-rails (3.2.2)
|
coffee-rails (3.2.2)
|
||||||
coffee-script (>= 2.2.0)
|
coffee-script (>= 2.2.0)
|
||||||
railties (~> 3.2.0)
|
railties (~> 3.2.0)
|
||||||
|
@ -206,11 +203,11 @@ GEM
|
||||||
omniauth (~> 1.0)
|
omniauth (~> 1.0)
|
||||||
rack-openid (~> 1.3.1)
|
rack-openid (~> 1.3.1)
|
||||||
orm_adapter (0.4.0)
|
orm_adapter (0.4.0)
|
||||||
paperclip (3.1.4)
|
paperclip (3.3.1)
|
||||||
activemodel (>= 3.0.0)
|
activemodel (>= 3.0.0)
|
||||||
activerecord (>= 3.0.0)
|
activerecord (>= 3.0.0)
|
||||||
activesupport (>= 3.0.0)
|
activesupport (>= 3.0.0)
|
||||||
cocaine (>= 0.0.2)
|
cocaine (~> 0.4.0)
|
||||||
mime-types
|
mime-types
|
||||||
perform_later (1.3.0)
|
perform_later (1.3.0)
|
||||||
rails (~> 3.0)
|
rails (~> 3.0)
|
||||||
|
@ -415,7 +412,7 @@ DEPENDENCIES
|
||||||
newrelic_rpm (~> 3.4.1)
|
newrelic_rpm (~> 3.4.1)
|
||||||
omniauth (~> 1.1.0)
|
omniauth (~> 1.1.0)
|
||||||
omniauth-openid (~> 1.0.1)
|
omniauth-openid (~> 1.0.1)
|
||||||
paperclip (~> 3.1.4)
|
paperclip (~> 3.3.1)
|
||||||
perform_later (~> 1.3.0)
|
perform_later (~> 1.3.0)
|
||||||
pg (~> 0.14.0)
|
pg (~> 0.14.0)
|
||||||
rack-throttle
|
rack-throttle
|
||||||
|
|
Loading…
Reference in New Issue