https://github.com/iij/mruby-aws-s3
Client library for Amazon's Simple Storage Service's REST API
https://github.com/iij/mruby-aws-s3
Last synced: 5 months ago
JSON representation
Client library for Amazon's Simple Storage Service's REST API
- Host: GitHub
- URL: https://github.com/iij/mruby-aws-s3
- Owner: iij
- Created: 2013-01-08T07:45:03.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2018-02-08T10:05:03.000Z (about 7 years ago)
- Last Synced: 2023-03-28T21:11:10.291Z (about 2 years ago)
- Language: Ruby
- Size: 10.7 KB
- Stars: 10
- Watchers: 10
- Forks: 6
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
mruby-aws-s3
============### To build:
Prerequisites:
* mruby
* mrbgems (mruby-uv, mruby-http, mruby-digest, mruby-pack, mruby-simplehttp, mruby-httprequest)activate GEMs in *build_config.rb*
conf.gem :git => 'https://github.com/iij/mruby-aws-s3.git', :branch => 'master'then, build mruby
ruby ./minirake### To run the tests:
ruby ./minirake test
For example,
AWSAccessKeyId = '(AccessKey for AWS)'
AWSSecretAccessKey = '(SecretKey for AWS)'
AWSBucket = "mruby"
aws = AWS::S3.new(AWSAccessKeyId, AWSSecretAccessKey)
aws.set_bucket(AWSBucket)
# PUT /Hellow.txt
response = aws.upload("/Hello.txt", "Hello! mruby " + Time.now.to_s)
if response.code.to_i == 200
puts "Upload: success"
else
puts "Error code = " + response.code.to_s
end
# GET /Hello.txt
response = aws.download("/Hello.txt")
if response.code.to_i == 200
puts "Download: success"
puts response.body
else
puts "Error code = " + response.code.to_s
puts "Response:"
puts response.body
end## License
Copyright (c) 2012 Internet Initiative Japan Inc.
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.