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 --version | |
Bundler version 1.2.3 | |
$ mkdir Øystein | |
$ cd Øystein | |
$ mkdir lib | |
$ bundle gem helpers |
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 --version | |
Bundler version 1.2.3 | |
$ cat <<-EOT >Gemfile | |
> source :rubygems | |
> gem "paperclip-cloudfiles",:git => "http://github.com/minter/paperclip.git",: | |
require => 'paperclip' | |
> EOT | |
$ bundle install |
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 | |
Gemfile syntax error: | |
/Users/mscottford/src/bundler/rails-dev-box/rails/Gemfile:5: syntax error, unexpected ':', expecting $end | |
gem 'arel', github: 'rails/arel', branch: 'master' | |
^ | |
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 --version | |
Bundler version 1.2.3 | |
$ cat Gemfile | |
puts 'Before source' | |
source :rubygems | |
puts 'After source' | |
puts 'Before rake' | |
gem 'rake' |
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 --version | |
Bundler version 1.2.3 | |
$ bundle help | |
BUNDLE(1) BUNDLE(1) | |
NAME | |
bundle - Ruby Dependency Management |
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 gem bugtest | |
create bugtest/Gemfile | |
create bugtest/Rakefile | |
create bugtest/LICENSE.txt | |
create bugtest/README.md | |
create bugtest/.gitignore | |
create bugtest/bugtest.gemspec | |
create bugtest/lib/bugtest.rb | |
create bugtest/lib/bugtest/version.rb | |
Initializating git repo in /Users/mscottford/src/bundler/testcases/i1041/bugtest |
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
$ ruby --version | |
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0] | |
$ bundle --version | |
Bundler version 1.2.3 | |
$ cat Gemfile | |
source :rubygems | |
gem "curb", "~> 0.7.8" |
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 --version | |
Bundler version 1.2.3 | |
$ ls | |
bar foo | |
$ cat bar/Gemfile | |
source 'https://rubygems.org' | |
# Specify your gem's dependencies in bar.gemspec |
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
sunstreaker:4037126 mscottford$ cat Gemfile | |
source :rubygems | |
gemspec | |
:ruby => '1.9.3-p327' | |
sunstreaker:4037126 mscottford$ cat test.gemspec | |
Gem::Specification.new do |s| | |
s.name = "testytest" | |
s.version = "0.0.1" | |
s.add_dependency "savon", "~> 0.9.8" |
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 -v | |
Bundler version 1.2.3 | |
$ cat Gemfile | |
source 'http://rubygems.org' | |
gem "i18n", ">= 0.4.0" | |
gem 'rails', '3.0.5' |