-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgithubris.gemspec
More file actions
24 lines (21 loc) · 898 Bytes
/
githubris.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 -*-
$:.push File.expand_path("../lib", __FILE__)
require "githubris/version"
Gem::Specification.new do |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