-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfixture_record.gemspec
More file actions
22 lines (18 loc) · 932 Bytes
/
fixture_record.gemspec
File metadata and controls
22 lines (18 loc) · 932 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require_relative "lib/fixture_record/version"
Gem::Specification.new do |spec|
spec.name = "fixture_record"
spec.version = FixtureRecord::VERSION
spec.authors = ["Brad Schrag"]
spec.email = ["brad.schrag@gmail.com"]
spec.homepage = "https://github.com/bschrag620/fixture_record"
spec.summary = "Helper library for generating test fixtures."
spec.description = "Helper library for generating test fixtures for existing records and their associated associations and relationships."
spec.license = "MIT"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/bschrag620/fixture_record"
spec.metadata["changelog_uri"] = "https://github.com/bschrag620/fixture_record"
spec.files = Dir.chdir(File.expand_path(__dir__)) do
Dir["{lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
end
spec.add_dependency "rails", ">= 6"
end