serverkit-s3 0.0.1 → 0.0.2

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: c7f8091aeee8d7a951dfd6523922d14d644ddb7e
4
- data.tar.gz: 98543ce801cffebc7bc1232c0e61cc5cfbf90a90
3
+ metadata.gz: dbbdb2271ca5cc39eb17248a033e8038eae5c6d0
4
+ data.tar.gz: f64a08a66b258afff9341aaf9555259fe9397f48
5
5
  SHA512:
6
- metadata.gz: 12700a6eca53ceff7c8559c7efb187bce1fc0c6bf54697f93b6edf2a2fbc89aa65c2f1f9d152ae5b2166796935fd45b88d48aef291cb068824bd38a44204cca9
7
- data.tar.gz: 1fcbc7af61d52ee533b0260be4ce693b7de0682343f444062079f35ecf6f117776c79fefa8a02f89ef5cfd533d7d3f716264bfad544e327d98b3470f734cbe05
6
+ metadata.gz: 4d9b5f7b0b31fca5297c8575716b38429013669290ae01f88f3399faa39bf0c613b64970ee8eea433d0c06d688aeaebaa6869410201b0dd5144c6240ee911f60
7
+ data.tar.gz: 73ceaded5758993642cf8436242d8a96c17dcf58b7ef584b0966d73436bf9f1090bb0218dc1966dd2192aef66b0f1f71bfc5196046d57db92b339552455bed87
@@ -1,2 +1,5 @@
1
+ ## 0.0.2
2
+ - Renamed from serverkit-s3 to serverkit-aws
3
+
1
4
  ## 0.0.1
2
5
  - 1st Release
data/README.md CHANGED
@@ -1,10 +1,10 @@
1
- # serverkit-s3
2
- [Serverkit](https://github.com/serverkit/serverkit) plug-in for Amazon S3.
1
+ # serverkit-aws
2
+ [Serverkit](https://github.com/serverkit/serverkit) plug-in for Amazon Web Services (AWS).
3
3
 
4
4
  ## Install
5
5
  ```rb
6
6
  # Gemfile
7
- gem "serverkit-s3"
7
+ gem "serverkit-aws"
8
8
  ```
9
9
 
10
10
  ## Resource
@@ -1,2 +1,2 @@
1
- require "serverkit/s3/version"
1
+ require "serverkit/aws/version"
2
2
  require "serverkit/resources/s3_bucket"
@@ -0,0 +1,5 @@
1
+ module Serverkit
2
+ module Aws
3
+ VERSION = "0.0.2"
4
+ end
5
+ end
@@ -1,13 +1,13 @@
1
1
  lib = File.expand_path("../lib", __FILE__)
2
2
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
- require "serverkit/s3/version"
3
+ require "serverkit/aws/version"
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = "serverkit-s3"
7
- spec.version = Serverkit::S3::VERSION
7
+ spec.version = Serverkit::Aws::VERSION
8
8
  spec.authors = ["Ryo Nakamura"]
9
9
  spec.email = ["r7kamura@gmail.com"]
10
- spec.summary = "Serverkit plug-in for Amazon S3"
10
+ spec.summary = "Serverkit plug-in for Amazon Web Services (AWS)."
11
11
  spec.homepage = "https://github.com/serverkit/serverkit-s3"
12
12
  spec.license = "MIT"
13
13
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: serverkit-s3
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryo Nakamura
@@ -79,10 +79,10 @@ files:
79
79
  - LICENSE.txt
80
80
  - README.md
81
81
  - Rakefile
82
+ - lib/serverkit/aws.rb
83
+ - lib/serverkit/aws/version.rb
82
84
  - lib/serverkit/resources/s3_bucket.rb
83
- - lib/serverkit/s3.rb
84
- - lib/serverkit/s3/version.rb
85
- - serverkit-s3.gemspec
85
+ - serverkit-aws.gemspec
86
86
  homepage: https://github.com/serverkit/serverkit-s3
87
87
  licenses:
88
88
  - MIT
@@ -106,6 +106,6 @@ rubyforge_project:
106
106
  rubygems_version: 2.4.5
107
107
  signing_key:
108
108
  specification_version: 4
109
- summary: Serverkit plug-in for Amazon S3
109
+ summary: Serverkit plug-in for Amazon Web Services (AWS).
110
110
  test_files: []
111
111
  has_rdoc:
@@ -1,5 +0,0 @@
1
- module Serverkit
2
- module S3
3
- VERSION = "0.0.1"
4
- end
5
- end