# -*- encoding: utf-8 -*- require File.expand_path('../lib/gem_configurator/version', __FILE__) Gem::Specification.new do |gem| gem.authors = ["Ian Whitney"] gem.email = ["ian@ianwhitney.com"] gem.description = %q{Implements a standard way of using yml files to configure gems.} gem.summary = %q{Implements a standard way of using yml files to configure gems.} 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