Rakefile in lazy_high_charts-1.1.5 vs Rakefile in lazy_high_charts-1.1.6

- old
+ new

@@ -1,14 +1,17 @@ # encoding: utf-8 require 'rubygems' -require 'rake/dsl_definition' require 'rake' require 'rspec/core/rake_task' require 'bundler' -desc 'Default: run specs.' +Bundler::GemHelper.install_tasks + +desc 'Default: run unit specs.' task :default => :spec -desc 'Test the Lazy_high_charts gem.' +desc 'Test the lazy_high_charts plugin.' RSpec::Core::RakeTask.new('spec') do |t| t.pattern = FileList['spec/**/*_spec.rb'] end + +