Skip to content
This repository has been archived by the owner on Jul 24, 2018. It is now read-only.

Commit

Permalink
config changes
Browse files Browse the repository at this point in the history
- Remove rake from requirement (and use Bundler.setup/require)
- clean up SimpleCov to be only in spec_helper
  • Loading branch information
Nick Klauer (a03182) committed Sep 21, 2011
1 parent 3726380 commit a693593
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 8 deletions.
1 change: 0 additions & 1 deletion Gemfile
Expand Up @@ -5,7 +5,6 @@ gemspec


group :development do group :development do
gem "minitest", ">= 2.5.0" gem "minitest", ">= 2.5.0"
gem "rake"
gem "yard" gem "yard"
gem "rdiscount" gem "rdiscount"
gem "simplecov", '>= 0.5.2' gem "simplecov", '>= 0.5.2'
Expand Down
1 change: 0 additions & 1 deletion Gemfile.lock
Expand Up @@ -106,7 +106,6 @@ DEPENDENCIES
mantisrb! mantisrb!
minitest (>= 2.5.0) minitest (>= 2.5.0)
pry (>= 0.9.5) pry (>= 0.9.5)
rake
rb-fchange rb-fchange
rb-fsevent rb-fsevent
rb-notifu rb-notifu
Expand Down
9 changes: 3 additions & 6 deletions Rakefile
@@ -1,12 +1,9 @@
require 'simplecov' require 'bundler/setup'
SimpleCov.start do Bundler.require(:default, :development, :guard)
add_filter 'spec/'
end
require 'bundler/gem_tasks' require 'bundler/gem_tasks'
require 'rake/testtask' require 'rake/testtask'
require 'rake/clean' require 'rake/clean'
require 'rake'
require 'yard'


CLOBBER.include('pkg') CLOBBER.include('pkg')
CLOBBER.include('coverage') CLOBBER.include('coverage')
Expand Down

0 comments on commit a693593

Please sign in to comment.