2009-05-18 03:13:06 -04:00
|
|
|
require 'rubygems'
|
2010-08-20 13:50:12 -04:00
|
|
|
require 'bundler/setup'
|
2010-04-20 23:23:24 -04:00
|
|
|
require 'date'
|
2009-05-18 03:13:06 -04:00
|
|
|
|
2010-04-20 23:23:24 -04:00
|
|
|
#############################################################################
|
|
|
|
#
|
|
|
|
# Helper functions
|
|
|
|
#
|
|
|
|
#############################################################################
|
|
|
|
|
|
|
|
def name
|
|
|
|
@name ||= Dir['*.gemspec'].first.split('.').first
|
2009-05-18 03:13:06 -04:00
|
|
|
end
|
|
|
|
|
2010-04-20 23:23:24 -04:00
|
|
|
def version
|
|
|
|
line = File.read("lib/#{name}.rb")[/^\s*VERSION\s*=\s*.*/]
|
|
|
|
line.match(/.*VERSION\s*=\s*['"](.*)['"]/)[1]
|
2009-05-18 03:13:06 -04:00
|
|
|
end
|
|
|
|
|
2010-04-20 23:23:24 -04:00
|
|
|
def date
|
|
|
|
Date.today.to_s
|
2009-05-18 03:13:06 -04:00
|
|
|
end
|
|
|
|
|
2010-04-20 23:23:24 -04:00
|
|
|
def rubyforge_project
|
|
|
|
name
|
|
|
|
end
|
2009-08-10 23:43:31 -04:00
|
|
|
|
2010-04-20 23:23:24 -04:00
|
|
|
def gemspec_file
|
|
|
|
"#{name}.gemspec"
|
|
|
|
end
|
2009-08-10 23:43:31 -04:00
|
|
|
|
2010-04-20 23:23:24 -04:00
|
|
|
def gem_file
|
|
|
|
"#{name}-#{version}.gem"
|
|
|
|
end
|
2009-08-10 23:43:31 -04:00
|
|
|
|
2010-04-20 23:23:24 -04:00
|
|
|
def replace_header(head, header_name)
|
|
|
|
head.sub!(/(\.#{header_name}\s*= ').*'/) { "#{$1}#{send(header_name)}'"}
|
2009-08-10 23:43:31 -04:00
|
|
|
end
|
|
|
|
|
2010-04-20 23:23:24 -04:00
|
|
|
#############################################################################
|
|
|
|
#
|
|
|
|
# Standard tasks
|
|
|
|
#
|
|
|
|
#############################################################################
|
2009-08-10 23:43:31 -04:00
|
|
|
|
2010-04-20 23:23:24 -04:00
|
|
|
task :default => :test
|
|
|
|
|
2010-09-02 16:12:57 -04:00
|
|
|
task :test do
|
|
|
|
sh("export FOG_MOCK=true && bundle exec spec -cfs spec") &&
|
|
|
|
sh("export FOG_MOCK=true && bundle exec shindo tests") &&
|
|
|
|
sh("export FOG_MOCK=false && bundle exec spec -cfs spec") &&
|
|
|
|
sh("export FOG_MOCK=false && bundle exec shindo tests")
|
|
|
|
end
|
|
|
|
|
|
|
|
task :ci 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-20 23:23:24 -04: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 03:13:06 -04:00
|
|
|
|
|
|
|
require 'rake/rdoctask'
|
|
|
|
Rake::RDocTask.new do |rdoc|
|
|
|
|
rdoc.rdoc_dir = 'rdoc'
|
2010-04-20 23:23:24 -04:00
|
|
|
rdoc.title = "#{name} #{version}"
|
2009-05-18 03:13:06 -04:00
|
|
|
rdoc.rdoc_files.include('README*')
|
|
|
|
rdoc.rdoc_files.include('lib/**/*.rb')
|
|
|
|
end
|
|
|
|
|
2010-04-20 23:23:24 -04: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-04-23 14:39:51 -04:00
|
|
|
sh "sudo gem install pkg/#{name}-#{version}.gem"
|
2010-04-20 23:23:24 -04:00
|
|
|
sh "git commit --allow-empty -a -m 'Release #{version}'"
|
|
|
|
sh "git tag v#{version}"
|
|
|
|
sh "git push origin master"
|
2010-04-20 23:28:32 -04:00
|
|
|
sh "git push origin v#{version}"
|
2010-04-20 23:23:24 -04: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)
|
|
|
|
head, manifest, tail = spec.split(" # = MANIFEST =\n")
|
|
|
|
|
|
|
|
# replace name version and date
|
|
|
|
replace_header(head, :name)
|
|
|
|
replace_header(head, :version)
|
|
|
|
replace_header(head, :date)
|
|
|
|
#comment this out if your rubyforge_project has a different name
|
|
|
|
replace_header(head, :rubyforge_project)
|
|
|
|
|
|
|
|
# determine file list from git ls-files
|
|
|
|
files = `git ls-files`.
|
|
|
|
split("\n").
|
|
|
|
sort.
|
|
|
|
reject { |file| file =~ /^\./ }.
|
|
|
|
reject { |file| file =~ /^(rdoc|pkg)/ }.
|
|
|
|
map { |file| " #{file}" }.
|
|
|
|
join("\n")
|
|
|
|
|
|
|
|
# piece file back together and write
|
|
|
|
manifest = " s.files = %w[\n#{files}\n ]\n"
|
|
|
|
spec = [head, manifest, tail].join(" # = MANIFEST =\n")
|
|
|
|
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 03:13:06 -04:00
|
|
|
end
|
|
|
|
end
|