Sha256: 8a1fb0319e8f2b2c3978198a1b6da8f75392c7ad9988c02b6151b1dae92c3c79

Contents?: true

Size: 1.11 KB

Versions: 1

Compression:

Stored size: 1.11 KB

Contents

$:.push File.expand_path("../lib", __FILE__)
require "depl/version"

Gem::Specification.new do |s|
  s.name        = "depl"
  s.version     = Depl::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Michael Nutt"]
  s.email       = ["michael@movableink.com"]
  s.homepage    = "https://github.com/movableink/depl"
  s.summary     = %q{Writes project deployment hash to s3 file}
  s.licenses    = "MIT"
  s.description = %q{Separate out the deployment concerns from your application by using depl to write your latest deployed git hash to s3. Then let your provisioning system (for instance, chef + deploy_revision provider) take care of actually deploying new code. depl shows diffs between your current branch and the deployed revision.}

  s.add_runtime_dependency "highline", "~> 1.6"
  s.add_runtime_dependency "colorize", "~> 0.7"

  s.add_development_dependency "rspec", "~> 2.5"

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths = ["lib"]
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
depl-0.0.1 depl.gemspec