-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsequel-seed.gemspec
23 lines (20 loc) · 970 Bytes
/
sequel-seed.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true
require "date"
require File.expand_path(File.dirname(__FILE__) + "/version.rb")
SEQUEL_SEED_GEMSPEC = Gem::Specification.new do |s|
s.name = "sequel-seed"
s.date = Date.today.strftime("%Y-%m-%d")
s.version = Sequel::Seed::VERSION
s.platform = Gem::Platform::RUBY
s.has_rdoc = true
s.summary = "A Sequel extension to make seeds/fixtures manageable like migrations"
s.description = s.summary
s.author = "Ewerton Carlos Assis"
s.email = "earaujoassis@gmail.com"
s.homepage = "https://github.com/earaujoassis/sequel-seed"
s.license = "MIT"
s.required_ruby_version = ">= 2.4.10"
s.files = %w(LICENSE CHANGELOG.md README.md) + Dir["{spec,lib}/**/*.{rb,RB}"]
s.require_path = "lib"
s.add_runtime_dependency "sequel", ">= 4.49.0"
end