knife-wrapper 0.0.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.
Files changed (2) hide show
  1. data/bin/knife +32 -0
  2. metadata +48 -0
data/bin/knife ADDED
@@ -0,0 +1,32 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # ./knife - Chef CLI interface
4
+ #
5
+ # Author:: Adam Jacob (<adam@opscode.com>)
6
+ # Copyright:: Copyright (c) 2009 Opscode, Inc.
7
+ # License:: Apache License, Version 2.0
8
+ #
9
+ # Licensed under the Apache License, Version 2.0 (the "License");
10
+ # you may not use this file except in compliance with the License.
11
+ # You may obtain a copy of the License at
12
+ #
13
+ # http://www.apache.org/licenses/LICENSE-2.0
14
+ #
15
+ # Unless required by applicable law or agreed to in writing, software
16
+ # distributed under the License is distributed on an "AS IS" BASIS,
17
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18
+ # See the License for the specific language governing permissions and
19
+ # limitations under the License.
20
+
21
+
22
+ # Modified to include the Bundler setup because I need to load
23
+ # some plugins from a gem loaded by Bundler from a git repo
24
+
25
+ require 'rubygems'
26
+ require 'bundler/setup'
27
+
28
+ $:.unshift(File.expand_path(File.join(File.dirname(__FILE__), "..", "lib")))
29
+
30
+ require 'chef/application/knife'
31
+
32
+ Chef::Application::Knife.new.run
metadata ADDED
@@ -0,0 +1,48 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: knife-wrapper
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Andrew Battye
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2011-07-03 00:00:00.000000000 +01:00
13
+ default_executable:
14
+ dependencies: []
15
+ description:
16
+ email: andrew@battye.com
17
+ executables:
18
+ - knife
19
+ extensions: []
20
+ extra_rdoc_files: []
21
+ files:
22
+ - bin/knife
23
+ has_rdoc: true
24
+ homepage: ''
25
+ licenses: []
26
+ post_install_message:
27
+ rdoc_options: []
28
+ require_paths:
29
+ - lib
30
+ required_ruby_version: !ruby/object:Gem::Requirement
31
+ none: false
32
+ requirements:
33
+ - - ! '>='
34
+ - !ruby/object:Gem::Version
35
+ version: '0'
36
+ required_rubygems_version: !ruby/object:Gem::Requirement
37
+ none: false
38
+ requirements:
39
+ - - ! '>='
40
+ - !ruby/object:Gem::Version
41
+ version: '0'
42
+ requirements: []
43
+ rubyforge_project:
44
+ rubygems_version: 1.6.2
45
+ signing_key:
46
+ specification_version: 3
47
+ summary: Modified Chef Knife script which is forced to load bundler/setup
48
+ test_files: []