forked from historian/git_workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgit_workflow.gemspec
More file actions
23 lines (19 loc) · 824 Bytes
/
Copy pathgit_workflow.gemspec
File metadata and controls
23 lines (19 loc) · 824 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
require File.expand_path("../lib/git_workflow/version", __FILE__)
Gem::Specification.new do |s|
s.name = "git_workflow"
s.version = GitWorkflow::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Simon Menke"]
s.email = ["simon.menke@gmail.com"]
s.homepage = "http://rubygems.org/gems/git_workflow"
s.summary = "A workflow tool for Git"
s.description = "Better workflow support for Git"
s.required_rubygems_version = ">= 1.3.6"
s.rubyforge_project = "git_workflow"
s.add_runtime_dependency "opts", ">= 0.0.1"
s.add_development_dependency "bundler", ">= 1.0.0"
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
s.require_path = 'lib'
end