forked from modeset/appfigures
-
Notifications
You must be signed in to change notification settings - Fork 2
/
appfigures.gemspec
23 lines (21 loc) · 971 Bytes
/
appfigures.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/appfigures/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Jay Zeschin"]
gem.email = ["[email protected]"]
gem.description = %q{Gem wrapper for the AppFigures API}
gem.summary = %q{Faraday-based wrapper for the AppFigures REST API}
gem.homepage = "https://github.com/modeset/appfigures"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "appfigures"
gem.require_paths = ["lib"]
gem.version = Appfigures::VERSION
gem.add_runtime_dependency 'faraday'
gem.add_runtime_dependency 'faraday_middleware'
gem.add_runtime_dependency 'multi_json'
gem.add_runtime_dependency 'hashie'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'rspec', '>= 2.11'
end