Sha256: b9fee60b464ee5754ddf5e402ee69dcf1598c94a1e9cd2e5f0466f2fecb222ce
Contents?: true
Size: 1.05 KB
Versions: 6
Compression:
Stored size: 1.05 KB
Contents
# -*- encoding: utf-8 -*- lib = File.expand_path('../lib/', __FILE__) $:.unshift lib unless $:.include?(lib) require 'git_pivotal_tracker/version' Gem::Specification.new do |s| s.name = "git_pivotal_tracker" s.version = GitPivotalTracker::VERSION s.platform = Gem::Platform::RUBY s.authors = ["Ben Lindsey"] s.email = ["ben@carbonfive.com"] s.homepage = "https://github.com/blindsey/git_pivotal_tracker" s.summary = "A git workflow integrated with Pivotal Tracker" s.description = "provides a set of git workflow tools to start and finish Pivotal Tracker stories in topic branches" s.required_rubygems_version = ">= 1.3.6" s.add_development_dependency "rspec" s.add_development_dependency "webmock" s.add_runtime_dependency "grit" s.add_runtime_dependency "pivotal-tracker" s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.require_paths = ['lib'] end
Version data entries
6 entries across 6 versions & 1 rubygems