Rakefile in acts_as_tree-0.1.1 vs Rakefile in acts_as_tree-0.2.0
- old
+ new
@@ -1,54 +1,21 @@
-require 'rubygems'
-require 'rake'
+require 'bundler/gem_tasks'
-begin
- require 'jeweler'
- Jeweler::Tasks.new do |gem|
- gem.name = "acts_as_tree"
- gem.summary = %Q{Gem version of acts_as_tree Rails plugin.}
- gem.description = %Q{Specify this acts_as extension if you want to model a tree structure by providing a parent association and a children association.}
- gem.email = "erik.dahlstrand@gmail.com"
- gem.homepage = "http://github.com/erdah/acts_as_tree"
- gem.authors = ["Erik Dahlstrand", "Rails Core"]
- end
-rescue LoadError
- puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
+desc "Run the tests."
+task :test do
+ $: << "lib" << "test"
+ Dir["test/*_test.rb"].each { |f| require f[5..-4] }
end
-require 'rake/testtask'
-Rake::TestTask.new(:test) do |test|
- test.libs << 'lib' << 'test'
- test.pattern = 'test/**/*_test.rb'
- test.verbose = true
-end
-
-begin
- require 'rcov/rcovtask'
- Rcov::RcovTask.new do |test|
- test.libs << 'test'
- test.pattern = 'test/**/*_test.rb'
- test.verbose = true
- end
-rescue LoadError
- task :rcov do
- abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
- end
-end
-
-task :test => :check_dependencies
-
task :default => :test
-require 'rake/rdoctask'
-Rake::RDocTask.new do |rdoc|
- if File.exist?('VERSION')
- version = File.read('VERSION')
- else
- version = ""
- end
+# Run the rdoc task to generate rdocs for this gem
+require 'rdoc/task'
+RDoc::Task.new do |rdoc|
+ require "acts_as_tree/version"
+ version = ActiveRecord::Acts::Tree::VERSION
rdoc.rdoc_dir = 'rdoc'
- rdoc.title = "acts_as_tree #{version}"
+ rdoc.title = "acts_as_tree-rails3 #{version}"
rdoc.rdoc_files.include('README*')
rdoc.rdoc_files.include('lib/**/*.rb')
end