Skip to content

Commit

Permalink
Update rakegem files to latest code.
Browse files Browse the repository at this point in the history
  • Loading branch information
mojombo committed May 26, 2011
1 parent acf6c4a commit 93e9890
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 37 deletions.
75 changes: 39 additions & 36 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,31 +2,39 @@ require 'rubygems'
require 'rake'
require 'date'

#############################################################################
#
# The name of the package
#
#############################################################################

NAME = 'god'

#############################################################################
#
# Helper functions
#
#############################################################################

def source_version
line = File.read("lib/#{NAME}.rb")[/^\s*VERSION\s*=\s*.*/]
def name
@name ||= Dir['*.gemspec'].first.split('.').first
end

def version
line = File.read("lib/#{name}.rb")[/^\s*VERSION\s*=\s*.*/]
line.match(/.*VERSION\s*=\s*['"](.*)['"]/)[1]
end

def date
Date.today.to_s
end

def rubyforge_project
name
end

def gemspec_file
"#{NAME}.gemspec"
"#{name}.gemspec"
end

def gem_file
"#{NAME}-#{source_version}.gem"
"#{name}-#{version}.gem"
end

def replace_header(head, header_name)
head.sub!(/(\.#{header_name}\s*= ').*'/) { "#{$1}#{send(header_name)}'"}
end

#############################################################################
Expand All @@ -44,7 +52,7 @@ Rake::TestTask.new(:test) do |test|
test.verbose = true
end

desc "Generate and open coverage stats via rcov"
desc "Generate RCov test coverage and open in your browser"
task :coverage do
require 'rcov'
sh "rm -fr coverage"
Expand All @@ -55,14 +63,14 @@ end
require 'rake/rdoctask'
Rake::RDocTask.new do |rdoc|
rdoc.rdoc_dir = 'rdoc'
rdoc.title = "#{NAME} #{source_version}"
rdoc.title = "#{name} #{version}"
rdoc.rdoc_files.include('README*')
rdoc.rdoc_files.include('lib/**/*.rb')
end

desc "Open an irb session preloaded with this library"
task :console do
sh "irb -rubygems -r ./lib/#{NAME}.rb"
sh "irb -rubygems -r ./lib/#{name}.rb"
end

#############################################################################
Expand All @@ -87,38 +95,45 @@ end
#
#############################################################################

desc "Create tag v#{version} and build and push #{gem_file} to Rubygems"
task :release => :build do
unless `git branch` =~ /^\* master$/
puts "You must be on the master branch to release!"
exit!
end
sh "git commit --allow-empty -a -m 'up to #{source_version}'"
sh "git tag v#{source_version}"
sh "git push origin master --tags"
sh "gem push pkg/#{NAME}-#{source_version}.gem"
sh "git commit --allow-empty -a -m 'Release #{version}'"
sh "git tag v#{version}"
sh "git push origin master"
sh "git push origin v#{version}"
sh "gem push pkg/#{name}-#{version}.gem"
end

desc "Build #{gem_file} into the pkg directory"
task :build => :gemspec do
sh "mkdir -p pkg"
sh "gem build #{gemspec_file}"
sh "mv #{gem_file} pkg"
end

task :gemspec => :validate do
desc "Generate #{gemspec_file}"
task :gemspec do
# read spec file and split out manifest section
spec = File.read(gemspec_file)
head, manifest, tail = spec.split(" # = MANIFEST =\n")

# replace version and date
head.sub!(/\.version = '.*'/, ".version = '#{source_version}'")
head.sub!(/\.date = '.*'/, ".date = '#{Date.today.to_s}'")
# 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 =~ /^(examples|ideas|init|site)/ }.
reject { |file| file =~ /^(rdoc|pkg|examples|ideas|init|site)/ }.
map { |file| " #{file}" }.
join("\n")

Expand All @@ -128,15 +143,3 @@ task :gemspec => :validate do
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!
end
end
4 changes: 3 additions & 1 deletion god.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Gem::Specification.new do |s|

s.name = 'god'
s.version = '0.11.0'
s.date = '2010-07-01'
s.date = '2011-05-25'

s.summary = "Process monitoring framework."
s.description = "An easy to configure, easy to extend monitoring framework written in Ruby."
Expand Down Expand Up @@ -66,6 +66,7 @@ Gem::Specification.new do |s|
lib/god/conditions/memory_usage.rb
lib/god/conditions/process_exits.rb
lib/god/conditions/process_running.rb
lib/god/conditions/socket_responding.rb
lib/god/conditions/tries.rb
lib/god/configurable.rb
lib/god/contact.rb
Expand Down Expand Up @@ -133,6 +134,7 @@ Gem::Specification.new do |s|
test/test_conditions_disk_usage.rb
test/test_conditions_http_response_code.rb
test/test_conditions_process_running.rb
test/test_conditions_socket_responding.rb
test/test_conditions_tries.rb
test/test_contact.rb
test/test_dependency_graph.rb
Expand Down

0 comments on commit 93e9890

Please sign in to comment.