Sha256: 1494fd8059f58def52e7e49ebf5b445ae4eba3a20aae3cda7c01d714504040eb
Contents?: true
Size: 1.05 KB
Versions: 1
Compression:
Stored size: 1.05 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) module ToSlugParam VERSION = "1.7" end Gem::Specification.new do |spec| spec.name = 'to_slug_param' spec.version = ToSlugParam::VERSION spec.authors = ['Ilya N. Zykin'] spec.email = ['zykin-ilya@ya.ru'] spec.description = %q{ Convert strings and symbols to slug param } spec.summary = %q{ Transliteration + Parameterization for slugs building } spec.homepage = 'https://github.com/TheOpenCMS/to_slug_param' 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 'rake', '>= 0', '< 14.0' spec.add_runtime_dependency 'rails-i18n', '>= 0', '< 7.0' spec.add_runtime_dependency 'rails', '>= 4.0.3', '< 7.0' spec.add_runtime_dependency 'stringex', '>= 2.7.1', '< 3.0' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
to_slug_param-1.7 | to_slug_param.gemspec |