Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
* Use recent version of Ruby
* Rcov does not work on 1.9.3
* Update doc task
  • Loading branch information
David Czarnecki committed Feb 20, 2013
1 parent f24ccf4 commit e7b9439
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .rvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
rvm use --create 1.9.2@errship_gem
rvm use --create 1.9.3@errship_gem
8 changes: 1 addition & 7 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,16 +1,10 @@
source "http://rubygems.org"
# Add dependencies required to use your gem here.
# Example:
# gem "activesupport", ">= 2.3.5"
source 'https://rubygems.org'

# Add dependencies to develop your gem here.
# Include everything needed to run rake, tests, features, etc.
group :development do
gem 'rake', '>= 0'
gem "shoulda", ">= 0"
gem "bundler", "~> 1.0"
gem "jeweler", "~> 1.6.0"
gem "rcov", ">= 0"
end

group :test do
Expand Down
10 changes: 1 addition & 9 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,17 +33,9 @@ Rake::TestTask.new(:test) do |test|
test.verbose = true
end

require 'rcov/rcovtask'
Rcov::RcovTask.new do |test|
test.libs << 'test'
test.pattern = 'test/**/*_test.rb'
test.verbose = true
test.rcov_opts << '--exclude "gems/*"'
end

task :default => :test

require 'rake/rdoctask'
require 'rdoc/task'
Rake::RDocTask.new do |rdoc|
version = File.exist?('VERSION') ? File.read('VERSION') : ""

Expand Down

0 comments on commit e7b9439

Please sign in to comment.