forked from niquola/famili
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRakefile
58 lines (47 loc) · 1.32 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
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
require 'rake/gempackagetask'
require 'rubygems'
require 'spec/rake/spectask'
desc 'Default: run unit tests.'
task :default => :test
desc 'Test the pg_gnostic plugin.'
#Rake::TestTask.new(:test) do |t|
#t.libs << 'lib'
#t.libs << 'spec'
#t.pattern = 'spec/**/*_spec.rb'
#t.verbose = true
#end
Spec::Rake::SpecTask.new(:test) do |t|
t.libs << 'lib'
t.warning = true
t.rcov = true
end
desc 'Generate documentation for the pg_gnostic plugin.'
Rake::RDocTask.new(:rdoc) do |rdoc|
rdoc.rdoc_dir = 'rdoc'
rdoc.title = 'Famili'
rdoc.options << '--line-numbers' << '--inline-source'
rdoc.rdoc_files.include('README.rdoc')
rdoc.rdoc_files.include('lib/**/*.rb')
end
PKG_FILES = FileList[ '[a-zA-Z]*', 'generators/**/*', 'lib/**/*', 'spec/**/*' ]
require 'lib/famili'
spec = Gem::Specification.new do |s|
s.name = "famili"
s.version = Famili::VERSION
s.author = "niquola"
s.email = "[email protected]"
s.homepage = "http://github.com/niquola/famili"
s.platform = Gem::Platform::RUBY
s.summary = "Rails plugin for postgres"
s.files = PKG_FILES.to_a
s.require_path = "lib"
s.has_rdoc = false
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