forked from gnuine/ubiquo_design
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
42 lines (37 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
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
desc 'Default: run unit tests.'
task :default => :test
desc 'Test the ubiquo_design plugin.'
Rake::TestTask.new(:test) do |t|
t.libs << 'lib'
t.pattern = 'test/**/*_test.rb'
t.verbose = true
end
desc 'Generate documentation for the ubiquo_design plugin.'
Rake::RDocTask.new(:rdoc) do |rdoc|
rdoc.rdoc_dir = 'rdoc'
rdoc.title = 'UbiquoDesign'
rdoc.options << '--line-numbers' << '--inline-source'
rdoc.rdoc_files.include('README')
rdoc.rdoc_files.include('lib/**/*.rb')
end
def update_version(function, name)
major, minor, tiny = File.read("VERSION").strip.split(".").map { |i| i.to_i }
eval "#{name} #{function}= 1"
File.open("VERSION", "w") { |f| f.puts [major, minor, tiny].join(".") }
puts `cat VERSION`
end
{ :bump => "+", :debump => "-"}.each do |key, value|
namespace key do
[ :major, :minor, :tiny].each do |position|
eval <<-CODE
desc "#{key.to_s.capitalize} #{position} number by 1"
task :#{position} do
update_version("#{value}", "#{position}")
end
CODE
end
end
end