forked from faker-ruby/faker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
faker.gemspec
23 lines (19 loc) · 902 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
23
$:.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 = "https://github.com/stympy/faker"
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.license = 'MIT'
s.rubyforge_project = "faker"
s.add_dependency('i18n', '~> 0.5')
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