Sha256: 728c3fbfa523bef2e443a78ed452437936964ea4eedc6eef92a22e858fa71668

Contents?: true

Size: 1.35 KB

Versions: 1

Compression:

Stored size: 1.35 KB

Contents

# encoding: utf-8

lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'implements/version'

Gem::Specification.new do |spec|
  spec.name          = 'implements'
  spec.version       = Implements::VERSION
  spec.authors       = ['Ryan Biesemeyer']
  spec.email         = ['ryan@simplymeasured.com']
  spec.summary       = 'A tool for building and implementing interfaces.'
  spec.description   = <<-EODESC.gsub(/^[\w]+/, ' ').squeeze
    Implements is a tool for building modular libraries and tools as
    interfaces, for implementing those interfaces, and ensuring that
    consumers are able to load the best available implementation at
    runtime.
  EODESC
  spec.homepage      = 'https://github.com/yaauie/implements'
  spec.license       = 'MIT'

  spec.files         = `git ls-files`.split($/)
  spec.executables   = spec.files.grep(/^bin\//) { |f| File.basename(f) }
  spec.test_files    = spec.files.grep(/^(test|spec|features)\//)
  spec.require_paths = ['lib']

  spec.add_runtime_dependency     'activesupport'

  spec.add_development_dependency 'bundler', '~> 1.3', '>= 1.3.5'
  spec.add_development_dependency 'rake'
  spec.add_development_dependency 'rspec', '~> 2.14'


  # code quality
  spec.add_development_dependency 'ruby-appraiser-reek'
  spec.add_development_dependency 'ruby-appraiser-rubocop'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
implements-0.0.2 implements.gemspec