puppetdb-terminus 1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/Gemfile +4 -0
  2. data/README.md +9 -0
  3. data/puppetdb-terminus.gemspec +18 -0
  4. metadata +49 -0
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in puppetdb-terminus.gemspec
4
+ gemspec
@@ -0,0 +1,9 @@
1
+ # PuppetDB Terminus Gemspec
2
+
3
+ The files in this directory are intended to provide a starting point for
4
+ building a gem package of the puppetdb terminus code. This will be useful
5
+ for cases where puppet is being installed as a gem and you would also like to
6
+ include puppetdb.
7
+
8
+ Note that support for installing the puppetdb termini via rubygems relies on
9
+ changes to the puppet autoloader that were first introduced in the 3.0 series.
@@ -0,0 +1,18 @@
1
+ # -*- encoding: utf-8 -*-
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+
5
+ Gem::Specification.new do |gem|
6
+ gem.name = "puppetdb-terminus"
7
+ gem.version = "1.0"
8
+ gem.authors = ["Puppet Labs"]
9
+ gem.email = ["puppet@puppetlabs.com"]
10
+ gem.description = "Centralized Puppet Storage"
11
+ gem.summary = "PuppetDB is a Puppet data warehouse; it manages storage and retrieval of all platform-generated data, such as catalogs, facts, reports"
12
+ gem.homepage = "https://github.com/puppetlabs/puppetdb"
13
+
14
+ gem.files = `git ls-files`.split($/)
15
+ gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
16
+ gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
17
+ gem.require_paths = ["lib"]
18
+ end
metadata ADDED
@@ -0,0 +1,49 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: puppetdb-terminus
3
+ version: !ruby/object:Gem::Version
4
+ version: '1.0'
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Puppet Labs
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-09-04 00:00:00.000000000 Z
13
+ dependencies: []
14
+ description: Centralized Puppet Storage
15
+ email:
16
+ - puppet@puppetlabs.com
17
+ executables: []
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - Gemfile
22
+ - README.md
23
+ - puppetdb-terminus.gemspec
24
+ homepage: https://github.com/puppetlabs/puppetdb
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.8.23
45
+ signing_key:
46
+ specification_version: 3
47
+ summary: PuppetDB is a Puppet data warehouse; it manages storage and retrieval of
48
+ all platform-generated data, such as catalogs, facts, reports
49
+ test_files: []