Sha256: d8057ce0d8108dc597b2b11655e3cf512e5d642beeadc495298374239fa28e9e
Contents?: true
Size: 1.9 KB
Versions: 3
Compression:
Stored size: 1.9 KB
Contents
# -*- encoding: utf-8 -*- # Copyright 2013-2014 Bazaarvoice, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'cloudformation-ruby-dsl/version' Gem::Specification.new do |gem| gem.name = "cloudformation-ruby-dsl" gem.version = Cfn::Ruby::Dsl::VERSION gem.authors = ["Shawn Smith", "Dave Barcelo", "Morgan Fletcher", "Csongor Gyuricza", "Igor Polishchuk", "Nathaniel Eliot", "Jona Fenocchi", "Tony Cui"] gem.email = ["Shawn.Smith@bazaarvoice.com", "Dave.Barcelo@bazaarvoice.com", "Morgan.Fletcher@bazaarvoice.com", "Csongor.Gyuricza@bazaarvoice.com", "Igor.Polishchuk@bazaarvoice.com", "Nathaniel.Eliot@bazaarvoice.com", "Jona.Fenocchi@bazaarvoice.com", "Tony.Cui@bazaarvoice.com"] gem.description = %q{Ruby DSL library that provides a wrapper around the cfn-cmd.} gem.summary = %q{Ruby DSL library that provides a wrapper around the cfn-cmd. Written by [Bazaarvoice](http://www.bazaarvoice.com).} gem.homepage = "http://github.com/bazaarvoice/cloudformation-ruby-dsl" gem.files = `git ls-files`.split($/) gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) } gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) gem.require_paths = %w{lib bin} gem.add_runtime_dependency 'detabulator' gem.add_runtime_dependency 'json' end
Version data entries
3 entries across 3 versions & 1 rubygems