tanuki-universe 0.0.3 → 0.0.4

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: 453719d9f5eb5c3ea124f725fe7dc7b0ce41da2d
4
- data.tar.gz: 208fa3fdddc0fef4ef7f578591b7d1cc67c89403
3
+ metadata.gz: f56b4a6cfc038b35090d24940243f9bc504304de
4
+ data.tar.gz: 34dbac62871e7b97641a728392359a42faa256b0
5
5
  SHA512:
6
- metadata.gz: e3236e5a064bfba1c41bc618211666526870dd0cf28406d37d299f009972643efda331594b8e15c337d3de5580c6b61276c273314ea10d6ec4c1c8cf70712781
7
- data.tar.gz: a7cd338eac0a09b89e0bc0d8331783f1b34119dd38d7d852f6b886382736fae3f3ee01c382ba0913adb44e26f1d6c144872ebe6f4741115f73d5894df1b96a49
6
+ metadata.gz: 5d176303ac2b497f7032a48111942a330a91a0550773162e8e86a6fe996e826a44efe3fc9e46165dcad4d542beec572674efd509a6bdc65e113e935374acf996
7
+ data.tar.gz: b0d6937732e25a76e1c3b940477a624b7da4db4b70fb97fbe408e1e6611ad3f4ab572c53613a3e627c7f76c2014fe07900941cf2a6379b82af69d8fdb907c65c
data/.gitignore CHANGED
@@ -12,4 +12,3 @@
12
12
  .rspec_status
13
13
 
14
14
  vendor/
15
- config.json
data/README.md CHANGED
@@ -4,6 +4,16 @@ Generate universe file from private Gitlab.
4
4
 
5
5
  Please see the following URL(https://docs.chef.io/api_chef_server.html#universe).
6
6
 
7
+ ## Caution(2017/11/09)⚠️
8
+
9
+ Please add this to Gemfile.
10
+ ```
11
+ gem 'gitlab', git: 'https://github.com/NARKOZ/gitlab.git'
12
+ ```
13
+ It needs to be obtained from master branch to require fixes not included in the latest release.
14
+
15
+
16
+
7
17
  ## Installation
8
18
 
9
19
  Add this line to your application's Gemfile:
@@ -43,10 +53,21 @@ Create config file. (Default is 'config.json')
43
53
 
44
54
  You can also use environment variables.
45
55
  - ENV['GITLAB_API_ENDPOINT']
46
- - ENV['GITLAB_API_PRIVATETOKEN']
56
+ - ENV['GITLAB_API_PRIVATE_TOKEN']
47
57
  - ENV['GITLAB_COOKBOOKS_GROUP']
48
58
 
49
- In this case 'config.json' is unnecessary.
59
+ Even then you need config file below.
60
+ ```
61
+ {
62
+ "endpoints": [
63
+ {
64
+ "type": "gitlab",
65
+ "options": {}
66
+ }
67
+ ]
68
+ }
69
+ ```
70
+
50
71
 
51
72
  ```
52
73
  Commands:
data/config.json ADDED
@@ -0,0 +1,8 @@
1
+ {
2
+ "endpoints": [
3
+ {
4
+ "type": "gitlab",
5
+ "options": {}
6
+ }
7
+ ]
8
+ }
@@ -17,7 +17,7 @@ module Tanuki
17
17
 
18
18
  def parse_options(options)
19
19
  @group = ENV['GITLAB_COOKBOOKS_GROUP'] || options['group']
20
- @private_token = ENV['GITLAB_API_PRIVATETOKEN'] || options['private_token']
20
+ @private_token = ENV['GITLAB_API_PRIVATE_TOKEN'] || options['private_token']
21
21
  @url = ENV['GITLAB_API_ENDPOINT'] || options['url']
22
22
  end
23
23
 
@@ -1,5 +1,5 @@
1
1
  module Tanuki
2
2
  module Universe
3
- VERSION = "0.0.3"
3
+ VERSION = "0.0.4"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tanuki-universe
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - kubihie
@@ -99,6 +99,7 @@ files:
99
99
  - bin/console
100
100
  - bin/setup
101
101
  - bin/tanuki-universe
102
+ - config.json
102
103
  - lib/tanuki/universe.rb
103
104
  - lib/tanuki/universe/.DS_Store
104
105
  - lib/tanuki/universe/cli.rb