-
Notifications
You must be signed in to change notification settings - Fork 8
/
Rakefile
60 lines (51 loc) · 2.08 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
require "rubygems"
require "spec"
require "rake/clean"
require "rake/gempackagetask"
require "spec/rake/spectask"
require "pathname"
CLEAN.include "{log,pkg}/"
spec = Gem::Specification.new do |s|
s.name = "dm-polymorphic"
s.version = "0.10.2"
s.platform = Gem::Platform::RUBY
s.has_rdoc = true
s.extra_rdoc_files = %w[ README.textile LICENSE TODO ]
s.summary = "DataMapper plugin enabling simple ActiveRecord style polymorphism"
s.description = s.summary
s.author = "Daniel Neighman, Wayne E. Seguin, Ripta Pasay, Martin Linkhorst"
s.homepage = "http://github.com/hassox/dm-polymorphic"
s.require_path = "lib"
s.files = FileList[ "{lib,spec}/**/*.rb", "spec/spec.opts", "Rakefile", *s.extra_rdoc_files ]
s.add_dependency("dm-core", ">=#{s.version}")
end
task :default => [ :spec ]
WIN32 = (RUBY_PLATFORM =~ /win32|mingw|cygwin/) rescue nil
SUDO = WIN32 ? "" : ("sudo" unless ENV["SUDOLESS"])
Rake::GemPackageTask.new(spec) do |pkg|
pkg.gem_spec = spec
end
desc "Install #{spec.name} #{spec.version} (default ruby)"
task :install => [ :package ] do
sh "#{SUDO} gem install pkg/#{spec.name}-#{spec.version} --no-update-sources", :verbose => false
end
namespace :jruby do
desc "Install #{spec.name} #{spec.version} with JRuby"
task :install => [ :package ] do
sh %{#{SUDO} jruby -S gem install --local pkg/#{spec.name}-#{spec.version} --no-update-sources}, :verbose => false
end
end
desc "Run specifications"
Spec::Rake::SpecTask.new(:spec) do |t|
t.spec_opts << "--options" << "spec/spec.opts" if File.exists?("spec/spec.opts")
t.spec_files = Pathname.glob(Pathname.new(__FILE__).dirname + "spec/**/*_spec.rb")
begin
t.rcov = ENV.has_key?("NO_RCOV") ? ENV["NO_RCOV"] != "true" : true
t.rcov_opts << "--exclude" << "spec"
t.rcov_opts << "--text-summary"
t.rcov_opts << "--sort" << "coverage" << "--sort-reverse"
rescue Exception
# rcov not installed
end
end