bterlson / redmine-status-updates

A plugin for Redmine that allows users to create little status updates on a per-project basis ala Twitter.

This URL has Read+Write access

bterlson (author)
Thu Aug 20 11:49:21 -0700 2009
commit  794d01d86380a65fe93a2a76d2f632713f2c3702
tree    f11b8197be897e5cf66c06d4e70f543ea1d0275e
parent  40de4fc20baed8bd35c43caf37024f1a928049fb
redmine-status-updates / Rakefile
100755 10 lines (7 sloc) 0.288 kb
1
2
3
4
5
6
7
8
9
10
#!/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_status'
  plugin.default_task = [:spec, :features]
end