-
Notifications
You must be signed in to change notification settings - Fork 188
/
github.gemspec
31 lines (26 loc) · 1.22 KB
/
github.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
29
30
31
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "github/version"
Gem::Specification.new do |s|
s.name = "github"
s.version = GitHub::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Chris Wanstrath', 'Kevin Ballard', 'Scott Chacon', 'Dr Nic Williams']
s.email = ["[email protected]"]
s.homepage = "https://github.com/defunkt/github-gem"
s.summary = "The official `github` command line helper for simplifying your GitHub experience."
s.description = "The official `github` command line helper for simplifying your GitHub experience."
s.rubyforge_project = "github"
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"]
s.add_dependency "text-hyphen", "1.0.0"
s.add_dependency "text-format", "1.0.0"
s.add_dependency "highline", "~> 1.6"
s.add_dependency "json_pure", "~> 1.5.1"
s.add_dependency "launchy", "~> 2.0.2"
s.add_development_dependency "rake"
s.add_development_dependency "rspec", "~>1.3.1"
s.add_development_dependency "activerecord", "~>3.0.0"
end