knife-wrench 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.
- checksums.yaml +7 -0
- data/Gemfile +2 -0
- data/Rakefile +56 -0
- data/knife-wrench.gemspec +21 -0
- metadata +62 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 684ee4ab48dffd9aad4793e2d00d632bfcd7cc66
|
|
4
|
+
data.tar.gz: eac4adf4e761c546d2cb55fa3b566ec253a8ffdc
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 205378286b86852fcf7ccdc412909664e18f9ba59da6c4b2890e03b050182141c844c88da16f9386db4f4828a731aa2660d4737fb42d1b7afcaf30fb9e048ec7
|
|
7
|
+
data.tar.gz: eb55156547979b53fba9e24621625981123c316cbb76717b9e0e55b7edeb97d759e63293fd07a52d97d35e25ad81f9a0e7fc3a84b3b8cb92b554af248f85375c
|
data/Gemfile
ADDED
data/Rakefile
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
#
|
|
2
|
+
# Author:: Adam Jacob (<adam@opscode.com>)
|
|
3
|
+
# Author:: Daniel DeLeo (<dan@opscode.com>)
|
|
4
|
+
# Author:: Seth Chisamore (<schisamo@opscode.com>)
|
|
5
|
+
# Copyright:: Copyright (c) 2008, 2010 Opscode, Inc.
|
|
6
|
+
# License:: Apache License, Version 2.0
|
|
7
|
+
#
|
|
8
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
9
|
+
# you may not use this file except in compliance with the License.
|
|
10
|
+
# You may obtain a copy of the License at
|
|
11
|
+
#
|
|
12
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
13
|
+
#
|
|
14
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
15
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
16
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
17
|
+
# See the License for the specific language governing permissions and
|
|
18
|
+
# limitations under the License.
|
|
19
|
+
#
|
|
20
|
+
|
|
21
|
+
require 'bundler'
|
|
22
|
+
Bundler::GemHelper.install_tasks
|
|
23
|
+
|
|
24
|
+
# require 'rubygems'
|
|
25
|
+
# require 'rake/gempackagetask'
|
|
26
|
+
require 'rdoc/task'
|
|
27
|
+
|
|
28
|
+
begin
|
|
29
|
+
require 'sdoc'
|
|
30
|
+
require 'rdoc/task'
|
|
31
|
+
|
|
32
|
+
RDoc::Task.new do |rdoc|
|
|
33
|
+
rdoc.title = 'Chef Ruby API Documentation'
|
|
34
|
+
rdoc.main = 'README.rdoc'
|
|
35
|
+
rdoc.options << '--fmt' << 'shtml' # explictly set shtml generator
|
|
36
|
+
rdoc.template = 'direct' # lighter template
|
|
37
|
+
rdoc.rdoc_files.include('README.rdoc', 'LICENSE', 'spec/tiny_server.rb', 'lib/**/*.rb')
|
|
38
|
+
rdoc.rdoc_dir = 'rdoc'
|
|
39
|
+
end
|
|
40
|
+
rescue LoadError
|
|
41
|
+
puts 'sdoc is not available. (sudo) gem install sdoc to generate rdoc documentation.'
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
begin
|
|
45
|
+
require 'rspec/core/rake_task'
|
|
46
|
+
|
|
47
|
+
task :default => :spec
|
|
48
|
+
|
|
49
|
+
desc 'Run all specs in spec directory'
|
|
50
|
+
RSpec::Core::RakeTask.new(:spec) do |t|
|
|
51
|
+
t.pattern = 'spec/unit/**/*_spec.rb'
|
|
52
|
+
end
|
|
53
|
+
|
|
54
|
+
rescue LoadError
|
|
55
|
+
STDERR.puts "\n*** RSpec not available. (sudo) gem install rspec to run unit tests. ***\n\n"
|
|
56
|
+
end
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
|
2
|
+
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
|
|
3
|
+
|
|
4
|
+
Gem::Specification.new do |s|
|
|
5
|
+
s.name = 'knife-wrench'
|
|
6
|
+
s.version = '0.0.1'
|
|
7
|
+
s.authors = ['Brent.Smith']
|
|
8
|
+
s.email = ['brent.smith@lightspeedretail.com']
|
|
9
|
+
s.homepage = ''
|
|
10
|
+
s.summary = "knife wrench, for kids!"
|
|
11
|
+
s.description = "placeholder"
|
|
12
|
+
s.license = 'private'
|
|
13
|
+
|
|
14
|
+
s.files = `git ls-files`.split("\n")
|
|
15
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
16
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
|
|
17
|
+
|
|
18
|
+
s.add_dependency 'knife-ec2', '~> 0.10.0'
|
|
19
|
+
|
|
20
|
+
s.require_paths = ['lib']
|
|
21
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: knife-wrench
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Brent.Smith
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2015-10-18 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: knife-ec2
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: 0.10.0
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: 0.10.0
|
|
27
|
+
description: placeholder
|
|
28
|
+
email:
|
|
29
|
+
- brent.smith@lightspeedretail.com
|
|
30
|
+
executables: []
|
|
31
|
+
extensions: []
|
|
32
|
+
extra_rdoc_files: []
|
|
33
|
+
files:
|
|
34
|
+
- Gemfile
|
|
35
|
+
- Rakefile
|
|
36
|
+
- knife-wrench.gemspec
|
|
37
|
+
homepage: ''
|
|
38
|
+
licenses:
|
|
39
|
+
- private
|
|
40
|
+
metadata: {}
|
|
41
|
+
post_install_message:
|
|
42
|
+
rdoc_options: []
|
|
43
|
+
require_paths:
|
|
44
|
+
- lib
|
|
45
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
46
|
+
requirements:
|
|
47
|
+
- - ">="
|
|
48
|
+
- !ruby/object:Gem::Version
|
|
49
|
+
version: '0'
|
|
50
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - ">="
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '0'
|
|
55
|
+
requirements: []
|
|
56
|
+
rubyforge_project:
|
|
57
|
+
rubygems_version: 2.4.4
|
|
58
|
+
signing_key:
|
|
59
|
+
specification_version: 4
|
|
60
|
+
summary: knife wrench, for kids!
|
|
61
|
+
test_files: []
|
|
62
|
+
has_rdoc:
|