rakuten-api 0.1.0 → 0.1.1

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: e809c4972052b855f3ae4ab121bde40af51d3389
4
- data.tar.gz: 29dc5d316ce711d816a8de9d3073c07c372dfd87
3
+ metadata.gz: ce3357dd8671148011b032e95eeef7db21a859d2
4
+ data.tar.gz: 3203613eeb20f746f300c734d82f2e6582d4b284
5
5
  SHA512:
6
- metadata.gz: 532b424d6c15f75cbea06823aa6a53bdaa9ec9485db9e448ef1f6f0b3e7dd760e59fc6f5eaa58c827996793f6c9696eb3df80f76783cf28787d93db8b843f283
7
- data.tar.gz: 3cd8620888d3944327da4efb851c36c50ed41c322d36e715718ab9d9249f7a843dc669386b5a6ac1a1d55c97f7d49f1d2e4958f1976fa0ee84b6603e6ba7d53d
6
+ metadata.gz: bc8a249eba5fa01d66e4443e709d67f35ece0e7624c6a9bbcea1b978e124c239e418da1d4fc8d9713c533f62a271a5cb99720f1f4eb5bbead3b6c667acb3825f
7
+ data.tar.gz: 1622d770838fa119b3fe8cd087a019e32a1c3aa1d78bf3adac877f009aee4241dfd576753793a8e7ab08fd5bfb8f622543b74f2caa11ca81246cc65b68ef1ffd
data/README.md CHANGED
@@ -1,5 +1,6 @@
1
1
  # Rakuten::Api
2
2
 
3
+ [![Gem Version](https://badge.fury.io/rb/rakuten-api.png)](http://badge.fury.io/rb/rakuten-api)
3
4
  Ruby Rakuten Web API fully supported
4
5
 
5
6
  ## Installation
@@ -27,7 +28,7 @@ Rakuten::Api.configure do |options|
27
28
  options[:affiliate_id] = "your affiliate id"
28
29
  end
29
30
 
30
- # Item Search API v1
31
+ # Ichiba Item Search API (version:2013-08-05)
31
32
  res = Rakuten::Api.get(Rakuten::Api::Ichiba::Search,{:genreId => "101240"})
32
33
  res.code # 200
33
34
  res.message # "OK"
@@ -36,7 +37,9 @@ res["Items"].each do |v|
36
37
  ...
37
38
  end
38
39
  ```
40
+
39
41
  See the [examples directory](https://github.com/shoprev/rakuten-api/tree/master/example) for more usage.
42
+
40
43
  ```ruby
41
44
  # Rakuten Ichiba API
42
45
  Rakuten::Api::Ichiba::Search # Ichiba Item Search API (version:2013-08-05)
@@ -85,6 +88,7 @@ Rakuten::Api::Etc::DynamicAd # Dynamic Ad API
85
88
  Rakuten::Api::Etc::DynamicAdTravel # Dynamic Ad Travel API
86
89
  Rakuten::Api::Etc::HighCommissionShop # High Commission Shop API (version:2012-03-13)
87
90
  ```
91
+
88
92
  Refer to [Rakuten Web API documentation](https://webservice.rakuten.co.jp/document/) for more infomation.
89
93
 
90
94
  ## Contributing
@@ -1,5 +1,5 @@
1
1
  module Rakuten
2
2
  class Api
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rakuten-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - shoprev