-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsimple_master.gemspec
More file actions
27 lines (21 loc) · 932 Bytes
/
simple_master.gemspec
File metadata and controls
27 lines (21 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
23
24
25
26
27
# frozen_string_literal: true
require_relative "lib/simple_master/version"
Gem::Specification.new do |spec|
spec.name = "simple_master"
spec.version = SimpleMaster::VERSION
spec.authors = ["Jingyuan Zhao"]
spec.email = ["jingyuan.zhao@aktsk.jp"]
spec.summary = "In-memory master data cache with an ActiveRecord-like API"
spec.description = "SimpleMaster loads master tables into memory, builds associations, and offers a small DSL for master data models."
spec.homepage = "https://github.com/aktsk/simple_master"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.2"
spec.files = Dir.chdir(__dir__) {
Dir["lib/**/*"]
}
spec.require_paths = ["lib"]
spec.add_dependency "activerecord", ">= 7.0"
spec.add_dependency "activesupport", ">= 7.0"
spec.add_dependency "request_store", ">= 1.0"
spec.metadata['rubygems_mfa_required'] = 'true'
end