-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrandomperson.gemspec
More file actions
21 lines (19 loc) · 898 Bytes
/
randomperson.gemspec
File metadata and controls
21 lines (19 loc) · 898 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- encoding: utf-8 -*-
require File.expand_path( '../lib/randomperson/version', __FILE__ )
Gem::Specification.new do |s|
s.authors = ["Iain Barnett"]
s.email = ["iainspeed@gmail.com"]
s.license = "MIT"
s.description = <<-EOF
RandomPerson is a port to Ruby of Perl's Data::RandomPerson. Use it to generate random persons given various parameters, such as country, age and gender ratio.
EOF
s.summary = "A gem for generating random persons :)"
s.homepage = "http://github.com/yb66/RandomPerson"
s.files = `git ls-files`.split($\)
s.executables = s.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.name = "randomperson"
s.require_paths = ['lib']
s.version = RandomPerson::VERSION
s.required_ruby_version = ">= 2.0.0"
end