Skip to content

Instantly share code, notes, and snippets.

@thewoolleyman
Created March 16, 2010 04:26
Show Gist options
  • Select an option

  • Save thewoolleyman/333641 to your computer and use it in GitHub Desktop.

Select an option

Save thewoolleyman/333641 to your computer and use it in GitHub Desktop.
$ bundle -v
Bundler version 0.9.11
$ bundle install
Resolving dependencies
Could not find gem 'pg (= 0.9.0, runtime)' in any of the sources.
$ cat Gemfile
gem "rack", "1.0.1"
gem "heroku", "1.8.3"
[:development,:test].each do |g|
group g do
gem "sqlite3-ruby", "1.2.5"
end
end
group :production do
gem "pg", "0.9.0"
end
$ gem env
RubyGems Environment:
- RUBYGEMS VERSION: 1.3.6
- RUBY VERSION: 1.9.2 (2010-03-14 patchlevel -1) [i386-darwin9.8.0]
- INSTALLATION DIRECTORY: /Users/woolley/.rvm/gems/ruby-head
- RUBY EXECUTABLE: /Users/woolley/.rvm/rubies/ruby-head/bin/ruby
- EXECUTABLE DIRECTORY: /Users/woolley/.rvm/gems/ruby-head/bin
- RUBYGEMS PLATFORMS:
- ruby
- x86-darwin-9
- GEM PATHS:
- /Users/woolley/.rvm/gems/ruby-head
- /Users/woolley/.rvm/gems/ruby-head%global
- GEM CONFIGURATION:
- :update_sources => true
- :verbose => true
- :benchmark => false
- :backtrace => false
- :bulk_threshold => 1000
- :sources => ["http://rubygems.org/"]
- "gemcutter_key" => "19a8e0f7013b2ab262fbc4cd6d4bb6b6"
- REMOTE SOURCES:
- http://rubygems.org/
$ gem list pg -r
*** REMOTE GEMS ***
pg (0.9.0)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment