Last active
December 15, 2015 04:08
-
-
Save marti1125/5198938 to your computer and use it in GitHub Desktop.
resolviendo dependencias antigua... en ruby on rails.
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
cuando te dan un proyecto antiguo... | |
https://github.com/egutter/agiles_call4papers/blob/master/Gemfile | |
encontre la version de sqllite3 | |
http://rubyforge.org/frs/?group_id=254&release_id=44105 | |
libsqlite3 en ubuntu | |
el problema con alguna dependencia | |
http://wholemeal.co.nz/blog/2011/11/25/building-redcloth-with-bundler-and-gcc-4-6/ | |
problemas con: | |
Unpacked gem authlogic-2.1.3 in vendor/gems has no specification file. Run 'rake gems:refresh_specs' to fix this. | |
http://blogofchirag.blogspot.com/2010/06/unpacked-gem-authlogic-213-in.html | |
RubyGem version error: rack(1.0.0 not ~> 1.0.1) (Gem::LoadError) | |
Solución: | |
You installed Rack 1.1.0, the version required is 1.0.x. | |
$ gem uninstall rack | |
$ gem install rack -v 1.0.1 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment