Created
April 27, 2010 21:30
-
-
Save paul/381360 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
| source :gemcutter | |
| gem "rake" | |
| #gem "rails", :git => "git://github.com/rails/rails.git" | |
| gem "rails", "2.3.5" | |
| gem "pg" | |
| #gem "postgres" # TODO: need this one for AR 2.0; remove and use pg when AR is upgraded | |
| gem "mysql" | |
| gem "tokyotyrant" | |
| gem "rake" | |
| gem "rack", "1.0.1" | |
| gem "tzinfo" | |
| gem "uuidtools" | |
| gem "json" | |
| gem "logging" | |
| gem "SyslogLogger" | |
| gem "httpauth" | |
| gem "addressable", :require => false | |
| gem "ci_reporter" | |
| group :test do | |
| gem "rspec" | |
| gem "rspec-rails" | |
| gem "webrat" | |
| gem "machinist" | |
| gem "faker" | |
| gem "test-unit", "1.2.3" if RUBY_VERSION >= "1.9.1" | |
| end | |
| group :dev do | |
| gem "wirble", :require => nil | |
| gem "ruby-prof", :require => nil | |
| gem "rack-contrib", :require => nil | |
| gem "request-log-analyzer", :require => nil | |
| end |
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
| % bundle install --disable-shared-gems | |
| Fetching source index from http://gemcutter.org/ | |
| Installing rake (0.8.7) from .gem files at /home/rando/development/api/core/web/vendor/cache | |
| Installing json_pure (1.4.1) from rubygems repository at http://gemcutter.org/ | |
| Installing rubyforge (2.0.4) from rubygems repository at http://gemcutter.org/ | |
| Installing hoe (2.6.0) from rubygems repository at http://gemcutter.org/ | |
| Installing SyslogLogger (1.4.0) from rubygems repository at http://gemcutter.org/ | |
| Installing activesupport (2.3.5) from .gem files at /home/rando/development/api/core/web/vendor/cache | |
| Installing rack (1.0.1) from .gem files at /home/rando/development/api/core/web/vendor/cache | |
| Installing actionpack (2.3.5) from .gem files at /home/rando/development/api/core/web/vendor/cache | |
| Installing actionmailer (2.3.5) from .gem files at /home/rando/development/api/core/web/vendor/cache | |
| Installing activerecord (2.3.5) from .gem files at /home/rando/development/api/core/web/vendor/cache | |
| Installing activeresource (2.3.5) from .gem files at /home/rando/development/api/core/web/vendor/cache | |
| Installing addressable (2.1.2) from rubygems repository at http://gemcutter.org/ | |
| Installing builder (2.1.2) from rubygems repository at http://gemcutter.org/ | |
| Installing ci_reporter (1.6.2) from rubygems repository at http://gemcutter.org/ | |
| Installing faker (0.3.1) from .gem files at /home/rando/development/api/core/web/vendor/cache | |
| Installing httpauth (0.1) from .gem files at /home/rando/development/api/core/web/vendor/cache | |
| Installing json (1.4.1) from rubygems repository at http://gemcutter.org/ | |
| with native extensions Installing little-plugger (1.1.2) from .gem files at /home/rando/development/api/core/web/vendor/cache | |
| Installing logging (1.4.1) from rubygems repository at http://gemcutter.org/ | |
| Installing machinist (1.0.6) from .gem files at /home/rando/development/api/core/web/vendor/cache | |
| Installing mysql (2.8.1) from .gem files at /home/rando/development/api/core/web/vendor/cache | |
| with native extensions Installing nokogiri (1.4.1) from .gem files at /home/rando/development/api/core/web/vendor/cache | |
| with native extensions Installing pg (0.9.0) from .gem files at /home/rando/development/api/core/web/vendor/cache | |
| with native extensions Installing test-spec (0.9.0) from .gem files at /home/rando/development/api/core/web/vendor/cache | |
| Installing rack-contrib (0.9.2) from .gem files at /home/rando/development/api/core/web/vendor/cache | |
| Installing rack-test (0.5.3) from .gem files at /home/rando/development/api/core/web/vendor/cache | |
| Installing rails (2.3.5) from .gem files at /home/rando/development/api/core/web/vendor/cache | |
| Installing request-log-analyzer (1.6.4) from rubygems repository at http://gemcutter.org/ | |
| Installing rspec (1.3.0) from .gem files at /home/rando/development/api/core/web/vendor/cache | |
| Installing rspec-rails (1.3.2) from .gem files at /home/rando/development/api/core/web/vendor/cache | |
| Installing ruby-prof (0.8.1) from .gem files at /home/rando/development/api/core/web/vendor/cache | |
| with native extensions Installing tokyotyrant (1.13) from .gem files at /home/rando/development/api/core/web/vendor/cache | |
| Installing tzinfo (0.3.20) from rubygems repository at http://gemcutter.org/ | |
| Installing uuidtools (2.1.1) from .gem files at /home/rando/development/api/core/web/vendor/cache | |
| zsh: file size limit exceeded bundle install --disable-shared-gems |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment