Skip to content

Commit

Permalink
added test group to Gemfile so the simple coverage gem works
Browse files Browse the repository at this point in the history
  • Loading branch information
tarix authored and lian committed Oct 26, 2013
1 parent dc0f030 commit 4f3fc5b
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
14 changes: 12 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,23 @@ source "http://rubygems.org"
# Specify your gem's dependencies in bitcoin-ruby.gemspec
gemspec

group :test do
gem 'sqlite3', :platforms => :ruby

gem 'bacon', '>= 1.2.0'
gem 'simplecov', :require => false

gem 'rake', '>= 0.8.0'
end

group :development do
gem 'eventmachine'
gem 'ffi'
gem 'log4r'
gem 'sequel'
gem 'sqlite3'

gem 'sqlite3', :platforms => :ruby, :require => false
gem 'pg', :platforms => :ruby, :require => false

gem "rake", ">= 0.8.0"
gem "bacon", ">= 1.2.0"
end
1 change: 1 addition & 0 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -104,4 +104,5 @@ task :coverage do
exit
end
sh "bacon", *PROJECT_SPECS
system('open coverage/index.html') if RUBY_PLATFORM.include? 'darwin'
end

0 comments on commit 4f3fc5b

Please sign in to comment.