ianwhite / clock_time

Adds Time.tomorrow, Time.yesterday, and instance methods like time.at_2am, time.at_0200

This URL has Read+Write access

clock_time / Rakefile
100644 84 lines (70 sloc) 2.384 kb
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# use pluginized rpsec if it exists
rspec_base = File.expand_path(File.dirname(__FILE__) + '/../rspec/lib')
$LOAD_PATH.unshift(rspec_base) if File.exist?(rspec_base) and !$LOAD_PATH.include?(rspec_base)
 
require 'spec/rake/spectask'
require 'spec/rake/verify_rcov'
require 'hanna/rdoctask'
 
plugin_name = 'inherit_views'
 
task :default => :spec
 
desc "Run the specs for #{plugin_name}"
Spec::Rake::SpecTask.new(:spec) do |t|
  t.spec_files = FileList['spec/**/*_spec.rb']
  t.spec_opts = ["--colour"]
end
 
desc "Generate RCov report for #{plugin_name}"
Spec::Rake::SpecTask.new(:rcov) do |t|
  t.spec_files = FileList['spec/**/*_spec.rb']
  t.rcov = true
  t.rcov_dir = 'doc/coverage'
  t.rcov_opts = ['--text-report', '--exclude', "spec/,rcov.rb,#{File.expand_path(File.join(File.dirname(__FILE__),'../../..'))}"]
end
 
namespace :rcov do
  desc "Verify RCov threshold for #{plugin_name}"
  RCov::VerifyTask.new(:verify => :rcov) do |t|
    t.threshold = 100.0
    t.index_html = File.join(File.dirname(__FILE__), 'doc/coverage/index.html')
  end
end
 
task :rdoc => 'doc:build'
task :doc => 'doc:build'
 
namespace :doc do
  
  current_sha = `git log HEAD -1 --pretty=format:"%H"`[0..6]
  
  Rake::RDocTask.new(:build) do |d|
    d.rdoc_dir = 'doc'
    d.main = 'README.rdoc'
    d.title = "#{plugin_name} API Docs (#{current_sha})"
    d.rdoc_files.include('README.rdoc', 'History.txt', 'License.txt', 'Todo.txt', 'lib/**/*.rb')
  end
  
  task :push => 'doc:build' do
    mv 'doc', 'newdoc'
    on_gh_pages do
      if doc_changed_sha?('newdoc', 'doc')
        puts "doc has changed, pushing to gh-pages"
        `rm -rf doc && mv newdoc doc`
        `git add doc`
        `git commit -a -m "Update API docs"`
        `git push`
      else
        puts "doc is unchanged"
        rm_rf 'newdoc'
      end
    end
  end
  
  def doc_changed_sha?(docpath1, docpath2)
    `cat #{docpath1}/index.html | grep "<title>"` != `cat #{docpath2}/index.html | grep "<title>"`
  end
  
  def on_gh_pages(&block)
    `git branch -m gh-pages orig-gh-pages > /dev/null 2>&1`
    `git checkout -b gh-pages origin/gh-pages`
    `git pull`
    yield
  ensure
    `git checkout master`
    `git branch -D gh-pages`
    `git branch -m orig-gh-pages gh-pages > /dev/null 2>&1`
  end
end
 
task :cruise => 'rcov:verify' do
  Rake::Task['doc:push'].invoke
  puts "The build is GOOD"
end