oreno_lxdapi 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 +4 -4
- data/.travis.yml +3 -1
- data/README.md +7 -0
- data/lib/oreno_lxdapi/version.rb +1 -1
- data/oreno_lxdapi.gemspec +3 -3
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a3710f9cd3880c44e63eef272dcb7358f6d812ee
|
4
|
+
data.tar.gz: d323a3419d7e6622778d8fd61683bd99ba4f298b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c3b4aaad5370be402f4396baad0c4086bc7387279dd2278f4b132fe62a2062725f72a77415710b4ccf9110de2723074d1713353d8575db556d50c4aa37a04300
|
7
|
+
data.tar.gz: a1d5d4a3710f555bc0f468f045a2865d8b8ade8f18c7db8530ea77e7040128333280ceddbc14505ac3306aa42bf5d75ad45c5ba02bf70a033f5067fa84b31a6b
|
data/.travis.yml
CHANGED
data/README.md
CHANGED
@@ -1,10 +1,17 @@
|
|
1
1
|
# Oreno LXD API Client for Ruby
|
2
2
|
[](https://travis-ci.org/inokappa/oreno_lxdapi)
|
3
3
|
|
4
|
+
LXD API Client for Ruby.
|
5
|
+
|
4
6
|
## Reference
|
5
7
|
|
6
8
|
- [LXD REST API](https://github.com/lxc/lxd/blob/master/specs/rest-api.md)
|
7
9
|
|
10
|
+
## Requirements
|
11
|
+
|
12
|
+
- [LXD](https://linuxcontainers.org/)
|
13
|
+
- [puppetlabs/net_http_unix](https://github.com/puppetlabs/net_http_unix)
|
14
|
+
|
8
15
|
## Installation
|
9
16
|
|
10
17
|
Add this line to your application's Gemfile:
|
data/lib/oreno_lxdapi/version.rb
CHANGED
data/oreno_lxdapi.gemspec
CHANGED
@@ -9,9 +9,9 @@ Gem::Specification.new do |spec|
|
|
9
9
|
spec.authors = ["inokappa"]
|
10
10
|
spec.email = ["inokara at gmail.com"]
|
11
11
|
|
12
|
-
spec.summary = %q{
|
13
|
-
spec.description = %q{
|
14
|
-
spec.homepage = ""
|
12
|
+
spec.summary = %q{LXD API Client for Ruby.}
|
13
|
+
spec.description = %q{LXD API Client for Ruby.}
|
14
|
+
spec.homepage = "https://github.com/inokappa/oreno_lxdapi"
|
15
15
|
|
16
16
|
|
17
17
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: oreno_lxdapi
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- inokappa
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-01-
|
11
|
+
date: 2016-01-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: net_http_unix
|
@@ -80,7 +80,7 @@ dependencies:
|
|
80
80
|
- - ">="
|
81
81
|
- !ruby/object:Gem::Version
|
82
82
|
version: '0'
|
83
|
-
description:
|
83
|
+
description: LXD API Client for Ruby.
|
84
84
|
email:
|
85
85
|
- inokara at gmail.com
|
86
86
|
executables: []
|
@@ -96,7 +96,7 @@ files:
|
|
96
96
|
- lib/oreno_lxdapi.rb
|
97
97
|
- lib/oreno_lxdapi/version.rb
|
98
98
|
- oreno_lxdapi.gemspec
|
99
|
-
homepage:
|
99
|
+
homepage: https://github.com/inokappa/oreno_lxdapi
|
100
100
|
licenses: []
|
101
101
|
metadata: {}
|
102
102
|
post_install_message:
|
@@ -118,5 +118,5 @@ rubyforge_project:
|
|
118
118
|
rubygems_version: 2.2.2
|
119
119
|
signing_key:
|
120
120
|
specification_version: 4
|
121
|
-
summary:
|
121
|
+
summary: LXD API Client for Ruby.
|
122
122
|
test_files: []
|