Sha256: 5289379eaeec427c2f65615ca260ec8996451466c19d2a10ff6c3d45b364011c
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.3' 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.3.0 | hanami-helpers.gemspec |