Skip to content

Commit

Permalink
add coverage to repo, add gem dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmars committed Jun 20, 2012
1 parent 5f7716d commit 9a5a4f8
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Original file line Diff line number Diff line change
@@ -1 +1,2 @@
*.gem *.gem
coverage
4 changes: 4 additions & 0 deletions Gemfile
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -2,3 +2,7 @@ source :rubygems
gemspec gemspec
gem 'rspec' gem 'rspec'
gem 'colorize' gem 'colorize'

group :test do
gem 'simplecov'
end
9 changes: 8 additions & 1 deletion Gemfile.lock
Original file line number Original file line Diff line number Diff line change
@@ -1,13 +1,15 @@
PATH PATH
remote: . remote: .
specs: specs:
huffshell (0.0.1) huffshell (0.0.3)
colorize


GEM GEM
remote: http://rubygems.org/ remote: http://rubygems.org/
specs: specs:
colorize (0.5.8) colorize (0.5.8)
diff-lcs (1.1.3) diff-lcs (1.1.3)
multi_json (1.2.0)
rspec (2.10.0) rspec (2.10.0)
rspec-core (~> 2.10.0) rspec-core (~> 2.10.0)
rspec-expectations (~> 2.10.0) rspec-expectations (~> 2.10.0)
Expand All @@ -16,6 +18,10 @@ GEM
rspec-expectations (2.10.0) rspec-expectations (2.10.0)
diff-lcs (~> 1.1.3) diff-lcs (~> 1.1.3)
rspec-mocks (2.10.1) rspec-mocks (2.10.1)
simplecov (0.6.4)
multi_json (~> 1.0)
simplecov-html (~> 0.5.3)
simplecov-html (0.5.3)


PLATFORMS PLATFORMS
ruby ruby
Expand All @@ -24,3 +30,4 @@ DEPENDENCIES
colorize colorize
huffshell! huffshell!
rspec rspec
simplecov
2 changes: 2 additions & 0 deletions spec/spec_helper.rb
Original file line number Original file line Diff line number Diff line change
@@ -1,5 +1,7 @@
require 'rubygems' require 'rubygems'
require 'bundler/setup' require 'bundler/setup'
require 'simplecov'
SimpleCov.start


require 'huffshell' # and any other gems you need require 'huffshell' # and any other gems you need


Expand Down

0 comments on commit 9a5a4f8

Please sign in to comment.