Skip to content

Instantly share code, notes, and snippets.

@TimMoore
Created December 10, 2013 10:57
Show Gist options
  • Save TimMoore/7888901 to your computer and use it in GitHub Desktop.
Save TimMoore/7888901 to your computer and use it in GitHub Desktop.
[21:53:15] tmoore@tmoore-macbook-pro:~/Projects/thor (ruby-1.8.7-compat *=) $ rm Gemfile.lock
[21:53:22] tmoore@tmoore-macbook-pro:~/Projects/thor (ruby-1.8.7-compat *=) $ bundle env
Bundler 1.3.5
Ruby 2.0.0 (2013-11-22 patchlevel 353) [x86_64-darwin13.0.2]
Rubygems 2.0.14
GEM_HOME /Users/tmoore/Projects/thor/.gem/ruby/2.0.0
GEM_PATH /Users/tmoore/Projects/thor/.gem/ruby/2.0.0:/Users/tmoore/.gem/ruby/2.0.0:/Users/tmoore/.rubies/ruby-2.0.0-p353/lib/ruby/gems/2.0.0
Gemfile
source 'https://rubygems.org'
gem 'rake', '>= 0.9'
gem 'rdoc', '>= 3.9'
group :development do
gem 'pry'
gem 'pry-debugger', :platforms => :mri_19
end
group :test do
gem 'childlabor'
gem 'coveralls', '>=0.5.7', :require => false
# mime-types is required indirectly by coveralls
# needs to be < 2.0 to work with Ruby 1.8.7
gem 'mime-types', '~> 1.0', :platforms => :ruby_18
gem 'fakeweb', '>= 1.3'
gem 'rspec', '>= 2.14'
gem 'rspec-mocks', '>= 2.12.2'
gem 'simplecov', :require => false
end
gemspec
Gemfile.lock
<No Gemfile.lock found>
[21:53:35] tmoore@tmoore-macbook-pro:~/Projects/thor (ruby-1.8.7-compat *=) $ bundle install
Fetching gem metadata from https://rubygems.org/.........
Fetching gem metadata from https://rubygems.org/..
Resolving dependencies...
Using rake (10.1.0)
Using bundler (1.3.5)
Using childlabor (0.0.3)
Using coderay (1.1.0)
Using multi_json (1.8.2)
Installing mime-types (1.25.1)
Using rest-client (1.6.7)
Using docile (1.1.1)
Using simplecov-html (0.8.0)
Using simplecov (0.8.2)
Using tins (0.13.1)
Using term-ansicolor (1.2.2)
Using thor (0.18.1) from source at /Users/tmoore/Projects/thor
Using coveralls (0.7.0)
Using diff-lcs (1.2.5)
Using fakeweb (1.3.0)
Using json (1.8.1)
Using method_source (0.8.2)
Using slop (3.4.7)
Using pry (0.9.12.4)
Using rdoc (4.0.1)
Using rspec-core (2.14.7)
Using rspec-expectations (2.14.4)
Using rspec-mocks (2.14.4)
Using rspec (2.14.1)
Your bundle is complete!
Use `bundle show [gemname]` to see where a bundled gem is installed.
[21:54:41] tmoore@tmoore-macbook-pro:~/Projects/thor (ruby-1.8.7-compat *=) $ bundle update
Fetching gem metadata from https://rubygems.org/.........
Fetching gem metadata from https://rubygems.org/..
Resolving dependencies...
Using rake (10.1.0)
Using bundler (1.3.5)
Using childlabor (0.0.3)
Using coderay (1.1.0)
Using multi_json (1.8.2)
Using mime-types (1.25.1)
Using rest-client (1.6.7)
Using docile (1.1.1)
Using simplecov-html (0.8.0)
Using simplecov (0.8.2)
Using tins (0.13.1)
Using term-ansicolor (1.2.2)
Using thor (0.18.1) from source at /Users/tmoore/Projects/thor
Using coveralls (0.7.0)
Using diff-lcs (1.2.5)
Using fakeweb (1.3.0)
Using json (1.8.1)
Using method_source (0.8.2)
Using slop (3.4.7)
Using pry (0.9.12.4)
Using rdoc (4.0.1)
Using rspec-core (2.14.7)
Using rspec-expectations (2.14.4)
Using rspec-mocks (2.14.4)
Using rspec (2.14.1)
Your bundle is updated!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment