├── .coveralls.yml ├── .gitignore ├── .rspec ├── .travis.yml ├── CHANGELOG.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── lib ├── upyun.rb └── upyun │ ├── form.rb │ ├── rest.rb │ ├── utils.rb │ └── version.rb ├── spec ├── spec_helper.rb ├── upyun.jpg └── upyun_spec.rb └── upyun.gemspec /.coveralls.yml: -------------------------------------------------------------------------------- 1 | service_name: travis-ci -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upyun/ruby-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format doc 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upyun/ruby-sdk/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upyun/ruby-sdk/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upyun/ruby-sdk/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upyun/ruby-sdk/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upyun/ruby-sdk/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | 3 | -------------------------------------------------------------------------------- /lib/upyun.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upyun/ruby-sdk/HEAD/lib/upyun.rb -------------------------------------------------------------------------------- /lib/upyun/form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upyun/ruby-sdk/HEAD/lib/upyun/form.rb -------------------------------------------------------------------------------- /lib/upyun/rest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upyun/ruby-sdk/HEAD/lib/upyun/rest.rb -------------------------------------------------------------------------------- /lib/upyun/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upyun/ruby-sdk/HEAD/lib/upyun/utils.rb -------------------------------------------------------------------------------- /lib/upyun/version.rb: -------------------------------------------------------------------------------- 1 | module Upyun 2 | VERSION = "1.0.9" 3 | end 4 | -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upyun/ruby-sdk/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/upyun.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upyun/ruby-sdk/HEAD/spec/upyun.jpg -------------------------------------------------------------------------------- /spec/upyun_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upyun/ruby-sdk/HEAD/spec/upyun_spec.rb -------------------------------------------------------------------------------- /upyun.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upyun/ruby-sdk/HEAD/upyun.gemspec --------------------------------------------------------------------------------