fog-sakuracloud 1.0.0 → 1.0.1

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: 068e53f82f6f188b5a4bd078cd4b83e87a99e54e
4
- data.tar.gz: 780a0fbccf4e8f4252c4bb5247fe81f4bf3a2e1d
3
+ metadata.gz: 7acfddc20f9f0289fe48cc2f51d47b7730c03e52
4
+ data.tar.gz: 242cf21c04095f166e0369e8b138bdfab30cd4f9
5
5
  SHA512:
6
- metadata.gz: 9e0d6e2642f15df3165a4572e989e2712199a625e6df9f6e84a21227d46f5c46512b6779509f24d1526075873daa7a879efcb87b6b73fcf97b485fbc2eb7fa77
7
- data.tar.gz: d06ea6721e8ddb05a7bc9bea78554065093acbedf85ac7fd53c8b506272861cf1f1a2d4470570df86f107eddd86eed0b3c42aee21e7c524a05c83aea5d303f6d
6
+ metadata.gz: 86b5ae14cb0dfc1d7a33652a86d0b9c677e6b59bc3a4f5de7f8251f894e02cc936139d83e183803d96085d842819f271a50c8a99286867453eb051dd14bbe71e
7
+ data.tar.gz: d8f8fe74132e2ad30ac4e3b66988132575fd2f537ee1bb6645874577276f998680a2eaeb41631212551a494d3fe044a71412047e6c451fd20d92a50219a47295
@@ -0,0 +1,18 @@
1
+ ## Getting Involved
2
+
3
+ New contributors are always welcome, when it doubt please ask questions. We strive to be an open and welcoming community. Please be nice to one another.
4
+
5
+ ### Coding
6
+
7
+ * Pick a task:
8
+ * Offer feedback on open [pull requests](https://github.com/fog/fog-sakuracloud/pulls).
9
+ * Review open [issues](https://github.com/fog/fog-sakuracloud/issues) for things to help on.
10
+ * [Create an issue](https://github.com/fog/fog-sakuracloud/issues/new) to start a discussion on additions or features.
11
+ * Fork the project, add your changes and tests to cover them in a topic branch.
12
+ * Commit your changes and rebase against `fog/fog-sakuracloud` to ensure everything is up to date.
13
+ * [Submit a pull request](https://github.com/fog/fog-sakuracloud/compare/)
14
+
15
+ ### Non-Coding
16
+
17
+ * Offer feedback on open [issues](https://github.com/fog/fog-sakuracloud/issues).
18
+ * Organize or volunteer at events.
@@ -0,0 +1,3 @@
1
+ * Bryan Paxton <starbelly@pobox.com>
2
+ * Paulo Henrique Lopes Ribeiro <plribeiro3000@gmail.com>
3
+ * Yukihiko Sawanobori <sawanoboriyu@gmail.com>
@@ -0,0 +1,20 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2014-2014 [CONTRIBUTORS.md](https://github.com/fog/fog-sakuracloud/blob/master/CONTRIBUTORS.md)
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
6
+ this software and associated documentation files (the "Software"), to deal in
7
+ the Software without restriction, including without limitation the rights to
8
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9
+ the Software, and to permit persons to whom the Software is furnished to do so,
10
+ subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md CHANGED
@@ -29,7 +29,7 @@ See [Getting started](https://github.com/higanworks/fog-sakuracloud/wiki/Getting
29
29
 
30
30
  ## Contributing
31
31
 
32
- 1. Fork it ( https://github.com/[my-github-username]/fog-sakuracloud/fork )
32
+ 1. Fork it ( https://github.com/fog/fog-sakuracloud/fork )
33
33
  2. Create your feature branch (`git checkout -b my-new-feature`)
34
34
  3. Commit your changes (`git commit -am 'Add some feature'`)
35
35
  4. Push to the branch (`git push origin my-new-feature`)
@@ -1,10 +1,19 @@
1
1
  require 'fog/core'
2
2
  require 'fog/json'
3
- require 'fog/sakuracloud/compute'
4
- require 'fog/sakuracloud/volume'
5
- require 'fog/sakuracloud/network'
6
3
 
7
4
  module Fog
5
+ module Compute
6
+ autoload :SakuraCloud, File.expand_path('../sakuracloud/compute', __FILE__)
7
+ end
8
+
9
+ module Network
10
+ autoload :SakuraCloud, File.expand_path('../sakuracloud/network', __FILE__)
11
+ end
12
+
13
+ module Volume
14
+ autoload :SakuraCloud, File.expand_path('../sakuracloud/volume', __FILE__)
15
+ end
16
+
8
17
  module SakuraCloud
9
18
  extend Fog::Provider
10
19
 
@@ -1,6 +1,3 @@
1
- require 'fog/sakuracloud'
2
- require 'fog/compute'
3
-
4
1
  module Fog
5
2
  module Compute
6
3
  class SakuraCloud < Fog::Service
@@ -1,6 +1,3 @@
1
- require 'fog/sakuracloud'
2
- require 'fog/network'
3
-
4
1
  module Fog
5
2
  module Network
6
3
  class SakuraCloud < Fog::Service
@@ -1,5 +1,5 @@
1
1
  module Fog
2
2
  module Sakuracloud
3
- VERSION = "1.0.0"
3
+ VERSION = "1.0.1"
4
4
  end
5
5
  end
@@ -1,6 +1,3 @@
1
- require 'fog/sakuracloud'
2
- require 'fog/volume'
3
-
4
1
  module Fog
5
2
  module Volume
6
3
  class SakuraCloud < Fog::Service
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fog-sakuracloud
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - sawanoboly
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-01-20 00:00:00.000000000 Z
11
+ date: 2015-04-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fog-core
@@ -203,8 +203,10 @@ files:
203
203
  - ".gitmodules"
204
204
  - ".travis.yml"
205
205
  - CHANGELOG.md
206
+ - CONTRIBUTING.md
207
+ - CONTRIBUTORS.md
206
208
  - Gemfile
207
- - LICENSE.txt
209
+ - LICENSE.md
208
210
  - README.md
209
211
  - Rakefile
210
212
  - fog-sakuracloud.gemspec
@@ -284,7 +286,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
284
286
  version: '0'
285
287
  requirements: []
286
288
  rubyforge_project:
287
- rubygems_version: 2.4.3
289
+ rubygems_version: 2.4.6
288
290
  signing_key:
289
291
  specification_version: 4
290
292
  summary: Module for the 'fog' gem to support Sakura no Cloud
@@ -1,22 +0,0 @@
1
- Copyright (c) 2014 sawanoboly
2
-
3
- MIT License
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining
6
- a copy of this software and associated documentation files (the
7
- "Software"), to deal in the Software without restriction, including
8
- without limitation the rights to use, copy, modify, merge, publish,
9
- distribute, sublicense, and/or sell copies of the Software, and to
10
- permit persons to whom the Software is furnished to do so, subject to
11
- the following conditions:
12
-
13
- The above copyright notice and this permission notice shall be
14
- included in all copies or substantial portions of the Software.
15
-
16
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.