-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuilt_in_data.gemspec
More file actions
26 lines (21 loc) · 990 Bytes
/
built_in_data.gemspec
File metadata and controls
26 lines (21 loc) · 990 Bytes
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
# frozen_string_literal: true
require_relative "lib/built_in_data/version"
Gem::Specification.new do |spec|
spec.name = "built_in_data"
spec.version = BuiltInData::VERSION
spec.authors = ["Aaron Baldwin", "Brightways Learning"]
spec.email = ["baldwina@brightwayslearning.org"]
spec.homepage = "https://github.com/wwidea/built_in_data"
spec.summary = "Data management for Rails models."
spec.description = "BuiltInData is a simple tool for loading and updating data in a Rails application."
spec.license = "MIT"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["rubygems_mfa_required"] = "true"
spec.files = Dir.chdir(File.expand_path(__dir__)) do
Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
end
spec.required_ruby_version = ">= 3.3.0"
spec.add_dependency "activerecord", ">= 7.1.0"
spec.add_dependency "railties", ">= 7.1.0"
end