aliyun-sdk 0.1.6 → 0.1.7

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: 7a494939c9f83dcd41a86515be0899915726047e
4
- data.tar.gz: 62364948ccda0fe11376d12f31d1237c8b0948f6
3
+ metadata.gz: d8c0d1b86615b56e888dced9498d7e1e4a4a1e39
4
+ data.tar.gz: af031c11e58a4d25fc9eb6afba56d1d9a0982b34
5
5
  SHA512:
6
- metadata.gz: c7023534cfa153f6954ac5a106730649373ce86f166a4d01749affa33349034f1da97e182f020eacb47050929687980d5758173af9ed032053d08854f2aa26b0
7
- data.tar.gz: b667452313a12f2d63cc37e1095c61d28fcd11d52458f575d2cbea4b9666f4410b1422f9da87701ed34b3a39a30937fe53cc0b02a0b6fe67350a488941e44010
6
+ metadata.gz: 83fd2fb0d5344b83840456d1c128e5f7c3fcb78852f573551f208903547bbe324569ab0d1914856980ac7eab8389d1f58533fb569ca0b88354b08b0414b770ce
7
+ data.tar.gz: 89e4ff7882cde22a27c5271cd9989e03bd8217908fda2afda229a3544e8d8cfbea546cc0312f740141b0efd289a5d9d87a9e27a33ac9b5bdaac8b8263017ee0a
@@ -1,5 +1,10 @@
1
1
  ## Change Log
2
2
 
3
+ ### v0.1.7
4
+
5
+ - Fix StreamWriter#inspect bug
6
+ - Fix wrong in README
7
+
3
8
  ### v0.1.6
4
9
 
5
10
  - Required ruby version >= 1.9.3 due to 1.9.2 has String encoding
data/README.md CHANGED
@@ -53,7 +53,7 @@ AccessKeySecret,在使用Aliyun OSS SDK时需要提供您的这两个信息。
53
53
  :access_key_secret => 'access_key_secret')
54
54
 
55
55
  其中`endpoint`是OSS服务的地址,根据节点区域不同,这个地址可能不一样,例如
56
- 杭州节点的地址是:`http://oss-cn-hangzhou.oss.aliyuncs.com`,其他节点的地址见:
56
+ 杭州节点的地址是:`http://oss-cn-hangzhou.aliyuncs.com`,其他节点的地址见:
57
57
  [节点列表][1]
58
58
 
59
59
  `access_key_id`和`access_key_secret`是您的服务凭证,在官网的“管理控制
@@ -360,6 +360,5 @@ SDK采用rspec进行测试,如果要对SDK进行修改,请确保没有break
360
360
  - 阿里云官网文档:http://help.aliyun.com/product/8314910_oss.html
361
361
 
362
362
 
363
- [1]: http://help.aliyun.com/document_detail/oss/product-documentation/domain-region.html
364
-
365
- [2]: http://help.aliyun.com/document_detail/oss/product-documentation/function/cname.html
363
+ [1]: http://help.aliyun.com/document_detail/oss/user_guide/endpoint_region.html
364
+ [2]: http://help.aliyun.com/document_detail/oss/user_guide/oss_concept/oss_cname.html
@@ -88,7 +88,7 @@ module Aliyun
88
88
  end
89
89
 
90
90
  def inspect
91
- "@chunks: " + @chunks.map { |c| c[0, 100] }.join(';')
91
+ "@chunks: " + @chunks.map { |c| c[0, 100].inspect }.join(';')
92
92
  end
93
93
  end
94
94
 
@@ -3,7 +3,7 @@
3
3
  module Aliyun
4
4
  module OSS
5
5
 
6
- VERSION = "0.1.6"
6
+ VERSION = "0.1.7"
7
7
 
8
8
  end # OSS
9
9
  end # Aliyun
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aliyun-sdk
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 0.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tianlong Wu
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-11-28 00:00:00.000000000 Z
11
+ date: 2015-11-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nokogiri