forked from maxschulze/preferences
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
75 lines (64 loc) · 2.06 KB
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
require 'rubygems'
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
require 'rake/gempackagetask'
spec = Gem::Specification.new do |s|
s.name = 'preferences'
s.version = '0.4.2'
s.platform = Gem::Platform::RUBY
s.summary = 'Adds support for easily creating custom preferences for ActiveRecord models'
s.description = s.summary
s.files = FileList['{app,generators,lib,test}/**/*'] + %w(CHANGELOG.rdoc init.rb LICENSE Rakefile README.rdoc) - FileList['test/app_root/{log,log/*,script,script/*}']
s.require_path = 'lib'
s.has_rdoc = true
s.test_files = Dir['test/**/*_test.rb']
s.author = 'Aaron Pfeifer'
s.email = '[email protected]'
s.homepage = 'http://www.pluginaweek.org'
s.rubyforge_project = 'pluginaweek'
end
desc 'Default: run all tests.'
task :default => :test
desc "Test the #{spec.name} plugin."
Rake::TestTask.new(:test) do |t|
t.libs << 'lib'
t.test_files = spec.test_files
t.verbose = true
end
begin
require 'rcov/rcovtask'
namespace :test do
desc "Test the #{spec.name} plugin with Rcov."
Rcov::RcovTask.new(:rcov) do |t|
t.libs << 'lib'
t.test_files = spec.test_files
t.rcov_opts << '--exclude="^(?!lib/|app/)"'
t.verbose = true
end
end
rescue LoadError
end
desc "Generate documentation for the #{spec.name} plugin."
Rake::RDocTask.new(:rdoc) do |rdoc|
rdoc.rdoc_dir = 'rdoc'
rdoc.title = spec.name
rdoc.template = '../rdoc_template.rb'
rdoc.options << '--line-numbers' << '--inline-source'
rdoc.rdoc_files.include('README.rdoc', 'CHANGELOG.rdoc', 'LICENSE', 'lib/**/*.rb', 'app/**/*.rb')
end
desc 'Generate a gemspec file.'
task :gemspec do
File.open("#{spec.name}.gemspec", 'w') do |f|
f.write spec.to_ruby
end
end
Rake::GemPackageTask.new(spec) do |p|
p.gem_spec = spec
end
desc 'Publish the release files to RubyForge.'
task :release => :package do
require 'rake/gemcutter'
Rake::Gemcutter::Tasks.new(spec)
Rake::Task['gem:push'].invoke
end