forked from RubyMoney/money
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Rakefile
52 lines (34 loc) · 852 Bytes
/
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
require 'rubygems'
require 'rake/clean'
CLOBBER.include('doc', '.yardoc')
def gemspec
@gemspec ||= begin
file = File.expand_path("../money.gemspec", __FILE__)
eval(File.read(file), binding, file)
end
end
task :default => :spec
task :test => :spec
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new
require 'yard'
YARD::Rake::YardocTask.new do |t|
t.options << "--files" << "CHANGELOG.md,LICENSE"
end
require 'rubygems/package_task'
Gem::PackageTask.new(gemspec) do |pkg|
pkg.gem_spec = gemspec
end
task :gem => :gemspec
desc "Install the gem locally"
task :install => :gem do
sh "gem install pkg/#{gemspec.full_name}.gem"
end
desc "Validate the gemspec"
task :gemspec do
gemspec.validate
end
desc "Open an irb session preloaded with this library"
task :console do
sh "irb -rubygems -I lib -r money.rb"
end