knife-github 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -16,7 +16,11 @@
16
16
  # limitations under the License.
17
17
  #
18
18
 
19
- # require 'chef/knife'
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"
@@ -2,7 +2,6 @@ require 'mixlib/config'
2
2
  module Github
3
3
  module Config
4
4
  extend Mixlib::Config
5
- config_strict_mode true
6
5
  config_context :knife do
7
6
  configurable :github_url
8
7
  configurable :github_organizations
@@ -1,6 +1,6 @@
1
1
  module Knife
2
2
  module Github
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.1"
4
4
  MAJOR, MINOR, TINY = VERSION.split('.')
5
5
  end
6
6
  end
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.0
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: 2013-12-31 00:00:00.000000000 Z
13
+ date: 2014-01-02 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: mixlib-versioning