Sha256: 72c561c6cf2bc992c9c63ea8ebf700923429c364afe61e86f0816cad8026cdac

Contents?: true

Size: 1.08 KB

Versions: 3

Compression:

Stored size: 1.08 KB

Contents

# encoding: utf-8

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 'juwelier'
Juwelier::Tasks.new do |gem|
  # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
  gem.name = "git-storyid"
  gem.executables = ['git-storyid']
  gem.homepage = "http://github.com/bogdan/git-storyid"
  gem.license = "MIT"
  gem.summary = %Q{Attach commits to pivotal stories}
  gem.description = %Q{Helps include pivotal story id and description in commit}
  gem.email = "agresso@gmail.com"
  gem.authors = ["Bogdan Gusiev"]
  # dependencies defined in Gemfile
end
Juwelier::RubygemsDotOrgTasks.new

require 'rspec/core'
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) do |spec|
  spec.pattern = FileList['spec/**/*_spec.rb']
end

RSpec::Core::RakeTask.new(:rcov) do |spec|
  spec.pattern = 'spec/**/*_spec.rb'
  spec.rcov = true
end

task :default => :spec

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
git-storyid-0.5.2 Rakefile
git-storyid-0.5.1 Rakefile
git-storyid-0.5.0 Rakefile