-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathgas.gemspec
29 lines (22 loc) · 1.01 KB
/
gas.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
26
27
28
lib = File.expand_path("../lib", __FILE__)
$:.unshift lib unless $:.include? lib
require "gas/version"
Gem::Specification.new do |s|
s.name = "gas"
s.version = Gas::VERSION
s.authors = "Fredrik Wallgren"
s.email = "[email protected]"
s.homepage = "http://walle.github.com/gas"
s.summary = "Manage your git author accounts"
s.description = "Gas is a utility to keep track of your git authors. Add them to gas and switch at any time. Great if you use one author at work and one at home or if you are doing pair programming. Is extendable with own commands."
s.rubyforge_project = s.name
s.rdoc_options = ["--charset=UTF-8"]
s.extra_rdoc_files = %w[README.md LICENSE]
s.add_development_dependency 'rake'
s.add_development_dependency 'bundler'
s.add_development_dependency 'rspec'
s.add_development_dependency 'rr'
s.files = Dir.glob("{bin,lib,spec,config}/**/*") + ['LICENSE', 'README.md']
s.executables = Dir.glob("bin/*").map { |file| file.split('/').last }
s.require_path = ['lib']
end