fog--fog/Rakefile

133 lines
3.3 KiB
Ruby
Raw Normal View History

2009-05-18 07:13:06 +00:00
require 'rubygems'
require 'bundler/setup'
2010-04-21 03:23:24 +00:00
require 'date'
2009-05-18 07:13:06 +00:00
2010-04-21 03:23:24 +00:00
#############################################################################
#
# Helper functions
#
#############################################################################
def name
@name ||= Dir['*.gemspec'].first.split('.').first
2009-05-18 07:13:06 +00:00
end
2010-04-21 03:23:24 +00:00
def version
line = File.read("lib/#{name}.rb")[/^\s*VERSION\s*=\s*.*/]
line.match(/.*VERSION\s*=\s*['"](.*)['"]/)[1]
2009-05-18 07:13:06 +00:00
end
2010-04-21 03:23:24 +00:00
def date
Date.today.to_s
2009-05-18 07:13:06 +00:00
end
2010-04-21 03:23:24 +00:00
def rubyforge_project
name
end
2010-04-21 03:23:24 +00:00
def gemspec_file
"#{name}.gemspec"
end
2010-04-21 03:23:24 +00:00
def gem_file
"#{name}-#{version}.gem"
end
2010-04-21 03:23:24 +00:00
def replace_header(head, header_name)
head.sub!(/(\.#{header_name}\s*= ').*'/) { "#{$1}#{send(header_name)}'"}
end
2010-04-21 03:23:24 +00:00
#############################################################################
#
# Standard tasks
#
#############################################################################
2010-04-21 03:23:24 +00:00
task :default => :test
task :examples do
sh("export FOG_MOCK=false && bundle exec shindont examples")
# some don't provide mocks so we'll leave this out for now
# sh("export FOG_MOCK=true && bundle exec shindont examples")
end
task :test => :examples do
sh("export FOG_MOCK=true && bundle exec spec spec") &&
sh("export FOG_MOCK=true && bundle exec shindont tests") &&
sh("export FOG_MOCK=false && bundle exec spec spec") &&
sh("export FOG_MOCK=false && bundle exec shindont tests")
2010-04-21 03:23:24 +00:00
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
2009-05-18 07:13:06 +00:00
require 'rake/rdoctask'
Rake::RDocTask.new do |rdoc|
rdoc.rdoc_dir = 'rdoc'
2010-04-21 03:23:24 +00:00
rdoc.title = "#{name} #{version}"
2009-05-18 07:13:06 +00:00
rdoc.rdoc_files.include('README*')
rdoc.rdoc_files.include('lib/**/*.rb')
end
2010-04-21 03:23:24 +00:00
desc "Open an irb session preloaded with this library"
task :console do
sh "irb -rubygems -r ./lib/#{name}.rb"
end
#############################################################################
#
# Packaging tasks
#
#############################################################################
task :release => :build do
unless `git branch` =~ /^\* master$/
puts "You must be on the master branch to release!"
exit!
end
2010-12-10 21:26:43 +00:00
sh "gem install pkg/#{name}-#{version}.gem"
2010-04-21 03:23:24 +00:00
sh "git commit --allow-empty -a -m 'Release #{version}'"
sh "git tag v#{version}"
sh "git push origin master"
2010-04-21 03:28:32 +00:00
sh "git push origin v#{version}"
2010-04-21 03:23:24 +00:00
sh "gem push pkg/#{name}-#{version}.gem"
end
task :build => :gemspec do
sh "mkdir -p pkg"
sh "gem build #{gemspec_file}"
sh "mv #{gem_file} pkg"
end
task :gemspec => :validate do
# read spec file and split out manifest section
spec = File.read(gemspec_file)
# replace name version and date
replace_header(spec, :name)
replace_header(spec, :version)
replace_header(spec, :date)
2010-04-21 03:23:24 +00:00
#comment this out if your rubyforge_project has a different name
replace_header(spec, :rubyforge_project)
2010-04-21 03:23:24 +00:00
File.open(gemspec_file, 'w') { |io| io.write(spec) }
puts "Updated #{gemspec_file}"
end
task :validate do
libfiles = Dir['lib/*'] - ["lib/#{name}.rb", "lib/#{name}"]
unless libfiles.empty?
puts "Directory `lib` should only contain a `#{name}.rb` file and `#{name}` dir."
exit!
end
unless Dir['VERSION*'].empty?
puts "A `VERSION` file at root level violates Gem best practices."
exit!
2009-05-18 07:13:06 +00:00
end
end