Skip to content
This repository has been archived by the owner on May 22, 2018. It is now read-only.

Commit

Permalink
Add the basic gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
jbarnette committed Nov 29, 2012
1 parent 156dfa5 commit 9157ac7
Show file tree
Hide file tree
Showing 5 changed files with 85 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/.bundle
/bin
2 changes: 2 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
source "http://rubygems.org"
gemspec
51 changes: 51 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
PATH
remote: .
specs:
cardboard (0.0.0)
librarian-puppet (~> 0.9)
puppet (~> 3.0)
puppet-lint (~> 0.3)
puppetlabs_spec_helper (~> 0.3)
rspec-puppet (~> 0.1)

GEM
remote: http://rubygems.org/
specs:
diff-lcs (1.1.3)
facter (1.6.15)
hiera (1.0.0)
json (1.7.5)
librarian-puppet (0.9.7)
json
puppet
thor (~> 0.15)
metaclass (0.0.1)
mocha (0.13.0)
metaclass (~> 0.0.1)
puppet (3.0.1)
facter (~> 1.6.11)
hiera (~> 1.0.0)
puppet-lint (0.3.2)
puppetlabs_spec_helper (0.3.0)
mocha (>= 0.10.5)
rake
rspec (>= 2.9.0)
rspec-puppet (>= 0.1.1)
rake (10.0.2)
rspec (2.12.0)
rspec-core (~> 2.12.0)
rspec-expectations (~> 2.12.0)
rspec-mocks (~> 2.12.0)
rspec-core (2.12.0)
rspec-expectations (2.12.0)
diff-lcs (~> 1.1.3)
rspec-mocks (2.12.0)
rspec-puppet (0.1.5)
rspec
thor (0.16.0)

PLATFORMS
ruby

DEPENDENCIES
cardboard!
21 changes: 21 additions & 0 deletions cardboard.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# -*- encoding: utf-8 -*-

Gem::Specification.new do |gem|
gem.name = "cardboard"
gem.version = "0.0.0"
gem.authors = ["John Barnette", "Will Farrington"]
gem.email = ["jbarnette@github.com", "wfarr@github.com"]
gem.description = "Development tools for Boxen's puppet modules."
gem.summary = "Because copypasta is for toolbags."
gem.homepage = "https://github.com/boxen/cardboard"

gem.files = `git ls-files`.split $/
gem.test_files = gem.files.grep /^test/
gem.require_paths = ["lib"]

gem.add_dependency "librarian-puppet", "~> 0.9"
gem.add_dependency "puppet", "~> 3.0"
gem.add_dependency "puppet-lint", "~> 0.3"
gem.add_dependency "puppetlabs_spec_helper", "~> 0.3"
gem.add_dependency "rspec-puppet", "~> 0.1"
end
9 changes: 9 additions & 0 deletions script/bootstrap
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/sh
# Make sure all local dependencies are available.

set -e

cd $(dirname "$0")/..

rm -rf .bundle/config
bundle install --binstubs bin --path .bundle --quiet

0 comments on commit 9157ac7

Please sign in to comment.