Skip to content

Commit

Permalink
Switch Rakefile over to use jeweler
Browse files Browse the repository at this point in the history
  • Loading branch information
duelinmarkers committed Jun 19, 2009
1 parent ca0fd08 commit 9facac7
Showing 1 changed file with 19 additions and 5 deletions.
24 changes: 19 additions & 5 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,21 @@
require 'config/requirements'
require 'config/hoe' # setup Hoe + all gem configuration
require 'rubygems'
require 'spec/rake/spectask'

Dir['tasks/**/*.rake'].each { |rake| load rake }
Spec::Rake::SpecTask.new do |t|
end

Rake::Task[:default].prerequisites.clear
task :default => :spec
task :default => :spec

begin
require 'jeweler'
Jeweler::Tasks.new do |s|
s.name = "renum"
s.summary = "provides a readable but terse enum facility for Ruby"
s.email = "duelin.markers@gmail.com"
s.homepage = "http://github.com/duelinmarkers/renum"
s.description = "provides a readable but terse enum facility for Ruby"
s.authors = ["John Hume"]
end
rescue LoadError
puts "Jeweler or a dependency not available. To install: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end

0 comments on commit 9facac7

Please sign in to comment.