-
Notifications
You must be signed in to change notification settings - Fork 119
/
Copy pathforgery.gemspec
24 lines (19 loc) · 1020 Bytes
/
forgery.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path('lib', __dir__)
require 'forgery/version'
Gem::Specification.new do |spec|
spec.name = 'forgery'
spec.version = Forgery::VERSION
spec.authors = ['Nathan Sutton', 'Brandon Arbini', 'Kamil Kieliszczyk']
spec.homepage = 'http://github.com/sevenwire/forgery'
spec.summary = 'Easy and customizable generation of forged data.'
spec.description = 'Easy and customizable generation of forged data. Can be used as a gem or a rails plugin. Includes rails generators for creating your own forgeries.'
spec.licenses = ['MIT']
spec.platform = Gem::Platform::RUBY
spec.required_rubygems_version = '>= 1.3.6'
spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
spec.test_files = `git ls-files spec`.split($INPUT_RECORD_SEPARATOR)
spec.require_paths = %w[lib]
spec.add_development_dependency 'bundler', '~> 2.1.4'
end