mercadolibre_api 0.3 → 0.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fe63e2e14d42068d0b573d5513c14f05cd8a398f5f8f692c1b069ce589e57fc6
4
- data.tar.gz: e8782119fe722381ff997169c82c59b11066318c2c39f725dd349cc05b808c31
3
+ metadata.gz: 22913c3ca1ebc0823e18b8bd652823ed4256f45695f2c3ba9d7f980dfa9be28b
4
+ data.tar.gz: 3b9b314b48f59bb5d813713f6084db0568575261915b30fb0ef747ed51af071d
5
5
  SHA512:
6
- metadata.gz: 9e652be3b93516c8d4c9b0f3a2132263f80af972e11bb40d3fd577cd94486f7e63323949340eaa556f36cfdffe84f49256246c4f3d730c75e06b268b608c3ca4
7
- data.tar.gz: 13607616acb33146030783965d4ec8c35c8db2da030795aee7042541114cf41a0bcf84192a8996cb077ec27fd9c917b732feb5d93de731662caa697fd70addd9
6
+ metadata.gz: '0499f8dc566f6c688369be710963e6a858fb70fc25677ae4b50025e8bf0522b4e25db8105a9f80ac3b95d4434f2f085df6d15bd9c827375eaf754c80380507e6'
7
+ data.tar.gz: ebb8f2c49820437bfa12baaeeecbc78dd40f2a5a3d3c8cc361c9f18d4fa5ed0f56f9f6682186128b1d8f68a8ce192ff6c91d73d9a8d2201ba73f74d2de6e8a4f
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- mercadolibre_api (0.2)
4
+ mercadolibre_api (0.4)
5
5
  active_interaction (~> 3.6)
6
6
 
7
7
  GEM
@@ -1,3 +1,3 @@
1
1
  module MercadolibreApi
2
- VERSION = '0.3'.freeze
2
+ VERSION = '0.4'.freeze
3
3
  end
@@ -1,5 +1,6 @@
1
1
  require 'mercadolibre_api/version'
2
2
 
3
+ Dir[File.join(__dir__, "/mercadolibre_api/**/*.rb")].each { |file| require file }
4
+
3
5
  module MercadolibreApi
4
- # Your code goes here...
5
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mercadolibre_api
3
3
  version: !ruby/object:Gem::Version
4
- version: '0.3'
4
+ version: '0.4'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pablo Gonzaga
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-10-03 00:00:00.000000000 Z
11
+ date: 2018-10-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: active_interaction
@@ -179,7 +179,6 @@ files:
179
179
  - lib/mercadolibre_api/products/queries/find.rb
180
180
  - lib/mercadolibre_api/products/queries/get_id.rb
181
181
  - lib/mercadolibre_api/products/queries/sold_quantity.rb
182
- - lib/mercadolibre_api/sellers/product.json.jbuilder
183
182
  - lib/mercadolibre_api/sellers/products/queries/most_sold.rb
184
183
  - lib/mercadolibre_api/sellers/queries/get_id.rb
185
184
  - lib/mercadolibre_api/sites/queries/get_code.rb
@@ -1,11 +0,0 @@
1
- json.product do
2
- json.partial! 'api_web/partials/basic_product', product: @product
3
-
4
- json.category do
5
- json.partial! 'api_web/partials/full_category', category: @product.category
6
- end
7
-
8
- json.related_products @related_products do |related_product|
9
- json.partial! 'api_web/partials/basic_product', product: related_product
10
- end
11
- end