omniauth--omniauth/Rakefile

166 lines
3.6 KiB
Ruby
Raw Normal View History

2010-03-25 23:37:03 +00:00
require 'rubygems'
require 'rake'
begin
require 'term/ansicolor'
include Term::ANSIColor
rescue LoadError
def cyan; '' end
def blue; '' end
def clear; '' end
end
2010-03-25 23:37:03 +00:00
2010-08-10 20:04:19 +00:00
OMNIAUTH_GEMS = %w(oa-basic oa-core oa-oauth oa-openid oa-enterprise omniauth)
def each_gem(action, &block)
OMNIAUTH_GEMS.each_with_index do |dir, i|
print blue, "\n\n== ", cyan, dir, blue, " ", action, clear, "\n\n"
Dir.chdir(dir, &block)
end
end
def version_file
File.dirname(__FILE__) + '/VERSION'
end
def version
File.open(version_file, 'r').read.strip
end
def bump_version(position)
v = version
v = v.split('.').map{|s| s.to_i}
v[position] += 1
write_version(*v)
end
def write_version(major, minor, patch)
major = nil if major == ''
minor = nil if minor == ''
patch = nil if patch == ''
v = version
v = v.split('.').map{|s| s.to_i}
v[0] = major || v[0]
v[1] = minor || v[1]
v[2] = patch || v[2]
File.open(version_file, 'w'){ |f| f.write v.map{|i| i.to_s}.join('.') }
puts "Version is now: #{version}"
end
2010-03-25 23:37:03 +00:00
desc 'Run specs for all of the gems.'
task :spec do
each_gem('specs are running...') do
system('rake spec')
end
2010-03-25 23:37:03 +00:00
end
2010-06-13 21:00:03 +00:00
namespace :dependencies do
desc 'Install all dependencies via Bundler'
task :install do
each_gem('is installing dependencies...') do
system('bundle install')
end
end
end
task :release => ['release:tag', 'gems:publish', 'doc:pages:publish']
namespace :release do
task :tag do
system("git tag v#{version}")
system('git push origin --tags')
end
end
namespace :gems do
desc 'Build all gems'
task :build do
each_gem('is building gems...') do
system('rake gem')
end
end
desc 'Push all gems to Gemcutter'
task :push do
each_gem('is releasing to Gemcutter...') do
2010-08-16 15:21:46 +00:00
system('rake gem:publish')
end
end
desc 'Install all gems'
task :install do
each_gem('is installing gems...') do
system('rake gem:install')
end
2010-06-13 17:20:52 +00:00
end
desc "Uninstall gems"
task :uninstall do
sh "sudo gem uninstall #{OMNIAUTH_GEMS.join(" ")} -a"
end
2010-06-13 17:20:52 +00:00
end
desc "Clean pkg and other stuff"
task :clean do
OMNIAUTH_GEMS.each do |dir|
Dir.chdir(dir) do
%w(tmp pkg coverage dist).each { |d| FileUtils.rm_rf d }
2010-06-13 17:20:52 +00:00
end
end
Dir["**/*.gem"].each { |gem| FileUtils.rm_rf gem }
end
desc 'Display the current version.'
task :version do
puts "Current Version: #{version}"
end
namespace :version do
desc "Write version with MAJOR, MINOR, and PATCH level env variables."
task :write do
write_version(ENV['MAJOR'], ENV['MINOR'], ENV['PATCH'])
end
namespace :bump do
task(:major){ bump_version(0) }
task(:minor){ bump_version(1) }
task(:patch){ bump_version(2) }
end
end
2010-06-13 01:29:31 +00:00
task :default => :spec
begin
2010-10-14 21:21:08 +00:00
YARD_OPTS = ['-m', 'markdown', '-M', 'maruku']
require 'yard'
YARD::Rake::YardocTask.new(:doc) do |t|
t.files = OMNIAUTH_GEMS.inject([]){|a,g| a = a + ["#{g}/lib/**/*.rb"]; a} + ['README.markdown']
2010-10-14 21:21:08 +00:00
t.options = YARD_OPTS
end
namespace :doc do
YARD::Rake::YardocTask.new(:pages) do |t|
t.files = OMNIAUTH_GEMS.inject([]){|a,g| a = a + ["#{g}/lib/**/*.rb"]; a} + ['README.markdown']
2010-10-14 21:21:08 +00:00
t.options = YARD_OPTS + ['-o', '../omniauth.doc']
end
namespace :pages do
desc 'Generate and publish YARD docs to GitHub pages.'
task :publish => ['doc:pages'] do
Dir.chdir(File.dirname(__FILE__) + '/../omniauth.doc') do
system("git add .")
system("git add -u")
system("git commit -m 'Generating docs for version #{version}.'")
system("git push origin gh-pages")
end
end
end
end
rescue LoadError
puts "You need to install YARD."
end