forked from wfarr/github-gem
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithub.gemspec
More file actions
Latest commit
30 lines (25 loc) · 1.17 KB
/
Copy pathgithub.gemspec
File metadata and controls
30 lines (25 loc) · 1.17 KB
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
# -*- encoding: utf-8 -*-
$:.pushFile.expand_path("../lib",__FILE__)
require"github/version"
Gem::Specification.newdo |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=["drnicwilliams@gmail.com"]
s.homepage="http://github/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-format","1.0.0"
s.add_dependency"highline","~> 1.5.1"
s.add_dependency"json","~> 1.4.6"
s.add_dependency"launchy","~> 0.3.7"
s.add_development_dependency"rake"
s.add_development_dependency"rspec","~>1.3.1"
s.add_development_dependency"activerecord","~>2.3.10"
end