-
Notifications
You must be signed in to change notification settings - Fork 0
/
fixture_champagne.gemspec
31 lines (24 loc) · 1.05 KB
/
fixture_champagne.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
# frozen_string_literal: true
require_relative "lib/fixture_champagne/version"
Gem::Specification.new do |spec|
spec.name = "fixture_champagne"
spec.version = FixtureChampagne::VERSION
spec.authors = ["Juan Gueçaimburu"]
spec.email = ["guecaimburu.j@gmail.com"]
spec.summary = "Fixture migrations for Ruby on Rails applications"
spec.description = <<~DESCRIPTION
Data migration pattern applied to fixtures.
Create, update and keep fixtures synced with db schema.
DESCRIPTION
spec.homepage = "https://github.com/jguecaimburu/fixture_champagne"
spec.license = "MIT"
spec.required_ruby_version = ">= 2.7.0"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["changelog_uri"] = "https://github.com/jguecaimburu/fixture_champagne/CHANGELOG.md"
spec.files = Dir.chdir(File.expand_path(__dir__)) do
Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
end
spec.add_dependency "rails", ">= 6.1.0"
spec.metadata["rubygems_mfa_required"] = "true"
end