Sha256: 9a85f3ae4913fc2f700f993b6b87e7013b9bf077aeb61d4e1ef5b7b7bd0fc167

Contents?: true

Size: 1.43 KB

Versions: 1

Compression:

Stored size: 1.43 KB

Contents

# coding: utf-8
# frozen_string_literal: true

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

Gem::Specification.new do |spec|
  spec.name          = 'humanized_id'
  spec.version       = HumanizedId::VERSION
  spec.authors       = ['Akil Madan']
  spec.email         = ['support@travellink.com.au']

  spec.summary       = 'Gem to convert an existing id to a human friendly id or ' \
                       'generate a new human friendly random id'
  spec.description   = 'HumanizedId can be used to generate (or convert an existing id to) a ' \
                       'human friendly id'
  spec.homepage      = 'https://github.com/sealink/humanized_id'
  spec.license       = 'MIT'

  spec.files         = `git ls-files -z`
                       .split("\x0")
                       .reject { |f| f.match(%r{^(test|spec|features)/}) }
  spec.bindir        = 'exe'
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ['lib']

  spec.required_ruby_version = '>= 2.1'

  spec.add_development_dependency 'bundler'
  spec.add_development_dependency 'rake'
  spec.add_development_dependency 'rspec'
  spec.add_development_dependency 'simplecov'
  spec.add_development_dependency 'simplecov-rcov'
  spec.add_development_dependency 'coveralls'
  spec.add_development_dependency 'rubocop'
  spec.add_development_dependency 'travis'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
humanized_id-0.2.0 humanized_id.gemspec