davearonson/hook_lying_syncer

View on GitHub
hook_lying_syncer.gemspec

Summary

Maintainability
Test Coverage
# coding: utf-8
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "hook_lying_syncer/version"

Gem::Specification.new do |spec|
  spec.name          = "hook_lying_syncer"
  spec.version       = HookLyingSyncer::VERSION
  spec.authors       = ["Dave Aronson"]
  spec.email         = ["hook_lying_syncer_gemspec.2.TRex@Codosaur.us"]
  spec.summary       = %q{Keeps method_missing and respond_to_missing? in sync.}
  spec.description   = %q{Provides a decorator class you can wrap objects in (even classes!) to keep method_missing and respond_to_missing? in sync.  Requires Ruby 1.9 or later; see README for details.}
  spec.homepage      = ""
  spec.license       = "MIT"

  spec.files         = `git ls-files -z`.split("\x0")
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
  spec.require_paths = ["lib"]
  spec.required_ruby_version = '>= 1.9'

  # no version numbers 'cuz they're only dev dependencies and having too-high
  # numbers could make dependency resolution impossible for older rubies
  spec.add_development_dependency "bundler", ">= 0"
  spec.add_development_dependency "rake", ">= 0"
  spec.add_development_dependency "rspec", ">= 0"
end