Sha256: 4ed57c8de9e5868f01c30a63fd57c837ee8cb7209b43dba4696c22ee20592237
Contents?: true
Size: 1017 Bytes
Versions: 1
Compression:
Stored size: 1017 Bytes
Contents
# coding: utf-8 # frozen_string_literal: true lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'tokogen/version' Gem::Specification.new do |spec| spec.name = 'tokogen' spec.version = Tokogen::VERSION spec.authors = ['MOZGIII'] spec.email = ['mike-n@narod.ru'] spec.summary = 'Generates random tokens with fixed length and customizable alphabet.' spec.description = 'A ruby gem that allows you to generate customizable random tokens.' spec.homepage = 'https://github.com/MOZGIII/tokogen' spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end spec.bindir = 'exe' spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.add_development_dependency 'bundler', '~> 1.13' spec.add_development_dependency 'rake', '~> 10.0' spec.add_development_dependency 'rspec', '~> 3.0' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tokogen-0.1.2 | tokogen.gemspec |