-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfitments.gemspec
35 lines (31 loc) · 983 Bytes
/
fitments.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
25
26
27
28
29
30
31
32
33
34
35
# frozen_string_literal: true
require File.expand_path('lib/fitments/version', __dir__)
Gem::Specification.new do |spec|
spec.name = 'fitments'
spec.version = Fitments::VERSION
spec.authors = [
'Manfred Stienstra'
]
spec.email = [
]
spec.summary = <<-SUMMARY
Tools for automatically generating development and test data.
SUMMARY
spec.description = <<-DESCRIPTION
Fitments provides a number of classes that help with generating development
and test data.
DESCRIPTION
spec.homepage = 'https://github.com/Fingertips/fitments'
spec.license = 'MIT'
spec.files = Dir.glob('lib/**/*') + [
'LICENSE.txt',
'README.md'
]
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 2.6'
spec.add_development_dependency 'activerecord', '>= 5'
spec.add_development_dependency 'minitest', '>= 5'
spec.add_development_dependency 'rake', '~> 12'
spec.add_development_dependency 'sqlite3', '~> 1'
end