open_taobao 0.2.1 → 0.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +2 -2
- data/lib/open_taobao/version.rb +1 -1
- data/open_taobao.gemspec +2 -1
- metadata +5 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9bb6f0ab122d83792a2da11a4777eb5e55069e64
|
4
|
+
data.tar.gz: b7fa832e92ecf706b73beed7ab31cf32423fdbe6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d9fc8678535e18e38191e45a0abe5b6bcec593c4f08623a6d0a20513ca25bed03ae0655abcc9b2e6c7952eabf9f1973267fbef7f4f8fbb30dcdb3944804c8a9e
|
7
|
+
data.tar.gz: 8531906652d59b55d72ff11bf709f06752eb94dea983537705efe32a96b5c1af9e91f986d817e6b8777c0a1a49f5ad3c3f45da331b251d9551c04309b3d1ff66
|
data/README.md
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
OpenTaobao [![Build Status](https://secure.travis-ci.org/wongyouth/open_taobao.png?branch=master)](https://travis-ci.org/wongyouth/open_taobao)
|
2
2
|
==========
|
3
3
|
|
4
|
-
Taobao Open Platform client for ruby. Rails3 is supported.
|
4
|
+
Taobao Open Platform client for ruby. Rails3+ is supported.
|
5
5
|
|
6
6
|
## NOTICE
|
7
7
|
|
@@ -39,7 +39,7 @@ Open the file and configure it with your taobao info.
|
|
39
39
|
|
40
40
|
Notice: `app_key`, `secret_key`, `endpoint` must be included in your YAML file, otherwise OpenTaobao.load will fail.
|
41
41
|
|
42
|
-
The `app_key` and `secret_key` are avaliable by ENV['TAOBAO_API_KEY']
|
42
|
+
The `app_key` and `secret_key` are avaliable by `ENV['TAOBAO_API_KEY']`, `ENV['TAOBAO_SECRET_KEY']` out of the box if you use same keys for other taobao related gems, e.g. omniauth-taobao.
|
43
43
|
|
44
44
|
call `OpenTaobao.get` or `OpenTaoboa.post`,with taobao parameters:
|
45
45
|
|
data/lib/open_taobao/version.rb
CHANGED
data/open_taobao.gemspec
CHANGED
@@ -4,7 +4,7 @@ require File.expand_path('../lib/open_taobao/version', __FILE__)
|
|
4
4
|
Gem::Specification.new do |gem|
|
5
5
|
gem.authors = ["wongyouth"]
|
6
6
|
gem.email = ["wongyouth@gmail.com"]
|
7
|
-
gem.description = %q{淘宝开放平台ruby版,支持Rails3
|
7
|
+
gem.description = %q{淘宝开放平台ruby版,支持Rails3+}
|
8
8
|
gem.summary = %q{Open Taobao API for ruby}
|
9
9
|
gem.homepage = "http://github.com/wongyouth/open_taobao"
|
10
10
|
|
@@ -12,6 +12,7 @@ Gem::Specification.new do |gem|
|
|
12
12
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
13
13
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
14
14
|
gem.name = "open_taobao"
|
15
|
+
gem.license = 'MIT'
|
15
16
|
gem.require_paths = ["lib"]
|
16
17
|
gem.version = OpenTaobao::VERSION
|
17
18
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: open_taobao
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- wongyouth
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-
|
11
|
+
date: 2013-11-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: multi_json
|
@@ -94,7 +94,7 @@ dependencies:
|
|
94
94
|
- - '>='
|
95
95
|
- !ruby/object:Gem::Version
|
96
96
|
version: '0'
|
97
|
-
description: 淘宝开放平台ruby版,支持Rails3
|
97
|
+
description: 淘宝开放平台ruby版,支持Rails3+
|
98
98
|
email:
|
99
99
|
- wongyouth@gmail.com
|
100
100
|
executables: []
|
@@ -120,7 +120,8 @@ files:
|
|
120
120
|
- spec/open_taobao_spec.rb
|
121
121
|
- spec/spec_helper.rb
|
122
122
|
homepage: http://github.com/wongyouth/open_taobao
|
123
|
-
licenses:
|
123
|
+
licenses:
|
124
|
+
- MIT
|
124
125
|
metadata: {}
|
125
126
|
post_install_message:
|
126
127
|
rdoc_options: []
|