amarshall/windcharger

View on GitHub
windcharger.gemspec

Summary

Maintainability
Test Coverage
# frozen_string_literal: true

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

Gem::Specification.new do |spec|
  spec.name          = 'windcharger'
  spec.version       = Windcharger::VERSION
  spec.authors       = ['Andrew Marshall']
  spec.email         = ['andrew@johnandrewmarshall.com']
  spec.description   = %q{Small library to easily make objects that transform input via many methods.}
  spec.summary       = %q{Small library to easily make objects that transform input via many methods.}
  spec.homepage      = 'http://johnandrewmarshall.com/projects/windcharger'
  spec.license       = 'MIT'

  spec.files         = `git ls-files`.split($/)
  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.add_development_dependency 'bundler', '>= 1.3', '< 3.0'
  spec.add_development_dependency 'rake'
  spec.add_development_dependency 'rspec'
end