oanda_api_v20 0.0.4 → 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/CHANGELOG.md +4 -0
- data/Gemfile +2 -0
- data/lib/oanda_api_v20/version.rb +1 -1
- data/oanda_api_v20.gemspec +2 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 878d9236c1b27b3002837bd54861020d3b64ea48
|
4
|
+
data.tar.gz: 78d7ed60b12898c1e3f67e6c82796578cef72d66
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 62351ec69ce656e9c5c270a598eef8acc4eee888eb1439b5462b8daeee1f6a2d9c0debf848cac9bf46ea03f9a5273ababe7caf132f8f89b2d64109d3fc86778e
|
7
|
+
data.tar.gz: 66788082097a9fb23eb5c85874f3cb6af721fc2317268cd3a301a96b248649dcd7c6be6d52b71914f0d57f3ac3ae6f2c91f6624d571c1c9a2e05eaff241c2e6d
|
data/.gitignore
CHANGED
data/CHANGELOG.md
CHANGED
data/Gemfile
ADDED
data/oanda_api_v20.gemspec
CHANGED
@@ -1,11 +1,12 @@
|
|
1
1
|
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
|
2
2
|
|
3
3
|
require 'oanda_api_v20/version'
|
4
|
+
require 'time'
|
4
5
|
|
5
6
|
Gem::Specification.new do |s|
|
6
7
|
s.name = 'oanda_api_v20'
|
7
8
|
s.version = OandaApiV20::VERSION
|
8
|
-
s.date =
|
9
|
+
s.date = Date.today.to_s
|
9
10
|
s.summary = %q{Ruby Oanda REST API V20}
|
10
11
|
s.description = %q{Ruby client that supports the Oanda REST API V20 methods.}
|
11
12
|
s.authors = ['Kobus Joubert']
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: oanda_api_v20
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kobus Joubert
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-08-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: httparty
|
@@ -46,6 +46,7 @@ extra_rdoc_files: []
|
|
46
46
|
files:
|
47
47
|
- ".gitignore"
|
48
48
|
- CHANGELOG.md
|
49
|
+
- Gemfile
|
49
50
|
- LICENSE
|
50
51
|
- README.md
|
51
52
|
- lib/oanda_api_v20.rb
|