public
Description: Budget is a plugin to manage the set of deliverables for each project, automatically calculating key performance indicators.
Homepage: https://projects.littlestreamsoftware.com/projects/show/redmine-budget
Clone URL: git://github.com/edavis10/redmine-budget-plugin.git
edavis10 (author)
Tue Oct 13 21:23:08 -0700 2009
commit  aa541f42bb77e70f1b1785fa121e71b4afaf3345
tree    abef1235a97baeafb74cc923fbf6371dc14f78bf
parent  19968fa0b8d1a653dd899696938cfdb3bca3afde
100755 36 lines (32 sloc) 1.456 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 = 'budget_plugin'
  plugin.default_task = [:spec]
end
 
begin
  require 'jeweler'
  Jeweler::Tasks.new do |s|
    s.name = "budget_plugin"
    s.summary = "A plugin for Redmine to manage the set of deliverables for each project, automatically calculating key performance indicators."
    s.email = "edavis@littlestreamsoftware.com"
    s.homepage = "https://projects.littlestreamsoftware.com/projects/redmine-budget"
    s.description = "A plugin for Redmine to manage the set of deliverables for each project, automatically calculating key performance indicators."
    s.authors = ["Eric Davis"]
    s.rubyforge_project = "budget_plugin" # 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