forked from luan/chronic-l10n
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Rakefile
46 lines (39 loc) · 1.09 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
require 'date'
def version
contents = File.read File.expand_path('../lib/chronic-l10n.rb', __FILE__)
contents[/VERSION = "([^"]+)"/, 1]
end
task :test do
$:.unshift './test'
Dir.glob('test/test_*.rb').each { |t| require File.basename(t) }
end
desc "Generate RCov test coverage and open in your browser"
task :coverage do
require 'rcov'
sh "rm -fr coverage"
sh "rcov test/test_*.rb"
sh "open coverage/index.html"
end
desc "Open an irb session preloaded with this library"
task :console do
sh "irb -Ilib -rchronic-l10n"
end
desc "Release Chronic-L10n version #{version}"
task :release => :build do
unless `git branch` =~ /^\* master$/
puts "You must be on the master branch to release!"
exit!
end
sh "git commit --allow-empty -a -m 'Release #{version}'"
sh "git tag v#{version}"
sh "git push origin master"
sh "git push origin v#{version}"
sh "gem push pkg/chronic-l10n-#{version}.gem"
end
desc "Build a gem from the gemspec"
task :build do
sh "mkdir -p pkg"
sh "gem build chronic-l10n.gemspec"
sh "mv chronic-l10n-#{version}.gem pkg"
end
task :default => :test