Rakefile in capucine-0.1.7 vs Rakefile in capucine-0.2.0

- old
+ new

@@ -8,40 +8,36 @@ $stderr.puts e.message $stderr.puts "Run `bundle install` to install missing gems" exit e.status_code end require 'rake' - require 'jeweler' + +load 'spec/spec.rake' + Jeweler::Tasks.new do |gem| # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options gem.name = "capucine" gem.homepage = "http://capucine.dln.name" gem.license = "MIT" gem.summary = %Q{Tools for frontend developers. Use CoffeeScript and Compass everywhere.} - gem.description = %Q{longer description of your gem} + gem.description = %Q{Improve your worlkflow} gem.email = "dam@dln.name" gem.authors = ["Damian Le Nouaille"] # dependencies defined in Gemfile end Jeweler::RubygemsDotOrgTasks.new -# require 'rake/testtask' -# Rake::TestTask.new(:test) do |test| -# test.libs << 'lib' << 'test' -# test.pattern = 'test/**/test_*.rb' -# 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 +task :default => :spec # require 'rdoc/task' # Rake::RDocTask.new do |rdoc| # version = File.exist?('VERSION') ? File.read('VERSION') : ""