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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 895ede3c8740f60d446789c78936ce3b57520b44
4
- data.tar.gz: 1656c6021eb792b24ec0f8f004dec60f908d5dd2
3
+ metadata.gz: 878d9236c1b27b3002837bd54861020d3b64ea48
4
+ data.tar.gz: 78d7ed60b12898c1e3f67e6c82796578cef72d66
5
5
  SHA512:
6
- metadata.gz: 2577d9f7a3c9a4e44c22134a3642486f8d4a94d66df5aa57a68c4fffe7707f7369d8e6b6b1048176f29923e66d8513541203468488b6699ab16eb7ebcaa7d182
7
- data.tar.gz: 8dabf1dd99dfa19fce1aedffdc943123259a2f61392866fc33ebf4eb9c0afc7e7430a35b9a546f8ef50d9a700a2b899b6927e673c04af214557bb94a758a8923
6
+ metadata.gz: 62351ec69ce656e9c5c270a598eef8acc4eee888eb1439b5462b8daeee1f6a2d9c0debf848cac9bf46ea03f9a5273ababe7caf132f8f89b2d64109d3fc86778e
7
+ data.tar.gz: 66788082097a9fb23eb5c85874f3cb6af721fc2317268cd3a301a96b248649dcd7c6be6d52b71914f0d57f3ac3ae6f2c91f6624d571c1c9a2e05eaff241c2e6d
data/.gitignore CHANGED
@@ -1,2 +1,3 @@
1
1
  .byebug_history
2
2
  oanda_api_v20-*.gem
3
+ Gemfile.lock
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Change Log
2
2
 
3
+ ## 0.0.5
4
+ #### 2016-08-16
5
+ * Added the Gemfile to allow the 'bundle install' command to work.
6
+
3
7
  ## 0.0.4
4
8
  #### 2016-08-16
5
9
  * Limit Oanda API requests to 30 per second.
data/Gemfile ADDED
@@ -0,0 +1,2 @@
1
+ source 'https://rubygems.org'
2
+ gemspec
@@ -1,3 +1,3 @@
1
1
  module OandaApiV20
2
- VERSION = '0.0.4'
2
+ VERSION = '0.0.5'
3
3
  end
@@ -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 = '2016-06-16'
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
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-06-16 00:00:00.000000000 Z
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