-
Notifications
You must be signed in to change notification settings - Fork 38
/
git-smart.gemspec
25 lines (20 loc) · 950 Bytes
/
git-smart.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
Gem::Specification.new do |s|
s.name = %q{git-smart}
s.version = "0.1.10"
s.authors = ["Glen Maddern"]
s.email = %q{[email protected]}
s.date = %q{2011-01-06}
s.summary = %q{Add some smarts to your git workflow}
s.description = %q{Installs some additional 'smart' git commands, like `git smart-pull`.}
s.homepage = %q{http://github.com/geelen/git-smart}
s.licenses = ["MIT"]
s.require_paths = ["lib"]
s.extra_rdoc_files = %w[LICENSE.txt README.md]
s.executables = `git ls-files -- bin`.split("\n").map{|f| File.basename(f) }
s.files = `git ls-files -- {lib,docs}`.split("\n") + %w[Gemfile Gemfile.lock LICENSE.txt README.md Rakefile VERSION]
s.test_files = `git ls-files -- spec`.split("\n")
s.add_runtime_dependency(%q<colorize>, [">= 0"])
s.add_development_dependency(%q<rspec>, [">= 2.7.0"])
s.add_development_dependency(%q<rcov>, [">= 0"])
s.add_development_dependency(%q<rocco>, [">= 0"])
end