Mercurial > hg > soundsoftware-site
diff .svn/pristine/c2/c277c75680e95fd8a5e6b96ba5aa137fbcbf5ef8.svn-base @ 1296:038ba2d95de8 redmine-2.2
Fix redmine-2.2 branch update (add missing svn files)
author | Chris Cannam |
---|---|
date | Fri, 14 Jun 2013 09:05:06 +0100 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.svn/pristine/c2/c277c75680e95fd8a5e6b96ba5aa137fbcbf5ef8.svn-base Fri Jun 14 09:05:06 2013 +0100 @@ -0,0 +1,28 @@ +# -*- encoding: utf-8 -*- +$LOAD_PATH.unshift File.expand_path("../lib", __FILE__) +require 'rubygems' +require 'bundler/setup' +require 'awesome_nested_set/version' + +require "rspec/core/rake_task" +RSpec::Core::RakeTask.new(:spec) + +task :default => :spec + +task :build do + system "gem build awesome_nested_set.gemspec" +end + +task :release => :build do + system "gem push awesome_nested_set-#{ActsAsGeocodable::VERSION}.gem" +end + +require 'rdoc/task' +desc 'Generate documentation for the awesome_nested_set plugin.' +Rake::RDocTask.new(:rdoc) do |rdoc| + rdoc.rdoc_dir = 'rdoc' + rdoc.title = 'AwesomeNestedSet' + rdoc.options << '--line-numbers' << '--inline-source' + rdoc.rdoc_files.include('README.rdoc') + rdoc.rdoc_files.include('lib/**/*.rb') +end