-
Notifications
You must be signed in to change notification settings - Fork 29
/
expedia.gemspec
28 lines (23 loc) · 1.13 KB
/
expedia.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'expedia/version'
Gem::Specification.new do |gem|
gem.name = "expedia"
gem.version = Expedia::VERSION
gem.platform = Gem::Platform::RUBY
gem.authors = ["Zaid Akram"]
gem.email = ["[email protected]"]
gem.licenses = ["MIT"]
gem.description = "Expedia is a lightweight, flexible Ruby SDK for EAN. It allows read/write access to the EAN APIs."
gem.summary = "Expedia is a ruby wrapper for 'EAN (Expedia Affiliate Network)'"
gem.homepage = "https://github.com/zaidakram/expedia"
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.require_paths = ["lib"]
gem.add_runtime_dependency(%q<multi_json>, ["~> 1.3"])
gem.add_runtime_dependency(%q<faraday>, ["~> 0.8"])
gem.add_development_dependency(%q<rspec>, ["~> 2.8"])
gem.add_development_dependency(%q<rake>, ["~> 0.8"])
end