Sha256: 07d3dbc976467935d6b54142d510e0f9ce9cc3ea4106e1cff190f261edefbf30

Contents?: true

Size: 1.14 KB

Versions: 1

Compression:

Stored size: 1.14 KB

Contents

lib = File.expand_path('../lib', __FILE__)

$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'hanami/helpers/version'

Gem::Specification.new do |spec|
  spec.name          = 'hanami-helpers'
  spec.version       = Hanami::Helpers::VERSION
  spec.authors       = ['Luca Guidi']
  spec.email         = ['me@lucaguidi.com']
  spec.summary       = 'Hanami helpers'
  spec.description   = 'View helpers for Ruby applications'
  spec.homepage      = 'http://hanamirb.org'
  spec.license       = 'MIT'

  spec.files         = `git ls-files -- lib/* CHANGELOG.md LICENSE.md README.md hanami-helpers.gemspec`.split($/) # rubocop:disable Style/SpecialGlobalVars

  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 = '>= 2.3.0'

  spec.add_dependency 'hanami-utils', '1.2.0.rc1'

  spec.add_development_dependency 'bundler',    '~> 1.6'
  spec.add_development_dependency 'dry-struct', '~> 0.3'
  spec.add_development_dependency 'rake',       '~> 12'
  spec.add_development_dependency 'rspec',      '~> 3.7'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
hanami-helpers-1.2.0.rc1 hanami-helpers.gemspec