-
Notifications
You must be signed in to change notification settings - Fork 63
/
Rakefile
72 lines (59 loc) · 2.42 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
#require 'rake/testtask'
require 'rdoc/task'
require 'rubygems/package_task'
require 'rake/contrib/sshpublisher'
require 'jeweler'
Jeweler::Tasks.new do |s|
s.name = 'enumerated_attribute'
s.summary = 'Enumerated model attributes and view helpers'
s.description = 'Add enumerated attributes to your models and expose them in drop-down lists in your views'
s.add_dependency('meta_programming', '>= 0.2.1')
exclude_folders = 'spec/rails/{doc,lib,log,nbproject,tmp,vendor,test}'
exclude_files = FileList['**/*.log'] + FileList[exclude_folders+'/**/*'] + FileList[exclude_folders]
s.files = FileList['{examples,lib,tasks,spec}/**/*'] + %w(CHANGELOG.rdoc init.rb LICENSE Rakefile README.rdoc .gitignore) - exclude_files
s.require_path = 'lib'
s.has_rdoc = true
s.test_files = Dir['spec/*_spec.rb']
s.author = ['Jeff Patmon', 'Turadg Aleahmad']
s.email = ['[email protected]', "[email protected]"]
s.homepage = 'http://github.com/jeffp/enumerated_attribute/'
s
end
Jeweler::GemcutterTasks.new
require "rspec/core/rake_task" # RSpec 2.0
desc "Run specs"
namespace :spec do
task :default => :all
RSpec::Core::RakeTask.new(:object) do |t|
t.pattern = 'spec/*_spec.rb'
# t.libs << 'lib' << 'spec'
t.rcov = false
t.rspec_opts = ['--options', 'spec/spec.opts']
#t.rcov_dir = 'coverage'
#t.rcov_opts = ['--exclude', "kernel,load-diff-lcs\.rb,instance_exec\.rb,lib/spec.rb,lib/spec/runner.rb,^spec/*,bin/spec,examples,/gems,/Library/Ruby,\.autotest,#{ENV['GEM_HOME']}"]
end
desc "Run ActiveRecord integration specs"
RSpec::Core::RakeTask.new(:ar) do |t|
t.pattern = 'spec/active_record/*_spec.rb'
# t.libs << 'lib' << 'spec/active_record'
t.rspec_opts = ['--options', 'spec/spec.opts']
t.rcov = false
end
RSpec::Core::RakeTask.new(:forms) do |t|
t.pattern = 'spec/rails/spec/integrations/*_spec.rb'
# t.libs << 'lib' << 'spec/rails/spec'
t.rspec_opts = ['--options', 'spec/spec.opts']
t.rcov = false
end
desc "Run all specs"
task :all=>[:object, :ar, :forms]
end
desc "Generate documentation for the 'enumerated_attribute' 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')
end
Dir['tasks/**/*.rake'].each {|rake| load rake}