forked from janlelis/has_many_booleans
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRakefile
More file actions
48 lines (41 loc) · 1.36 KB
/
Copy pathRakefile
File metadata and controls
48 lines (41 loc) · 1.36 KB
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
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
require 'rake/gempackagetask'
require File.dirname(__FILE__) + "/lib/has_many_booleans/version"
desc 'Default: run unit tests.'
task :default => :test
desc 'Test the has_many_booleans 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_many_booleans plugin.'
Rake::RDocTask.new(:rdoc) do |rdoc|
rdoc.rdoc_dir = 'doc'
rdoc.title = 'has_many_booleans Rails plugin'
rdoc.options << '--inline-source'
rdoc.rdoc_files.include('README.rdoc')
rdoc.rdoc_files.include('lib/**/*.rb')
end
# gem
PKG_FILES = FileList[ '[a-zA-Z]*', 'lib/**/*', 'rails/**/*', 'test/**/*' ]
spec = Gem::Specification.new do |s|
s.name = "has_many_booleans"
s.version = HasManyBooleans::VERSION
s.author = "Jan Lelis"
s.email = "mail@janlelis.de"
s.homepage = "http://github.com/janlelis/has_many_booleans"
s.platform = Gem::Platform::RUBY
s.summary = "This Rails plugin/gem allows you to generate virtual boolean attributes, which get saved in the database as a single bitset integer"
s.files = PKG_FILES.to_a
s.require_path = "lib"
s.has_rdoc = true
s.extra_rdoc_files = ["README.rdoc"]
end
desc 'Turn this plugin into a gem.'
Rake::GemPackageTask.new(spec) do |pkg|
pkg.gem_spec = spec
end