-
Notifications
You must be signed in to change notification settings - Fork 59
/
Rakefile
71 lines (59 loc) · 1.94 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
61
62
63
64
65
66
67
68
69
70
require 'rake'
require 'rake/testtask'
require 'bundler'
Bundler::GemHelper.install_tasks
$LOAD_PATH.unshift File.join(File.dirname(__FILE__), 'lib')
desc "release and build and push new website"
task :push => [:release, :web]
desc "Bumps version number up one and git commits"
task :bump do
basefile = "lib/vmail/version.rb"
file = File.read(basefile)
oldver = file[/VERSION = '(\d.\d.\d)'/, 1]
newver_i = oldver.gsub(".", '').to_i + 1
newver = ("%.3d" % newver_i).split(//).join('.')
puts oldver
puts newver
puts "Bumping version: #{oldver} => #{newver}"
newfile = file.gsub("VERSION = '#{oldver}'", "VERSION = '#{newver}'")
File.open(basefile, 'w') {|f| f.write newfile}
`git commit -am 'Bump'`
end
desc "build and push website"
task :web => :build_webpage do
puts "Building and pushing website"
Dir.chdir "../project-webpages" do
`scp out/vmail.html [email protected]:~/danielchoi.com/public/software/`
`rsync -avz out/images-vmail [email protected]:~/danielchoi.com/public/software/`
`rsync -avz out/stylesheets [email protected]:~/danielchoi.com/public/software/`
`rsync -avz out/lightbox2 [email protected]:~/danielchoi.com/public/software/`
end
`open http://danielchoi.com/software/vmail.html`
end
desc "build webpage"
task :build_webpage do
`cp README.markdown ../project-webpages/src/vmail.README.markdown`
`cp coverage.markdown ../project-webpages/src/vmail.coverage.markdown`
Dir.chdir "../project-webpages" do
puts `ruby gen.rb vmail #{Vmail::VERSION}`
#`open out/vmail.html`
end
end
desc "git push and rake release bumped version"
task :bumped do
puts `git push && rake release`
Rake::Task["web"].execute
end
desc "Run tests"
task :test do
$:.unshift File.expand_path("test")
require 'test_helper'
Dir.chdir("test") do
Dir['*_test.rb'].each do |x|
puts "requiring #{x}"
require x
end
end
MiniTest::Unit.autorun
end
task :default => :test