diff --git a/Rakefile b/Rakefile index e4984b3..f24e346 100755 --- a/Rakefile +++ b/Rakefile @@ -1,104 +1,9 @@ #!/usr/bin/env ruby -require "fileutils" -require 'rubygems' -gem 'rspec' -gem 'rspec-rails' +require 'redmine_plugin_support' Dir[File.expand_path(File.dirname(__FILE__)) + "/lib/tasks/**/*.rake"].sort.each { |ext| load ext } -# Modifided from the RSpec on Rails plugins -PLUGIN_ROOT = File.expand_path(File.dirname(__FILE__)) - -# Allows loading of an environment config based on the environment -REDMINE_ROOT = ENV["REDMINE_ROOT"] || File.dirname(__FILE__) + "/../../.." -REDMINE_APP = File.expand_path(REDMINE_ROOT + '/app') -REDMINE_LIB = File.expand_path(REDMINE_ROOT + '/lib') - -require 'rake' -require 'rake/clean' -require 'rake/rdoctask' -require 'spec/rake/spectask' - -PROJECT_NAME = 'budget_plugin' -ZIP_FILE = PROJECT_NAME + ".zip" -CLEAN.include('**/semantic.cache', ZIP_FILE) - -# No Database needed -spec_prereq = :noop -task :noop do +RedminePluginSupport::Base.setup do |plugin| + plugin.project_name = 'budget_plugin' + plugin.default_task = [:spec] end - -task :default => :spec -task :stats => "spec:statsetup" - -desc "Run all specs in spec directory (excluding plugin specs)" -Spec::Rake::SpecTask.new(:spec => spec_prereq) do |t| - t.spec_opts = ['--options', "\"#{PLUGIN_ROOT}/spec/spec.opts\""] - t.spec_files = FileList['spec/**/*_spec.rb'] -end - -namespace :spec do - desc "Run all specs in spec directory with RCov (excluding plugin specs)" - Spec::Rake::SpecTask.new(:rcov) do |t| - t.spec_opts = ['--options', "\"#{PLUGIN_ROOT}/spec/spec.opts\""] - t.spec_files = FileList['spec/**/*_spec.rb'] - t.rcov = true - t.rcov_opts << ["--rails", "--sort=coverage", "--exclude '/var/lib/gems,spec,#{REDMINE_APP},#{REDMINE_LIB}'"] - end - - desc "Print Specdoc for all specs (excluding plugin specs)" - Spec::Rake::SpecTask.new(:doc) do |t| - t.spec_opts = ["--format", "specdoc", "--dry-run"] - t.spec_files = FileList['spec/**/*_spec.rb'] - end - - desc "Print Specdoc for all specs as HTML (excluding plugin specs)" - Spec::Rake::SpecTask.new(:htmldoc) do |t| - t.spec_opts = ["--format", "html:doc/rspec_report.html", "--loadby", "mtime"] - t.spec_files = FileList['spec/**/*_spec.rb'] - end - - [:models, :controllers, :views, :helpers, :lib].each do |sub| - desc "Run the specs under spec/#{sub}" - Spec::Rake::SpecTask.new(sub => spec_prereq) do |t| - t.spec_opts = ['--options', "\"#{PLUGIN_ROOT}/spec/spec.opts\""] - t.spec_files = FileList["spec/#{sub}/**/*_spec.rb"] - end - end -end - -desc 'Generate documentation for the plugin.' -Rake::RDocTask.new(:rdoc) do |rdoc| - rdoc.rdoc_dir = 'doc' - rdoc.title = PROJECT_NAME - rdoc.options << '--line-numbers' << '--inline-source' - rdoc.rdoc_files.include('*.markdown') - rdoc.rdoc_files.include('*.rdoc') - rdoc.rdoc_files.include('*.txt') - rdoc.rdoc_files.include('lib/**/*.rb') - rdoc.rdoc_files.include('app/**/*.rb') -end - -desc 'Uploads project documentation' -task :upload_doc => ['spec:rcov', :doc, 'spec:htmldoc'] do |t| - # TODO: Get rdoc working without frames - `scp -r doc/ dev.littlestreamsoftware.com:/home/websites/projects.littlestreamsoftware.com/shared/embedded_docs/redmine-budget/doc` - `scp -r coverage/ dev.littlestreamsoftware.com:/home/websites/projects.littlestreamsoftware.com/shared/embedded_docs/redmine-budget/coverage` -end - -desc "Create release archives" -task :release => [:clean, :rdoc, 'release:zip', 'release:tarball'] - -namespace :release do - desc "Create a zip archive" - task :zip => [:clean] do - sh "git archive --format=zip --prefix=#{PLUGIN_NAME}/ HEAD > #{PLUGIN_NAME}.zip" - end - - desc "Create a tarball archive" - task :tarball => [:clean] do - sh "git archive --format=tar --prefix=#{PLUGIN_NAME}/ HEAD | gzip > #{PLUGIN_NAME}.tar.gz" - end -end - -