Skip to content

Commit

Permalink
Add bundler and update gems to work with Ruby 1.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
pauldowman committed May 1, 2012
1 parent 8b76cb8 commit 322f485
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 20 deletions.
34 changes: 14 additions & 20 deletions Gemfile.lock
@@ -1,31 +1,25 @@
GEM GEM
remote: http://rubygems.org/ remote: http://rubygems.org/
specs: specs:
diff-lcs (1.1.2) diff-lcs (1.1.3)
hoe (2.6.2) hoe (3.0.3)
rake (>= 0.8.7) rake (~> 0.8)
rubyforge (>= 2.0.4) hpricot (0.8.6)
hpricot (0.8.2)
json_pure (1.4.6)
mechanize (1.0.0) mechanize (1.0.0)
nokogiri (>= 1.2.1) nokogiri (>= 1.2.1)
nokogiri (1.4.3.1) nokogiri (1.5.2)
ofx-parser (1.0.2) ofx-parser (1.0.2)
hoe (>= 1.5.1) hoe (>= 1.5.1)
hpricot (>= 0.6) hpricot (>= 0.6)
rake (0.8.7) rake (0.9.2.2)
rspec (2.0.0) rspec (2.9.0)
rspec-core (= 2.0.0) rspec-core (~> 2.9.0)
rspec-expectations (= 2.0.0) rspec-expectations (~> 2.9.0)
rspec-mocks (= 2.0.0) rspec-mocks (~> 2.9.0)
rspec-core (2.0.0) rspec-core (2.9.0)
rspec-expectations (2.0.0) rspec-expectations (2.9.1)
diff-lcs (>= 1.1.2) diff-lcs (~> 1.1.3)
rspec-mocks (2.0.0) rspec-mocks (2.9.0)
rspec-core (= 2.0.0)
rspec-expectations (= 2.0.0)
rubyforge (2.0.4)
json_pure (>= 1.1.7)


PLATFORMS PLATFORMS
ruby ruby
Expand Down
3 changes: 3 additions & 0 deletions gmoney.rb
@@ -1,5 +1,8 @@
#!/usr/bin/env ruby #!/usr/bin/env ruby


require "rubygems"
require "bundler/setup"

require "#{File.dirname(__FILE__)}/lib/account_base" require "#{File.dirname(__FILE__)}/lib/account_base"
require "#{File.dirname(__FILE__)}/lib/bank_account" require "#{File.dirname(__FILE__)}/lib/bank_account"
require "#{File.dirname(__FILE__)}/lib/credit_card_account" require "#{File.dirname(__FILE__)}/lib/credit_card_account"
Expand Down

0 comments on commit 322f485

Please sign in to comment.