Sha256: 672676dea438793eb834f21fe4c410a13026d28bfc1f6b2d1c8c8db24f35b145
Contents?: true
Size: 1.09 KB
Versions: 1
Compression:
Stored size: 1.09 KB
Contents
# frozen_string_literal: true require_relative 'lib/fast_parameterize/version' version = FastParameterize::VERSION repository = 'https://github.com/kddnewton/fast_parameterize' Gem::Specification.new do |spec| spec.name = 'fast_parameterize' spec.version = version spec.authors = ['Kevin Newton'] spec.email = ['kddnewton@gmail.com'] spec.summary = 'Fast String#parameterize implementation' spec.description = 'Provides a C-optimized method for parameterizing a string' spec.homepage = repository spec.license = 'MIT' spec.metadata = { 'bug_tracker_uri' => "#{repository}/issues", 'changelog_uri' => "#{repository}/blob/v#{version}/CHANGELOG.md", 'source_code_uri' => repository, 'rubygems_mfa_required' => 'true' } spec.files = Dir.chdir(__dir__) do `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end end spec.bindir = 'exe' spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = %w[lib] spec.extensions = ['ext/fast_parameterize/extconf.rb'] end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fast_parameterize-0.1.2 | fast_parameterize.gemspec |