forked from tomharris/random_data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
random_data.gemspec
22 lines (19 loc) · 914 Bytes
/
random_data.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
$LOAD_PATH.unshift File.expand_path("../lib", __FILE__)
require "random_data/version"
Gem::Specification.new do |s|
s.name = "random_data"
s.version = RandomData::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Mike Subelsky", "Tom Harris"]
s.email = "[email protected]"
s.homepage = "http://github.com/tomharris/random_data"
s.summary = "A Ruby gem that provides a Random class with a series of methods for generating random test data including names, mailing addresses, dates, phone numbers, e-mail addresses, and text."
s.description = "Random data generator"
s.rubygems_version = "1.3.7"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- test/*`.split("\n")
s.extra_rdoc_files = [ "README.rdoc" ]
s.rdoc_options = ["--charset=UTF-8"]
s.require_path = "lib"
end