Skip to content

Commit

Permalink
Adds simplecov.
Browse files Browse the repository at this point in the history
  • Loading branch information
jcxplorer committed Apr 2, 2011
1 parent 6a5f7d9 commit f0a0aba
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -1,4 +1,5 @@
.bundle .bundle
coverage/
db/*.sqlite3 db/*.sqlite3
log/*.log log/*.log
public/stylesheets/ public/stylesheets/
Expand Down
1 change: 1 addition & 0 deletions Gemfile
Expand Up @@ -22,6 +22,7 @@ group :test do
gem "fuubar" gem "fuubar"
gem "launchy" gem "launchy"
gem "shoulda-matchers", :require => false gem "shoulda-matchers", :require => false
gem "simplecov", :require => false
gem "timecop" gem "timecop"
end end


Expand Down
4 changes: 4 additions & 0 deletions Gemfile.lock
Expand Up @@ -150,6 +150,9 @@ GEM
rubyzip rubyzip
shoulda-matchers (1.0.0.beta1) shoulda-matchers (1.0.0.beta1)
simple_form (1.3.1) simple_form (1.3.1)
simplecov (0.4.1)
simplecov-html (~> 0.4.3)
simplecov-html (0.4.3)
sqlite3 (1.3.3) sqlite3 (1.3.3)
sqlite3-ruby (1.3.3) sqlite3-ruby (1.3.3)
sqlite3 (>= 1.3.3) sqlite3 (>= 1.3.3)
Expand Down Expand Up @@ -187,6 +190,7 @@ DEPENDENCIES
rspec-rails rspec-rails
shoulda-matchers shoulda-matchers
simple_form simple_form
simplecov
snowfinch-collector! snowfinch-collector!
sqlite3-ruby sqlite3-ruby
steak steak
Expand Down
3 changes: 3 additions & 0 deletions spec/spec_helper.rb
@@ -1,3 +1,6 @@
require "simplecov"
SimpleCov.start

ENV["RAILS_ENV"] ||= "test" ENV["RAILS_ENV"] ||= "test"
require File.expand_path("../../config/environment", __FILE__) require File.expand_path("../../config/environment", __FILE__)
require "rspec/rails" require "rspec/rails"
Expand Down

0 comments on commit f0a0aba

Please sign in to comment.