chef_handler_foreman 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 +4 -4
- data/lib/chef_handler_foreman/version.rb +1 -1
- metadata +9 -12
- data/.gitignore +0 -19
- data/Gemfile +0 -4
- data/chef_handler_foreman.gemspec +0 -23
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ff449b460fdcac91441b8f199bc24d174e6d23cd
|
|
4
|
+
data.tar.gz: c1374baaabfc94f7955c52ee08cdfbf29239344a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fb3a44d51c5ca0fb6008a065afaaad83c7d0ecab78ae4c8c8f97ddab89e7e14745b9428daf18a19ef499d1a5b9aac3f93be7b7425fa63bd8ba4ecc76acc48d5b
|
|
7
|
+
data.tar.gz: f22c3644b943f482834f11dd7eaccca53313f915ed7f95c76740bc47557500b14c8b500144ebadb4eee73becacf7a62821968a6b6fabb258a820679226b62bdd
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: chef_handler_foreman
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Marek Hulan
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-01-
|
|
11
|
+
date: 2014-01-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -45,19 +45,16 @@ executables: []
|
|
|
45
45
|
extensions: []
|
|
46
46
|
extra_rdoc_files: []
|
|
47
47
|
files:
|
|
48
|
-
- .gitignore
|
|
49
|
-
- Gemfile
|
|
50
|
-
- LICENSE.txt
|
|
51
|
-
- README.md
|
|
52
|
-
- Rakefile
|
|
53
|
-
- chef_handler_foreman.gemspec
|
|
54
|
-
- lib/chef_handler_foreman.rb
|
|
55
|
-
- lib/chef_handler_foreman/foreman_facts.rb
|
|
56
|
-
- lib/chef_handler_foreman/foreman_hooks.rb
|
|
57
|
-
- lib/chef_handler_foreman/foreman_reporting.rb
|
|
58
48
|
- lib/chef_handler_foreman/foreman_resource_reporter.rb
|
|
49
|
+
- lib/chef_handler_foreman/foreman_reporting.rb
|
|
50
|
+
- lib/chef_handler_foreman/foreman_hooks.rb
|
|
51
|
+
- lib/chef_handler_foreman/foreman_facts.rb
|
|
59
52
|
- lib/chef_handler_foreman/foreman_uploader.rb
|
|
60
53
|
- lib/chef_handler_foreman/version.rb
|
|
54
|
+
- lib/chef_handler_foreman.rb
|
|
55
|
+
- LICENSE.txt
|
|
56
|
+
- README.md
|
|
57
|
+
- Rakefile
|
|
61
58
|
homepage: https://github.com/theforeman/chef-handler-foreman
|
|
62
59
|
licenses:
|
|
63
60
|
- MIT
|
data/.gitignore
DELETED
data/Gemfile
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
# coding: utf-8
|
|
2
|
-
lib = File.expand_path('../lib', __FILE__)
|
|
3
|
-
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
|
-
require 'chef_handler_foreman/version'
|
|
5
|
-
|
|
6
|
-
Gem::Specification.new do |spec|
|
|
7
|
-
spec.name = "chef_handler_foreman"
|
|
8
|
-
spec.version = ChefHandlerForeman::VERSION
|
|
9
|
-
spec.authors = ["Marek Hulan"]
|
|
10
|
-
spec.email = ["mhulan@redhat.com"]
|
|
11
|
-
spec.description = %q{Chef handlers to integrate with foreman}
|
|
12
|
-
spec.summary = %q{This gem adds chef handlers so your chef-client can upload attributes (facts) and reports to Foreman}
|
|
13
|
-
spec.homepage = "https://github.com/theforeman/chef-handler-foreman"
|
|
14
|
-
spec.license = "MIT"
|
|
15
|
-
|
|
16
|
-
spec.files = `git ls-files`.split($/)
|
|
17
|
-
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
|
18
|
-
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
|
19
|
-
spec.require_paths = ["lib"]
|
|
20
|
-
|
|
21
|
-
spec.add_development_dependency "bundler", "~> 1.3"
|
|
22
|
-
spec.add_development_dependency "rake"
|
|
23
|
-
end
|