-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrandomapi.gemspec
More file actions
23 lines (20 loc) · 889 Bytes
/
randomapi.gemspec
File metadata and controls
23 lines (20 loc) · 889 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'randomapi/version'
Gem::Specification.new do |spec|
spec.name = "randomapi"
spec.version = RandomApi::VERSION
spec.authors = ["Denis Kuznetsov"]
spec.email = ["denis@f7.ru"]
spec.summary = %q{Gets data from randomapi.com}
spec.description = %q{Gets data from randomapi.com}
spec.homepage = "https://github.com/byteg/randomapi-ruby"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0")
spec.require_paths = ["lib"]
spec.add_runtime_dependency('faraday', ['>= 0.7', '< 0.10'])
spec.add_runtime_dependency('faraday_middleware', ['>= 0.8', '< 0.10'])
spec.add_runtime_dependency('multi_json', '>= 1.0.3', '~> 1.0')
spec.add_runtime_dependency('hashie', '>= 0.4.0')
end