public
Description: Coming soon!
Homepage:
Clone URL: git://github.com/edavis10/redmine_overhead.git
edavis10 (author)
Wed Oct 14 14:20:00 -0700 2009
commit  85023dc2d9418b6f97470b89782a97579cc9f9bc
tree    f155d8f92ce5a9980a47bea24b35a77c0875521d
parent  7dca3fd74a7dbdbd85a4accd5c437c446713a53e
redmine_overhead / Rakefile
100755 36 lines (32 sloc) 1.418 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/usr/bin/env ruby
require 'redmine_plugin_support'
 
Dir[File.expand_path(File.dirname(__FILE__)) + "/lib/tasks/**/*.rake"].sort.each { |ext| load ext }
 
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