dolarblue 0.5.1 → 0.5.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.ruby-version +1 -1
- data/.travis.yml +6 -5
- data/CHANGELOG.md +16 -1
- data/Gemfile +11 -8
- data/Gemfile.lock +65 -77
- data/LICENSE.md +1 -20
- data/README.md +11 -6
- data/config/xpaths.yml +1 -1
- data/dolarblue.gemspec +8 -8
- data/lib/dolarblue/configuration.rb +1 -1
- data/lib/dolarblue/version.rb +1 -1
- data/spec/dolarblue_spec.rb +1 -1
- data/spec/spec_helper.rb +0 -1
- metadata +28 -28
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: db002622f68bc52f16d1e51c7a95131948041acf
|
4
|
+
data.tar.gz: b5fb00c8b9b636408d233600f15e6e312a9b0b21
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 80f86de7d93a84d545667232dcaff593c89dbd8984c87dd539ed356ca5919c7ce61e9345363bf3b2c92d7f80f5503ee2ed36aa8f4e668f25f775fcbea12498f8
|
7
|
+
data.tar.gz: 66c404455e54522d787164c76e4b968e96317518c54372634f7e8c553b90eafb5fa0501a145d585831d3928893c47aae1e9b5d9a027d38444ec76ba70379701c
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.
|
1
|
+
2.2.2
|
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
## [In git](https://github.com/elgalu/dolarblue/compare/v0.5.
|
1
|
+
## [In git](https://github.com/elgalu/dolarblue/compare/v0.5.2...HEAD)
|
2
2
|
|
3
3
|
### New Features
|
4
4
|
* n/a
|
@@ -9,6 +9,20 @@
|
|
9
9
|
### Chores
|
10
10
|
* n/a
|
11
11
|
|
12
|
+
## [v0.5.2](https://github.com/elgalu/dolarblue/tree/v0.5.2)
|
13
|
+
|
14
|
+
### New Features
|
15
|
+
* n/a
|
16
|
+
|
17
|
+
### Bug Fixes
|
18
|
+
* Fix source url since they added www. (Leo Gallucci)
|
19
|
+
* Move license from MIT to more permissive Apache 2.0
|
20
|
+
|
21
|
+
### Chores
|
22
|
+
* Upgrade from rspec 2 to rspec 3. (Leo Gallucci)
|
23
|
+
* Upgrade Ruby version to 2.2.2.
|
24
|
+
* Travis fixes. (Leo Gallucci)
|
25
|
+
|
12
26
|
## [v0.5.1](https://github.com/elgalu/dolarblue/tree/v0.5.1)
|
13
27
|
|
14
28
|
### New Features
|
@@ -19,6 +33,7 @@
|
|
19
33
|
|
20
34
|
### Chores
|
21
35
|
* Upgraded gem dependencies and latest Ruby version. (Leo Gallucci)
|
36
|
+
* Fix `gem build dolarblue.gemspec` warnings. (Leo Gallucci)
|
22
37
|
|
23
38
|
## [v0.5.0](https://github.com/elgalu/dolarblue/tree/v0.5.0)
|
24
39
|
|
data/Gemfile
CHANGED
@@ -3,22 +3,25 @@ source 'https://rubygems.org'
|
|
3
3
|
# Specify your gem's dependencies in dolarblue.gemspec
|
4
4
|
gemspec
|
5
5
|
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
6
|
+
# installing pry doesn't work anymore (ruby 2.2.2)
|
7
|
+
# group :development do
|
8
|
+
# gem 'pry' # core replacement for irb
|
9
|
+
# gem 'pry-doc' # gives MRI core documentation and source code
|
10
|
+
# end
|
10
11
|
|
11
12
|
unless %w(jruby rbx).include? RUBY_ENGINE
|
12
13
|
group :test do
|
13
14
|
# Coverage reports only for MRI
|
14
|
-
|
15
|
-
gem '
|
15
|
+
# https://github.com/colszowka/simplecov/releases
|
16
|
+
gem 'simplecov', '>= 0.10.0'
|
17
|
+
# https://github.com/lemurheavy/coveralls-ruby/releases
|
18
|
+
gem 'coveralls', '>= 0.7.12'
|
16
19
|
end
|
17
20
|
|
18
21
|
group :development do
|
19
22
|
gem 'redcarpet', '>= 3.1.1' # redcarpet doesn't currently works with jruby nor rbx. kramdown is a possible alternative
|
20
23
|
gem 'yard', '>= 0.8.7.4' # no need to generate yard docs from jruby nor rbx
|
21
|
-
gem 'pry-stack_explorer' # adds command `show-stack`
|
22
|
-
gem 'pry-debugger' # adds commands `continue, step, next, finish`
|
24
|
+
# gem 'pry-stack_explorer' # adds command `show-stack`
|
25
|
+
# gem 'pry-debugger' # adds commands `continue, step, next, finish`
|
23
26
|
end
|
24
27
|
end
|
data/Gemfile.lock
CHANGED
@@ -1,101 +1,89 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
dolarblue (0.5.
|
5
|
-
configatron (~> 3.
|
6
|
-
nokogiri (~> 1.6, >= 1.6.
|
4
|
+
dolarblue (0.5.2)
|
5
|
+
configatron (~> 3.2, >= 3.2.0)
|
6
|
+
nokogiri (~> 1.6, >= 1.6.2)
|
7
7
|
|
8
8
|
GEM
|
9
9
|
remote: https://rubygems.org/
|
10
10
|
specs:
|
11
|
-
addressable (2.3.
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
rest-client
|
20
|
-
simplecov (>= 0.7)
|
21
|
-
term-ansicolor
|
22
|
-
thor
|
11
|
+
addressable (2.3.8)
|
12
|
+
configatron (3.2.0)
|
13
|
+
coveralls (0.8.2)
|
14
|
+
json (~> 1.8)
|
15
|
+
rest-client (>= 1.6.8, < 2)
|
16
|
+
simplecov (~> 0.10.0)
|
17
|
+
term-ansicolor (~> 1.3)
|
18
|
+
thor (~> 0.19.1)
|
23
19
|
crack (0.4.2)
|
24
20
|
safe_yaml (~> 1.0.0)
|
25
|
-
debug_inspector (0.0.2)
|
26
|
-
debugger (1.6.6)
|
27
|
-
columnize (>= 0.3.1)
|
28
|
-
debugger-linecache (~> 1.2.0)
|
29
|
-
debugger-ruby_core_source (~> 1.3.2)
|
30
|
-
debugger-linecache (1.2.0)
|
31
|
-
debugger-ruby_core_source (1.3.2)
|
32
21
|
diff-lcs (1.2.5)
|
33
|
-
docile (1.1.
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
rspec-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
rspec-
|
63
|
-
diff-lcs (>= 1.1.3, < 2.0)
|
64
|
-
rspec-mocks (2.14.6)
|
22
|
+
docile (1.1.5)
|
23
|
+
domain_name (0.5.24)
|
24
|
+
unf (>= 0.0.5, < 1.0.0)
|
25
|
+
http-cookie (1.0.2)
|
26
|
+
domain_name (~> 0.5)
|
27
|
+
json (1.8.3)
|
28
|
+
mime-types (2.6.1)
|
29
|
+
mini_portile (0.6.2)
|
30
|
+
netrc (0.10.3)
|
31
|
+
nokogiri (1.6.6.2)
|
32
|
+
mini_portile (~> 0.6.0)
|
33
|
+
rake (10.4.2)
|
34
|
+
redcarpet (3.3.2)
|
35
|
+
rest-client (1.8.0)
|
36
|
+
http-cookie (>= 1.0.2, < 2.0)
|
37
|
+
mime-types (>= 1.16, < 3.0)
|
38
|
+
netrc (~> 0.7)
|
39
|
+
rspec (3.3.0)
|
40
|
+
rspec-core (~> 3.3.0)
|
41
|
+
rspec-expectations (~> 3.3.0)
|
42
|
+
rspec-mocks (~> 3.3.0)
|
43
|
+
rspec-core (3.3.1)
|
44
|
+
rspec-support (~> 3.3.0)
|
45
|
+
rspec-expectations (3.3.0)
|
46
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
47
|
+
rspec-support (~> 3.3.0)
|
48
|
+
rspec-mocks (3.3.1)
|
49
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
50
|
+
rspec-support (~> 3.3.0)
|
51
|
+
rspec-support (3.3.0)
|
65
52
|
rubygems-tasks (0.2.4)
|
66
|
-
safe_yaml (1.0.
|
67
|
-
simplecov (0.
|
53
|
+
safe_yaml (1.0.4)
|
54
|
+
simplecov (0.10.0)
|
68
55
|
docile (~> 1.1.0)
|
69
|
-
|
70
|
-
simplecov-html (~> 0.
|
71
|
-
simplecov-html (0.
|
72
|
-
|
73
|
-
term-ansicolor (1.3.0)
|
56
|
+
json (~> 1.8)
|
57
|
+
simplecov-html (~> 0.10.0)
|
58
|
+
simplecov-html (0.10.0)
|
59
|
+
term-ansicolor (1.3.2)
|
74
60
|
tins (~> 1.0)
|
75
61
|
thor (0.19.1)
|
76
|
-
tins (1.
|
77
|
-
|
78
|
-
|
79
|
-
|
62
|
+
tins (1.5.4)
|
63
|
+
unf (0.1.4)
|
64
|
+
unf_ext
|
65
|
+
unf_ext (0.0.7.1)
|
66
|
+
vcr (2.9.3)
|
67
|
+
webmock (1.21.0)
|
68
|
+
addressable (>= 2.3.6)
|
80
69
|
crack (>= 0.3.2)
|
81
|
-
yard (0.8.7.
|
70
|
+
yard (0.8.7.6)
|
82
71
|
|
83
72
|
PLATFORMS
|
84
73
|
ruby
|
85
74
|
|
86
75
|
DEPENDENCIES
|
87
|
-
bundler (>= 1.
|
88
|
-
coveralls (>= 0.7.
|
76
|
+
bundler (~> 1.10, >= 1.10.5)
|
77
|
+
coveralls (>= 0.7.12)
|
89
78
|
dolarblue!
|
90
|
-
|
91
|
-
pry-debugger
|
92
|
-
pry-doc
|
93
|
-
pry-stack_explorer
|
94
|
-
rake
|
79
|
+
rake (~> 10.4, >= 10.4.2)
|
95
80
|
redcarpet (>= 3.1.1)
|
96
|
-
rspec (~>
|
81
|
+
rspec (~> 3.3, >= 3.3.0)
|
97
82
|
rubygems-tasks (~> 0.2, >= 0.2.4)
|
98
|
-
simplecov (>= 0.
|
99
|
-
vcr (~> 2.9, >= 2.9.
|
100
|
-
webmock (~> 1.
|
83
|
+
simplecov (>= 0.10.0)
|
84
|
+
vcr (~> 2.9, >= 2.9.3)
|
85
|
+
webmock (~> 1.21, >= 1.21.0)
|
101
86
|
yard (>= 0.8.7.4)
|
87
|
+
|
88
|
+
BUNDLED WITH
|
89
|
+
1.10.5
|
data/LICENSE.md
CHANGED
@@ -1,22 +1,3 @@
|
|
1
1
|
Copyright (c) 2014 Leo Gallucci
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
-
a copy of this software and associated documentation files (the
|
7
|
-
"Software"), to deal in the Software without restriction, including
|
8
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
-
permit persons to whom the Software is furnished to do so, subject to
|
11
|
-
the following conditions:
|
12
|
-
|
13
|
-
The above copyright notice and this permission notice shall be
|
14
|
-
included in all copies or substantial portions of the Software.
|
15
|
-
|
16
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
3
|
+
The project is made possible by volunteer contributors who have put in thousands of hours of their own time, and made the source code freely available under the [Apache 2.0 license](http://www.apache.org/licenses/LICENSE-2.0).
|
data/README.md
CHANGED
@@ -7,6 +7,8 @@
|
|
7
7
|
[![Coverage Status][CS img]][Coverage Status]
|
8
8
|
[![githalytics.com alpha](https://cruel-carlota.pagodabox.com/4a6a5549e2d3b59f3b59b12ab0ab70e9 "githalytics.com")](http://githalytics.com/elgalu/dolarblue)
|
9
9
|
|
10
|
+
**Update**: You may also be intersted in [codealchemist/hubot-dolar-blue][] and [matiu/dolar-blue][]
|
11
|
+
|
10
12
|
## Description
|
11
13
|
|
12
14
|
Query Argentine Peso vs US$ exchange values with particular interest in official vs. street (blue) reference prices.
|
@@ -30,15 +32,15 @@ Sample result:
|
|
30
32
|
Obtaining latest AR$ vs US$ exchange values...Parsing values...
|
31
33
|
Done: 2013-12-15 19:20:41 -0300
|
32
34
|
|
33
|
-
- Dollar Official....:
|
34
|
-
- Dollar Card........: n/a /
|
35
|
-
- Dollar Blue........:
|
35
|
+
- Dollar Official....: 9.09 / 9.14
|
36
|
+
- Dollar Card........: n/a / 12.33
|
37
|
+
- Dollar Blue........: 13.45 / 13.60
|
36
38
|
|
37
|
-
- Gap card.......blue:
|
38
|
-
- Gap official...blue:
|
39
|
+
- Gap card.......blue: 10%
|
40
|
+
- Gap official...blue: 49%
|
39
41
|
|
40
42
|
Information source:
|
41
|
-
http://ambito.com/economia/mercados/monedas/dolar/
|
43
|
+
http://www.ambito.com/economia/mercados/monedas/dolar/
|
42
44
|
|
43
45
|
## Contributing
|
44
46
|
|
@@ -84,3 +86,6 @@ Released under the MIT License. See the [LICENSE][] file for further details.
|
|
84
86
|
|
85
87
|
[blue]: http://latino.foxnews.com/latino/news/2012/05/19/argentina-currency-black-market-expands/
|
86
88
|
[real value]: http://www.buenosairesherald.com/tags/dollar
|
89
|
+
|
90
|
+
[codealchemist/hubot-dolar-blue]: https://github.com/codealchemist/hubot-dolar-blue
|
91
|
+
[matiu/dolar-blue]: https://github.com/matiu/dolar-blue
|
data/config/xpaths.yml
CHANGED
data/dolarblue.gemspec
CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
|
|
10
10
|
spec.summary = %q{Query Argentine Peso vs US$ exchange values with particular interest in official vs. street (blue) reference prices.}
|
11
11
|
spec.description = 'Desc: ' + spec.summary
|
12
12
|
|
13
|
-
spec.required_ruby_version = '>=
|
13
|
+
spec.required_ruby_version = '>= 2.2.2'
|
14
14
|
spec.required_rubygems_version = '>= 1.8.25'
|
15
15
|
|
16
16
|
spec.license = 'MIT'
|
@@ -24,19 +24,19 @@ Gem::Specification.new do |spec|
|
|
24
24
|
spec.executables = spec.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
25
25
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
26
26
|
|
27
|
-
spec.add_runtime_dependency 'configatron', '~> 3.
|
28
|
-
spec.add_runtime_dependency 'nokogiri', '~> 1.6', '>= 1.6.
|
27
|
+
spec.add_runtime_dependency 'configatron', '~> 3.2', '>= 3.2.0'
|
28
|
+
spec.add_runtime_dependency 'nokogiri', '~> 1.6', '>= 1.6.2'
|
29
29
|
|
30
30
|
if RUBY_ENGINE == 'rbx'
|
31
31
|
spec.add_runtime_dependency 'rubysl'
|
32
32
|
spec.add_runtime_dependency 'racc' # Solves https://github.com/rubinius/rubinius/issues/2632#issuecomment-26954565
|
33
33
|
end
|
34
34
|
|
35
|
-
spec.add_development_dependency 'bundler', '~> 1.
|
36
|
-
spec.add_development_dependency 'rake', '~> 10.
|
37
|
-
spec.add_development_dependency 'rspec', '~>
|
38
|
-
spec.add_development_dependency 'vcr', '~> 2.9', '>= 2.9.
|
39
|
-
spec.add_development_dependency 'webmock', '~> 1.
|
35
|
+
spec.add_development_dependency 'bundler', '~> 1.10', '>= 1.10.5'
|
36
|
+
spec.add_development_dependency 'rake', '~> 10.4', '>= 10.4.2'
|
37
|
+
spec.add_development_dependency 'rspec', '~> 3.3', '>= 3.3.0'
|
38
|
+
spec.add_development_dependency 'vcr', '~> 2.9', '>= 2.9.3'
|
39
|
+
spec.add_development_dependency 'webmock', '~> 1.21', '>= 1.21.0'
|
40
40
|
spec.add_development_dependency 'rubygems-tasks', '~> 0.2', '>= 0.2.4'
|
41
41
|
|
42
42
|
end
|
@@ -12,7 +12,7 @@ class Dolarblue
|
|
12
12
|
#
|
13
13
|
# @example Usage
|
14
14
|
# conf = Configuration.instance.defaults
|
15
|
-
# conf.base_url #=> "http://ambito.com/economia/mercados/monedas/dolar/"
|
15
|
+
# conf.base_url #=> "http://www.ambito.com/economia/mercados/monedas/dolar/"
|
16
16
|
# conf.blue.buy.xpath #=> "//*[@id=\"contenido\"]/div[1]/div[2]/div/div/div[2]/big"
|
17
17
|
#
|
18
18
|
# @return [Configatron::Store] the magic configuration instance with hash and dot '.' indifferent access
|
data/lib/dolarblue/version.rb
CHANGED
data/spec/dolarblue_spec.rb
CHANGED
@@ -34,7 +34,7 @@ describe Dolarblue do
|
|
34
34
|
|
35
35
|
it 'should print out status information about querying base_url and parsing data' do
|
36
36
|
(CLI_MATCHERS).each do |regex|
|
37
|
-
$stdout.
|
37
|
+
expect($stdout).to receive(:print).with(regex)
|
38
38
|
end
|
39
39
|
load path
|
40
40
|
end
|
data/spec/spec_helper.rb
CHANGED
@@ -14,7 +14,6 @@ require 'dolarblue'
|
|
14
14
|
# Require this file using `require "spec_helper"` within each of your specs
|
15
15
|
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
|
16
16
|
RSpec.configure do |config|
|
17
|
-
config.treat_symbols_as_metadata_keys_with_true_values = true
|
18
17
|
config.run_all_when_everything_filtered = true
|
19
18
|
config.filter_run :focus
|
20
19
|
config.order = 'random' # Run specs in random order to surface order dependencies.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dolarblue
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Leo Gallucci
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2015-07-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: configatron
|
@@ -16,20 +16,20 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '3.
|
19
|
+
version: '3.2'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.2.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
26
26
|
requirements:
|
27
27
|
- - "~>"
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: '3.
|
29
|
+
version: '3.2'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.2.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: nokogiri
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -39,7 +39,7 @@ dependencies:
|
|
39
39
|
version: '1.6'
|
40
40
|
- - ">="
|
41
41
|
- !ruby/object:Gem::Version
|
42
|
-
version: 1.6.
|
42
|
+
version: 1.6.2
|
43
43
|
type: :runtime
|
44
44
|
prerelease: false
|
45
45
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -49,67 +49,67 @@ dependencies:
|
|
49
49
|
version: '1.6'
|
50
50
|
- - ">="
|
51
51
|
- !ruby/object:Gem::Version
|
52
|
-
version: 1.6.
|
52
|
+
version: 1.6.2
|
53
53
|
- !ruby/object:Gem::Dependency
|
54
54
|
name: bundler
|
55
55
|
requirement: !ruby/object:Gem::Requirement
|
56
56
|
requirements:
|
57
57
|
- - "~>"
|
58
58
|
- !ruby/object:Gem::Version
|
59
|
-
version: '1.
|
59
|
+
version: '1.10'
|
60
60
|
- - ">="
|
61
61
|
- !ruby/object:Gem::Version
|
62
|
-
version: 1.
|
62
|
+
version: 1.10.5
|
63
63
|
type: :development
|
64
64
|
prerelease: false
|
65
65
|
version_requirements: !ruby/object:Gem::Requirement
|
66
66
|
requirements:
|
67
67
|
- - "~>"
|
68
68
|
- !ruby/object:Gem::Version
|
69
|
-
version: '1.
|
69
|
+
version: '1.10'
|
70
70
|
- - ">="
|
71
71
|
- !ruby/object:Gem::Version
|
72
|
-
version: 1.
|
72
|
+
version: 1.10.5
|
73
73
|
- !ruby/object:Gem::Dependency
|
74
74
|
name: rake
|
75
75
|
requirement: !ruby/object:Gem::Requirement
|
76
76
|
requirements:
|
77
77
|
- - "~>"
|
78
78
|
- !ruby/object:Gem::Version
|
79
|
-
version: '10.
|
79
|
+
version: '10.4'
|
80
80
|
- - ">="
|
81
81
|
- !ruby/object:Gem::Version
|
82
|
-
version: 10.
|
82
|
+
version: 10.4.2
|
83
83
|
type: :development
|
84
84
|
prerelease: false
|
85
85
|
version_requirements: !ruby/object:Gem::Requirement
|
86
86
|
requirements:
|
87
87
|
- - "~>"
|
88
88
|
- !ruby/object:Gem::Version
|
89
|
-
version: '10.
|
89
|
+
version: '10.4'
|
90
90
|
- - ">="
|
91
91
|
- !ruby/object:Gem::Version
|
92
|
-
version: 10.
|
92
|
+
version: 10.4.2
|
93
93
|
- !ruby/object:Gem::Dependency
|
94
94
|
name: rspec
|
95
95
|
requirement: !ruby/object:Gem::Requirement
|
96
96
|
requirements:
|
97
97
|
- - "~>"
|
98
98
|
- !ruby/object:Gem::Version
|
99
|
-
version: '
|
99
|
+
version: '3.3'
|
100
100
|
- - ">="
|
101
101
|
- !ruby/object:Gem::Version
|
102
|
-
version:
|
102
|
+
version: 3.3.0
|
103
103
|
type: :development
|
104
104
|
prerelease: false
|
105
105
|
version_requirements: !ruby/object:Gem::Requirement
|
106
106
|
requirements:
|
107
107
|
- - "~>"
|
108
108
|
- !ruby/object:Gem::Version
|
109
|
-
version: '
|
109
|
+
version: '3.3'
|
110
110
|
- - ">="
|
111
111
|
- !ruby/object:Gem::Version
|
112
|
-
version:
|
112
|
+
version: 3.3.0
|
113
113
|
- !ruby/object:Gem::Dependency
|
114
114
|
name: vcr
|
115
115
|
requirement: !ruby/object:Gem::Requirement
|
@@ -119,7 +119,7 @@ dependencies:
|
|
119
119
|
version: '2.9'
|
120
120
|
- - ">="
|
121
121
|
- !ruby/object:Gem::Version
|
122
|
-
version: 2.9.
|
122
|
+
version: 2.9.3
|
123
123
|
type: :development
|
124
124
|
prerelease: false
|
125
125
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -129,27 +129,27 @@ dependencies:
|
|
129
129
|
version: '2.9'
|
130
130
|
- - ">="
|
131
131
|
- !ruby/object:Gem::Version
|
132
|
-
version: 2.9.
|
132
|
+
version: 2.9.3
|
133
133
|
- !ruby/object:Gem::Dependency
|
134
134
|
name: webmock
|
135
135
|
requirement: !ruby/object:Gem::Requirement
|
136
136
|
requirements:
|
137
137
|
- - "~>"
|
138
138
|
- !ruby/object:Gem::Version
|
139
|
-
version: '1.
|
139
|
+
version: '1.21'
|
140
140
|
- - ">="
|
141
141
|
- !ruby/object:Gem::Version
|
142
|
-
version: 1.
|
142
|
+
version: 1.21.0
|
143
143
|
type: :development
|
144
144
|
prerelease: false
|
145
145
|
version_requirements: !ruby/object:Gem::Requirement
|
146
146
|
requirements:
|
147
147
|
- - "~>"
|
148
148
|
- !ruby/object:Gem::Version
|
149
|
-
version: '1.
|
149
|
+
version: '1.21'
|
150
150
|
- - ">="
|
151
151
|
- !ruby/object:Gem::Version
|
152
|
-
version: 1.
|
152
|
+
version: 1.21.0
|
153
153
|
- !ruby/object:Gem::Dependency
|
154
154
|
name: rubygems-tasks
|
155
155
|
requirement: !ruby/object:Gem::Requirement
|
@@ -221,7 +221,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
221
221
|
requirements:
|
222
222
|
- - ">="
|
223
223
|
- !ruby/object:Gem::Version
|
224
|
-
version:
|
224
|
+
version: 2.2.2
|
225
225
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
226
226
|
requirements:
|
227
227
|
- - ">="
|
@@ -229,7 +229,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
229
229
|
version: 1.8.25
|
230
230
|
requirements: []
|
231
231
|
rubyforge_project:
|
232
|
-
rubygems_version: 2.
|
232
|
+
rubygems_version: 2.4.6
|
233
233
|
signing_key:
|
234
234
|
specification_version: 4
|
235
235
|
summary: Query Argentine Peso vs US$ exchange values with particular interest in official
|