Sha256: d920120a886482f37b5f89c30939243eb51a810b1f321a97e9fcc516c8b12477
Contents?: true
Size: 1.21 KB
Versions: 1
Compression:
Stored size: 1.21 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'random_strings/version' Gem::Specification.new do |spec| spec.name = "random_strings" spec.version = RandomStrings::VERSION spec.authors = ["Sameer Siruguri"] spec.email = ["sameers.public@gmail.com"] spec.description = %q{This gem helps you generate random string of various "types" - a random email, a random date, a random Twitter handle, etc. Or just a random string.} spec.summary = %q{Do it like this: RandomString::Generator.new.random_email -> boom, you got y7nnha8@uioop.com! Most of the formats follow the Principle Of Least Surprise. Like, an email won't look like 7*6=42@hitchhiker.galaxy} spec.homepage = "http://github.com/siruguri/random_strings" 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 "bundler", "~> 1.3" spec.add_development_dependency "rake" spec.add_development_dependency 'minitest' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
random_strings-0.0.1 | random_strings.gemspec |