Skip to content

Instantly share code, notes, and snippets.

@pzim
Created November 20, 2014 14:29
Show Gist options
  • Save pzim/375e39c5aa5445c9ad75 to your computer and use it in GitHub Desktop.
Save pzim/375e39c5aa5445c9ad75 to your computer and use it in GitHub Desktop.
abandoned gemspec for reaktor
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'reaktor/version'
Gem::Specification.new do |s|
s.name = "reaktor"
s.version = Reaktor::VERSION
s.platform = Gem::Platform::RUBY
s.authors = "Phil Zimmerman"
s.email = "pzimmerman.home@gmail.com"
s.homepage = "http://github.com/philzim/reaktor"
s.summary = "R10K deployment hook"
s.description = <<-DESCRIPTION
Reaktor is a modular sinatra post-receive hook designed to work with r10k. It
provides the energy to power the 10,000 killer robots in your Puppet infrastructure.
Reaktor uses r10k to deploy your changes to all of your puppet masters and notifies
you when all changes have been deployed.
DESCRIPTION
s.license = 'Apache 2.0'
s.add_development_dependency 'rspec', '~> 2.14.0'
s.add_development_dependency 'yard', '~> 0.8.7.3'
s.add_runtime_dependency 'sinatra', '~> 1.4.5'
s.add_dependency 'sinatra-contrib', '~> 1.4.2'
s.add_dependency 'json', '~> 1.8.1'
s.add_dependency 'redis', '~> 3.0.7'
s.add_dependency 'resque', '~> 1.25.2'
s.add_dependency 'thin', '~> 1.6.2'
s.add_dependency 'god', '~> 0.13.4'
s.add_dependency 'hipchat-api', '~> 1.0.6'
s.add_dependency 'capistrano', '~> 2.15.5'
s.files = %x[git ls-files].split($/)
s.require_paths = ['lib']
s.bindir = 'bin'
s.executables = 'reaktor'
s.test_files = Dir.glob("spec/**/*_spec.rb")
s.post_install_message = <<-EOD
Finished installing reaktor...
EOD
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment