Sha256: eeaac315753eda355afee43941382cf9323d0c82beb547ea71124bd3f383b9a6

Contents?: true

Size: 1.59 KB

Versions: 10

Compression:

Stored size: 1.59 KB

Contents

require 'rubygems'
require 'bundler'
begin
  Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
  $stderr.puts e.message
  $stderr.puts "Run `bundle install` to install missing gems"
  exit e.status_code
end
require 'rake'

require 'jeweler'
Jeweler::Tasks.new do |gem|
  # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
  gem.name = "git-redmine-commit"
  gem.homepage = "http://github.com/robin/git-redmine-commit"
  gem.license = "MIT"
  gem.summary = %Q{git commit with redmine issue id}
  gem.description = %Q{With this tool, you can do a git commit with a redmine issue id. The message of the commit is filled with the title of the issue automatically.}
  gem.email = "iamawalrus@gmail.com"
  gem.authors = ["Robin Lu"]
  # Include your dependencies below. Runtime dependencies are required when using your gem,
  # and development dependencies are only needed for development (ie running rake tasks, tests, etc)
  #  gem.add_runtime_dependency 'jabber4r', '> 0.1'
  #  gem.add_development_dependency 'rspec', '> 1.2.3'
  gem.add_dependency 'xml-simple', ">= 1.0.12"
end
Jeweler::RubygemsDotOrgTasks.new

require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
  test.libs << 'lib' << 'test'
  test.pattern = 'test/**/test_*.rb'
  test.verbose = true
end

task :default => :test

require 'rake/rdoctask'
Rake::RDocTask.new do |rdoc|
  version = File.exist?('VERSION') ? File.read('VERSION') : ""

  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "git-redmine-commit #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
git-redmine-commit-0.8.2 Rakefile
git-redmine-commit-0.8.1 Rakefile
git-redmine-commit-0.8.0 Rakefile
git-redmine-commit-0.7.0 Rakefile
git-redmine-commit-0.6.0 Rakefile
git-redmine-commit-0.5.0 Rakefile
git-redmine-commit-0.4.0 Rakefile
git-redmine-commit-0.3.0 Rakefile
git-redmine-commit-0.2.0 Rakefile
git-redmine-commit-0.1.0 Rakefile