forked from faker-ruby/faker
-
Notifications
You must be signed in to change notification settings - Fork 2
/
faker.gemspec
22 lines (18 loc) · 875 Bytes
/
faker.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
$:.push File.expand_path("../lib", __FILE__)
require "faker/version"
Gem::Specification.new do |s|
s.name = "faker"
s.version = Faker::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Benjamin Curtis"]
s.email = ["[email protected]"]
s.homepage = "http://faker.rubyforge.org"
s.summary = %q{Easily generate fake data}
s.description = %q{Faker, a port of Data::Faker from Perl, is used to easily generate fake data: names, addresses, phone numbers, etc.}
s.rubyforge_project = "faker"
s.add_dependency('i18n', '~> 0.4')
s.files = `git ls-files -- lib/*`.split("\n") + %w(History.txt License.txt README.md)
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
end