drnic/readwritesettings

View on GitHub
readwritesettings.gemspec

Summary

Maintainability
Test Coverage
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)

Gem::Specification.new do |s|
  s.name        = "readwritesettings"
  s.version     = "3.0.1"
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Dr Nic Williams", "Ben Johnson"]
  s.email       = ["drnicwilliams@gmail.com", "bjohnson@binarylogic.com"]
  s.homepage    = "http://github.com/drnic/readwritesettings"
  s.summary     = %q{A simple settings solution that uses an ERB enabled YAML file and a singleton design pattern.}
  s.description = %q{A simple settings solution that uses an ERB enabled YAML file and a singleton design pattern.}

  s.add_development_dependency 'rake'
  s.add_development_dependency 'rspec'

  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