forex 0.4.1 → 0.4.2

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.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: forex
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.1
4
+ version: 0.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marcel Morgan
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-03-22 00:00:00.000000000 Z
11
+ date: 2018-07-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nokogiri
@@ -183,7 +183,6 @@ files:
183
183
  - features/tabular_rates.feature
184
184
  - forex.gemspec
185
185
  - lib/forex.rb
186
- - lib/forex/client.rb
187
186
  - lib/forex/tabular_rates.rb
188
187
  - lib/forex/trader.rb
189
188
  - lib/forex/traders/jm/bns.rb
@@ -236,7 +235,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
236
235
  version: '0'
237
236
  requirements: []
238
237
  rubyforge_project:
239
- rubygems_version: 2.4.5
238
+ rubygems_version: 2.7.4
240
239
  signing_key:
241
240
  specification_version: 4
242
241
  summary: Forex Rates for traders
@@ -1,13 +0,0 @@
1
- require 'net/http'
2
-
3
- module Forex
4
-
5
- class Client
6
- def get_response(endpoint)
7
- Net::HTTP.get_response(URI(endpoint)).tap do |response|
8
- raise "Received #{response.class} from #{endpoint}" unless response.is_a?(Net::HTTPSuccess)
9
- end
10
- end
11
- end
12
-
13
- end