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 +4 -4
- data/CONTRIBUTING.md +18 -0
- data/CONTRIBUTORS.md +3 -0
- data/LICENSE.md +20 -0
- data/README.md +1 -1
- data/lib/fog/sakuracloud.rb +12 -3
- data/lib/fog/sakuracloud/compute.rb +0 -3
- data/lib/fog/sakuracloud/network.rb +0 -3
- data/lib/fog/sakuracloud/version.rb +1 -1
- data/lib/fog/sakuracloud/volume.rb +0 -3
- metadata +6 -4
- data/LICENSE.txt +0 -22
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7acfddc20f9f0289fe48cc2f51d47b7730c03e52
|
4
|
+
data.tar.gz: 242cf21c04095f166e0369e8b138bdfab30cd4f9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 86b5ae14cb0dfc1d7a33652a86d0b9c677e6b59bc3a4f5de7f8251f894e02cc936139d83e183803d96085d842819f271a50c8a99286867453eb051dd14bbe71e
|
7
|
+
data.tar.gz: d8f8fe74132e2ad30ac4e3b66988132575fd2f537ee1bb6645874577276f998680a2eaeb41631212551a494d3fe044a71412047e6c451fd20d92a50219a47295
|
data/CONTRIBUTING.md
ADDED
@@ -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.
|
data/CONTRIBUTORS.md
ADDED
data/LICENSE.md
ADDED
@@ -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/
|
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`)
|
data/lib/fog/sakuracloud.rb
CHANGED
@@ -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
|
|
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.
|
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-
|
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.
|
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.
|
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
|
data/LICENSE.txt
DELETED
@@ -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.
|