swift-storage 0.0.6 → 0.0.7

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
  SHA1:
3
- metadata.gz: 4b0162d1ba572dd8825f19c6d9e2de6e07b66132
4
- data.tar.gz: 4c558ab10e1f7e884cd24d7922208007eaa62d5b
3
+ metadata.gz: d5027a353bfd4e6c5f9bd533401681f0e899d32a
4
+ data.tar.gz: 3b2a7028a827f3908a1bc1a301e396913f640c14
5
5
  SHA512:
6
- metadata.gz: 512d181c487a915dfce20c76d4555e9359f4e78718ef786bbd4ca037f29e243699104ca7f522149bc389597f004393e9a770bd26021c5feb5b376429a2c06a3f
7
- data.tar.gz: 50d19c8dcc6815fbb3d30bf899381c34f8cd75c0f82473aa7f8a34deefb31903417760aff4ab4d1dc232e9247560a765eb347f708b08d12cecaf40455bac56a6
6
+ metadata.gz: 53063a6a6e977de46d0d6958710ac4a663f6279f8690fdfff969295cc3177d4f22335b1fd93fc7e39fced859fd53dce871249fbb8795d3cf340e5867f00849c4
7
+ data.tar.gz: f8078ed653efd3dea9e803ce1244db130b11e97a9d8ff80c696ab9d09c87738c689b785c0a6c5d7100de404f18a5b9980c56fb00bdd6beeee1085aefb8b041ac
data/CHANGELOG.md CHANGED
@@ -3,6 +3,13 @@
3
3
  This file is written in reverse chronological order, newer releases will
4
4
  appear at the top.
5
5
 
6
+ ## 0.0.7
7
+
8
+ * URL encoding of special characters
9
+ [#8](https://github.com/memoways/swift-ruby/pull/8)
10
+ @mdouchement
11
+
12
+
6
13
  ## 0.0.6
7
14
 
8
15
  * Object#copy_from support
@@ -125,7 +125,7 @@ class SwiftStorage::Service
125
125
  end
126
126
 
127
127
  # Cache HTTP session as url with no path (scheme, host, port)
128
- uri = URI.parse(path_or_url)
128
+ uri = URI.parse(URI.escape path_or_url)
129
129
  path = uri.path
130
130
  uri.path = ''
131
131
  key = uri.to_s
@@ -1,3 +1,3 @@
1
1
  module SwiftStorage
2
- VERSION = "0.0.6"
2
+ VERSION = "0.0.7"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: swift-storage
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nicolas Goy
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-08-13 00:00:00.000000000 Z
11
+ date: 2015-09-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -191,4 +191,3 @@ test_files:
191
191
  - spec/swift/container_spec.rb
192
192
  - spec/swift/object_spec.rb
193
193
  - spec/swift/temp_url_spec.rb
194
- has_rdoc: