# -*- encoding: utf-8 -*- require File.expand_path('../lib/gem_configurator/version', __FILE__) Gem::Specification.new do |gem| gem.authors = ["Ian Whitney", "Davin Lagerroos"] gem.email = ["iwhitney@ssa-i.org", "dlagerroos@ssa-i.org"] gem.description = %q{Implements a standard way of using yml files to configure gems.} gem.summary = %q{Provides a simple, uniform way to configure a gem with a yaml file. Designed to work within a Rails app.} gem.homepage = "https://github.com/SeniorServiceAmerica/gem_configurator" 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.name = "gem_configurator" gem.require_paths = ["lib"] gem.version = GemConfigurator::VERSION gem.add_dependency('activesupport', '>= 3.0.0') end