-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathoanda_api.gemspec
More file actions
32 lines (27 loc) · 1.33 KB
/
oanda_api.gemspec
File metadata and controls
32 lines (27 loc) · 1.33 KB
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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'oanda_api/version'
require 'time'
Gem::Specification.new do |s|
s.name = "oanda_api"
s.authors = ["Dean Missikowski"]
s.email = "dmissikowski@gmail.com"
s.homepage = "http://github.com/nukeproof/oanda_api"
s.summary = %q{ A ruby client for the Oanda REST API. }
s.description = %q{ A simple ruby client that supports all of the Oanda REST API methods. Uses Oanda recommended best practices including persistent connections, compression, request rate throttling, SSL certificate verification.}
s.version = OandaAPI::VERSION
s.date = Date.today.to_s
s.license = "MIT"
s.required_ruby_version = ">= 2.0.0"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.require_paths = ["lib"]
s.add_dependency "httparty", "~> 0.13", ">=0.13.5"
s.add_dependency "persistent_httparty", "~> 0.1"
s.add_dependency "http-exceptions", "~> 0.0"
s.add_development_dependency "rspec", "~> 3.2"
s.add_development_dependency "vcr", "~> 4.0"
s.add_development_dependency "webmock", "~> 3.2.1"
s.add_development_dependency "yard", "~> 0.9"
end