- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgithubris.gemspec
More file actions
Latest commit
24 lines (21 loc) · 898 Bytes
/
Copy pathgithubris.gemspec
File metadata and controls
24 lines (21 loc) · 898 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# -*- encoding: utf-8 -*-
$:.pushFile.expand_path("../lib",__FILE__)
require"githubris/version"
Gem::Specification.newdo |s|
s.name="githubris"
s.version=Githubris::VERSION
s.authors=["Isaac Sanders"]
s.email=["isaac@isaacbfsanders.com"]
s.homepage="http://isaacbfsanders.com/githubris"
s.summary=%q{Githubris is meant to make Github API interaction a breeze.}
s.description=%q{Githubris is meant to make Github API interaction a breeze.}
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('httparty')
s.add_dependency('faraday')
s.add_dependency('multi_json')
s.add_dependency('json_pure')
s.add_dependency('addressable')
end