README.md in kinu-1.0.0.alpha2 vs README.md in kinu-1.0.0.alpha3
- old
+ new
@@ -1,8 +1,8 @@
# Kinu ruby client
-[Kinu](https://github.com/TakatoshiMaeda/kinu) ruby client
+[Kinu](https://github.com/tokubai/kinu) ruby client
## Installation
Add this line to your application's Gemfile:
@@ -14,11 +14,11 @@
$ bundle
Or install it yourself as:
- $ gem install kinu
+ $ gem install kinu --pre
## Usage
```ruby
require 'kinu'
@@ -29,13 +29,13 @@
c.ssl = true
end
resource = Kinu::Resource.new(:foods, 1)
resource.upload(open('/path/to/image.jpg'))
-resource.uri(width: 280, height: 300) # => #<URI::HTTP http://127.0.0.1/images/foods/w=280,h=300/1.jpg>
+resource.uri(width: 280, height: 300) # => #<URI::HTTP https://127.0.0.1/images/foods/w=280,h=300/1.jpg>
sandbox = Kinu::Sandbox.upload(open('/path/to/image.jpg'))
-sandbox.uri(width: 280, height: 300) # => #<URI::HTTP http://192.168.99.100:5001/images/__sandbox__/w=280,h=300/1abd5e51-2ba4-43e5-a355-c2abee318d3f.jpg>
+sandbox.uri(width: 280, height: 300) # => #<URI::HTTP https://192.168.99.100:5001/images/__sandbox__/w=280,h=300/1abd5e51-2ba4-43e5-a355-c2abee318d3f.jpg>
sandbox.attach_to(:foods, 1) # => #<Kinu::Resource:0x007fa4538098b0 @id="1", @name="foods">
```
## Development