-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpogoplug.gemspec
28 lines (23 loc) · 929 Bytes
/
pogoplug.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'pogoplug/version'
Gem::Specification.new do |spec|
spec.name = "pogoplug"
spec.version = PogoPlug::VERSION
spec.authors = ["Travis Truman"]
spec.license = "MIT"
spec.homepage = "http://github.com/trumant/pogoplug"
spec.licenses = ["MIT"]
spec.summary = "A Ruby wrapper around the PogoPlug API"
spec.files = `git ls-files -z`.split("\x0")
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_dependency "faraday", ">= 0.9.0"
spec.add_dependency "faraday_middleware"
spec.add_dependency "faraday_curl", '>= 0.0.2'
spec.add_development_dependency "bundler", "~> 1.5"
['rake', 'rspec', 'guard-rspec', 'guard-bundler', 'pry'].each do |dep|
spec.add_development_dependency dep
end
end