Created
February 14, 2013 22:09
-
-
Save daniel-nelson/4956871 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I'm not sure what the problem is, but let me present my observations: | |
Started with no paperclip version set and no dependencies on paperclip: | |
$ cat Gemfile | grep paperclip | |
gem 'paperclip' | |
$ bundle update paperclip | |
... | |
$ cat Gemfile.lock | grep paperclip | |
paperclip (3.2.1) | |
paperclip | |
Updated Gemfile to explicitly declare the current paperclip version: | |
$ cat Gemfile | grep paperclip | |
gem 'paperclip', '3.4.0' | |
$ bundle update paperclip | |
... | |
$ cat Gemfile.lock | grep paperclip | |
paperclip (3.4.0) | |
paperclip (= 3.4.0) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment