Rakefile in has_comments-0.2.0 vs Rakefile in has_comments-0.3.0
- old
+ new
@@ -1,46 +1,23 @@
-# encoding: utf-8
-
-require 'rubygems'
-require 'bundler'
-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
-require 'rake'
-
-require 'jeweler'
-Jeweler::Tasks.new do |gem|
- # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
- gem.name = "has_comments"
- gem.homepage = "http://github.com/johnfelix/has_comments"
- gem.license = "MIT"
- gem.summary = "comments gem"
- gem.description = "comments"
- gem.email = "felix1985@gmail.com"
- gem.authors = ["John Felix"]
- gem.version = "0.2.0"
- # dependencies defined in Gemfile
-end
-Jeweler::RubygemsDotOrgTasks.new
-
+#!/usr/bin/env rake
require 'rake/testtask'
-Rake::TestTask.new(:test) do |test|
- test.libs << 'lib' << 'test'
- test.pattern = 'test/**/test_*.rb'
- test.verbose = true
-end
+require 'rdoc/task'
+desc 'Default: run unit tests.'
task :default => :test
-require 'rake/rdoctask'
-Rake::RDocTask.new do |rdoc|
- version = File.exist?('VERSION') ? File.read('VERSION') : ""
+desc 'Test the has_comments plugin.'
+Rake::TestTask.new(:test) do |t|
+ t.libs << 'lib'
+ t.libs << 'test'
+ t.pattern = 'test/**/*_test.rb'
+ t.verbose = true
+end
+desc 'Generate documentation for the has_comments plugin.'
+RDoc::Task.new(:rdoc) do |rdoc|
rdoc.rdoc_dir = 'rdoc'
- rdoc.title = "has_comments #{version}"
- rdoc.rdoc_files.include('README*')
+ rdoc.title = 'HasComments'
+ rdoc.options << '--line-numbers' << '--inline-source'
+ rdoc.rdoc_files.include('README')
rdoc.rdoc_files.include('lib/**/*.rb')
end