-
Notifications
You must be signed in to change notification settings - Fork 5
/
api_hammer.gemspec
39 lines (37 loc) · 1.2 KB
/
api_hammer.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
32
33
34
35
36
37
38
39
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.any? { |lp| File.expand_path(lp) == File.expand_path(lib) }
require 'api_hammer/version'
Gem::Specification.new do |spec|
spec.name = 'api_hammer'
spec.version = ApiHammer::VERSION
spec.authors = ['Ethan']
spec.email = ['ethan@unth']
spec.summary = 'an API tool'
spec.description = 'actually a set of small API-related tools. very much unlike a hammer at all, which ' +
'is one large tool.'
spec.homepage = 'https://github.com/notEthan/api_hammer'
spec.license = 'MIT'
spec.files = [
*%w(
.yardopts
CHANGELOG.md
LICENSE.txt
README.md
api_hammer.gemspec
bin/hc
),
*Dir['lib/**/*'],
].reject { |f| File.lstat(f).ftype == 'directory' }
spec.bindir = 'bin'
spec.executables = ['hc']
spec.require_paths = ['lib']
spec.add_dependency 'rack'
spec.add_dependency 'faraday', '~> 1.0'
spec.add_dependency 'term-ansicolor'
spec.add_dependency 'json'
spec.add_dependency 'json_pure'
spec.add_dependency 'addressable'
spec.add_dependency 'coderay'
spec.add_dependency 'i18n'
end