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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3e394f685ca4a2107e4ba321a02427f081d65b8f
4
- data.tar.gz: d10f0bc9a741ebfe9db225be8c16e0a294f61311
3
+ metadata.gz: ff449b460fdcac91441b8f199bc24d174e6d23cd
4
+ data.tar.gz: c1374baaabfc94f7955c52ee08cdfbf29239344a
5
5
  SHA512:
6
- metadata.gz: 68e2f5d56605be7de7b77dbee723e216b4361f096dd6a5ac5db555e5b32c6528f7bbd45112473af4205d32430629063ee2cf7d345bd90f1b8546ebdb07887355
7
- data.tar.gz: 8ce1b58de59714c7f26606f6de54852cafefdc0e5d1f50e2dc4b454da12fb2fd1c9e59022330890ca434504bb39f3425a1193989d5e644a056326a5d57a70466
6
+ metadata.gz: fb3a44d51c5ca0fb6008a065afaaad83c7d0ecab78ae4c8c8f97ddab89e7e14745b9428daf18a19ef499d1a5b9aac3f93be7b7425fa63bd8ba4ecc76acc48d5b
7
+ data.tar.gz: f22c3644b943f482834f11dd7eaccca53313f915ed7f95c76740bc47557500b14c8b500144ebadb4eee73becacf7a62821968a6b6fabb258a820679226b62bdd
@@ -1,3 +1,3 @@
1
1
  module ChefHandlerForeman
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
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.3
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-15 00:00:00.000000000 Z
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
@@ -1,19 +0,0 @@
1
- *.gem
2
- *.rbc
3
- .bundle
4
- .config
5
- .yardoc
6
- Gemfile.lock
7
- InstalledFiles
8
- _yardoc
9
- coverage
10
- doc/
11
- lib/bundler/man
12
- pkg
13
- rdoc
14
- spec/reports
15
- test/tmp
16
- test/version_tmp
17
- tmp
18
- *.swp
19
- .idea
data/Gemfile DELETED
@@ -1,4 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- # Specify your gem's dependencies in chef_handler_foreman.gemspec
4
- gemspec
@@ -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