Sha256: 0ac225a6e75682063a4a965934600f21a458a6dd0f6ce57c87b6fe764bebca8d
Contents?: true
Size: 869 Bytes
Versions: 1
Compression:
Stored size: 869 Bytes
Contents
# -*- encoding: utf-8 -*- lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'markov_uuid/version' Gem::Specification.new do |gem| gem.name = "markov_uuid" gem.version = MarkovUuid::VERSION gem.authors = ["Mark Burns"] gem.email = ["markthedeveloper@gmail.com"] gem.description = %q{People friendly readable UUIDs} gem.summary = %q{Easily generate random English-like UUIDs (or any other language) that are more natural to convey to other people. E.g. over the phone, etc.} gem.homepage = "http://github.com/markburns/markov_uuid" gem.files = `git ls-files`.split($/) gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) } gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) gem.require_paths = ["lib"] end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
markov_uuid-0.0.1 | markov_uuid.gemspec |