kaname 0.1.4 → 0.1.5

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: 9c6eaa44118a8b36a458cd6ee3e5e1c5fb25416b
4
- data.tar.gz: c58626e1e6a18fa8538734ec86e9bc59ae085b2f
3
+ metadata.gz: fecf82e5211dff768de2a1ce1278b57d3b856913
4
+ data.tar.gz: e1a1309a4ae878c634f2deeb7cd8854a99786673
5
5
  SHA512:
6
- metadata.gz: c9a253237863702542945c4ff1a39a175ca4bf314e7828d1fe52b101ee1f5d80d17aa3b0ff048c43d4a4704eadec943f350c3cbcad406d7025efbd6434f2270c
7
- data.tar.gz: 61fb981cffd41d190e86c39bb4808a9d18157c19c41d3ee9b1ca5939b0f6a8d879ea13c257eeeefa73a92ece46c1d7b36831bdd7f6035691a8d55a268325b137
6
+ metadata.gz: 9e482a5b7e1b81c543c799f62e18288d34f02e6814110ff4bf3ae9547ccdb99bbbd63ca45cd301ef9d4f636a4bef557897d60debd32777bba948ff4b1604b79a
7
+ data.tar.gz: 9d4d37441dfa32264d97d6b7e10e7d11bd3beffd37ad48fd77a47fca66829aa143ca43d61d35164cf577fcdbc788841cbb88b6c209417524c47be10790b6f777
data/README.md CHANGED
@@ -17,12 +17,10 @@ You can define keystone configuration for OpenStack via YAML format. Like follow
17
17
  ```yaml
18
18
  antipop:
19
19
  email: "antipop@example.com"
20
- password: "awesome-password"
21
20
  tenants:
22
21
  production: "cto"
23
22
  hsbt:
24
23
  email: "hsbt@example.com"
25
- password: "awesome-password"
26
24
  tenants:
27
25
  development: "admin"
28
26
  production: "member"
@@ -43,7 +41,8 @@ run following command.
43
41
 
44
42
  ```sh
45
43
  $ kaname diff # You can see difference of definition
46
- $ kaname apply # You can apply configuration into OpenStack
44
+ $ kaname apply # You can see all of invoke commands(dryrun)
45
+ $ kaname apply --dryrun false # apply configuration into OpenStack
47
46
  ```
48
47
 
49
48
  You can create user and user's role with tenant.
@@ -1,8 +1,9 @@
1
1
  require "kaname/version"
2
2
 
3
+ require 'kaname/adapter'
3
4
  require 'kaname/cli'
5
+ require 'kaname/generator'
4
6
  require 'kaname/resource'
5
- require 'kaname/adapter'
6
7
 
7
8
  module Kaname
8
9
  end
@@ -2,7 +2,7 @@ require 'securerandom'
2
2
 
3
3
  module Kaname
4
4
  class Generator
5
- class < self
5
+ class << self
6
6
  def password
7
7
  SecureRandom.base64(6)
8
8
  end
@@ -1,3 +1,3 @@
1
1
  module Kaname
2
- VERSION = "0.1.4"
2
+ VERSION = "0.1.5"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kaname
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - SHIBATA Hiroshi
@@ -174,3 +174,4 @@ signing_key:
174
174
  specification_version: 4
175
175
  summary: Identity configuration tool for OpenStack.
176
176
  test_files: []
177
+ has_rdoc: