knife-github 0.1.0 → 0.1.1
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.
- data/lib/chef/knife/github_base.rb +5 -10
- data/lib/knife-github/config.rb +0 -1
- data/lib/knife-github/version.rb +1 -1
- metadata +2 -2
|
@@ -16,7 +16,11 @@
|
|
|
16
16
|
# limitations under the License.
|
|
17
17
|
#
|
|
18
18
|
|
|
19
|
-
|
|
19
|
+
require 'knife-github/repo'
|
|
20
|
+
require 'knife-github/config'
|
|
21
|
+
require 'knife-github/version'
|
|
22
|
+
require 'knife-github/connection'
|
|
23
|
+
require 'mixlib/versioning'
|
|
20
24
|
|
|
21
25
|
class Chef
|
|
22
26
|
class Knife
|
|
@@ -25,15 +29,6 @@ class Chef
|
|
|
25
29
|
def self.included(includer)
|
|
26
30
|
includer.class_eval do
|
|
27
31
|
|
|
28
|
-
deps do
|
|
29
|
-
require 'chef/mixin/shell_out'
|
|
30
|
-
require 'mixlib/versioning'
|
|
31
|
-
require 'knife-github/repo'
|
|
32
|
-
require 'knife-github/config'
|
|
33
|
-
require 'knife-github/version'
|
|
34
|
-
require 'knife-github/connection'
|
|
35
|
-
end
|
|
36
|
-
|
|
37
32
|
option :github_url,
|
|
38
33
|
:long => "--github_url URL",
|
|
39
34
|
:description => "URL of the github enterprise appliance"
|
data/lib/knife-github/config.rb
CHANGED
data/lib/knife-github/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: knife-github
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date:
|
|
13
|
+
date: 2014-01-02 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: mixlib-versioning
|