Sha256: 10d20298a84ed419f0ea1fc1e9e20076ee94c656a777ddc365acb6a93f17caec

Contents?: true

Size: 1.32 KB

Versions: 1

Compression:

Stored size: 1.32 KB

Contents

# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "lambom/version"

Gem::Specification.new do |s|
  s.name        = 'lambom'
  s.version     = Lambom::VERSION
  s.date        = Date.today.to_s
  s.summary     = "Tool to configure servers based on chef-solo and berkshelf"
  s.description = <<-EOF
Riyic is a server configuration service based on chef (http://riyic.com).
The lambom gem is a tool to apply chef configurations generated with the riyic service, or defined in a pair of plain text files 
(a json attributes file where the server configuration is detailed and a berkshelf file which specifies cookbooks restrictions and sources).
EOF

  s.authors     = ["J. Gomez"]
  s.email       = 'alambike@gmail.com'
  s.require_paths = ["lib"]
  s.executables << 'lambom'
  s.files         = `git ls-files`.split($/)
  s.license       = 'Apache-2.0'

  s.add_runtime_dependency "oj","~> 2.5"
  #s.add_runtime_dependency "mixlib-authentication","~> 1.3"
  #s.add_runtime_dependency "mixlib-shellout","~> 1.3"
  #s.add_runtime_dependency "chef","~> 11.8"
  s.add_runtime_dependency "chef", "~> 12.0.3"

  # s.add_runtime_dependency "berkshelf","~> 2.0.12"

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

  s.homepage    =
    'https://github.com/RIYIC/lambom'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
lambom-0.4.8 lambom.gemspec