Skip to content

Commit

Permalink
Updated rakefile for jeweler
Browse files Browse the repository at this point in the history
  • Loading branch information
edavis10 committed Oct 14, 2009
1 parent 1fe7978 commit cf65c31
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions Rakefile
Expand Up @@ -7,3 +7,29 @@ RedminePluginSupport::Base.setup do |plugin|
plugin.project_name = 'redmine_overhead'
plugin.default_task = [:spec, :features]
end
begin
require 'jeweler'
Jeweler::Tasks.new do |s|
s.name = "redmine_overhead"
s.summary = "Overhead is a plugin that can be used to group Time Entry Activities into billable and overhead groups"
s.email = "edavis@littlestreamsoftware.com"
s.homepage = "https://projects.littlestreamsoftware.com/projects/TODO"
s.description = "Overhead is a plugin that can be used to group Time Entry Activities into billable and overhead groups"
s.authors = ["Eric Davis"]
s.rubyforge_project = "redmine_overhead" # TODO
s.files = FileList[
"[A-Z]*",
"init.rb",
"rails/init.rb",
"{bin,generators,lib,test,app,assets,config,lang}/**/*",
'lib/jeweler/templates/.gitignore'
]
end
Jeweler::GemcutterTasks.new
Jeweler::RubyforgeTasks.new do |rubyforge|
rubyforge.doc_task = "rdoc"
end
rescue LoadError
puts "Jeweler, or one of its dependencies, is not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end

0 comments on commit cf65c31

Please sign in to comment.