Rakefile in massa-0.0.2 vs Rakefile in massa-0.0.3

- old
+ new

@@ -1,26 +1,6 @@ -require 'rubygems' -require 'bundler' +require 'bundler/gem_tasks' +require 'rspec/core/rake_task' -begin - Bundler.setup(:default, :development) -rescue Bundler::BundlerError => e - $stderr.puts e.message - $stderr.puts "Run `bundle install` to install missing gems" - exit e.status_code -end +RSpec::Core::RakeTask.new(:spec) -require 'rake' -require 'jeweler' -require './lib/massa/version' - -Jeweler::Tasks.new do |gem| - gem.name = 'massa' - gem.homepage = 'http://github.com/lucascaton/massa' - gem.license = 'MIT' - gem.summary = %q{Keep the quality, good practices and security of Rails projects.} - gem.description = %q{Keep the quality, good practices and security of Rails projects.} - gem.authors = ['Lucas Caton'] - gem.version = Massa::VERSION -end - -Jeweler::RubygemsDotOrgTasks.new +task default: :spec