Skip to content

Commit 46a8057

Browse files
authored
Merge pull request #21 from easybroker/fix_multi_xml
Fix multi_xml
2 parents cdafae8 + 66c907d commit 46a8057

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# Changelog
2+
## V 0.6.14
3+
- Fix dependencies for ruby 2
4+
25
## V 0.6.13
36
- Update rexml from 3.2.9 to 3.3.2
47

Gemfile.lock

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
PATH
22
remote: .
33
specs:
4-
easy_meli (0.6.13)
4+
easy_meli (0.6.14)
55
httparty (~> 0.21)
6+
multi_xml (~> 0.6.0)
67
rexml (~> 3.3.2)
78

89
GEM
910
remote: https://rubygems.org/
1011
specs:
1112
addressable (2.8.0)
1213
public_suffix (>= 2.0.2, < 5.0)
13-
bigdecimal (3.1.8)
1414
coderay (1.1.2)
1515
crack (0.4.3)
1616
safe_yaml (~> 1.0.0)
@@ -24,8 +24,7 @@ GEM
2424
mini_mime (1.1.5)
2525
minitest (5.18.1)
2626
mocha (1.11.2)
27-
multi_xml (0.7.1)
28-
bigdecimal (~> 3.1)
27+
multi_xml (0.6.0)
2928
pry (0.13.1)
3029
coderay (~> 1.1)
3130
method_source (~> 1.0)

easy_meli.gemspec

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ Gem::Specification.new do |spec|
3131

3232
spec.add_dependency "httparty", "~> 0.21"
3333
spec.add_dependency "rexml", "~> 3.3.2"
34+
spec.add_dependency "multi_xml", "~> 0.6.0"
3435

3536
spec.add_development_dependency "bundler", "~> 2.3.6"
3637
spec.add_development_dependency "rake", "~> 13.0"

lib/easy_meli/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module EasyMeli
2-
VERSION = "0.6.13"
2+
VERSION = "0.6.14"
33
end

0 commit comments

Comments
 (0)