-
Notifications
You must be signed in to change notification settings - Fork 91
/
store_model.gemspec
26 lines (20 loc) · 958 Bytes
/
store_model.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
$:.push File.expand_path("lib", __dir__)
# Maintain your gem's version:
require "store_model/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |spec|
spec.name = "store_model"
spec.version = StoreModel::VERSION
spec.authors = ["DmitryTsepelev"]
spec.email = ["dmitry.a.tsepelev@gmail.com"]
spec.homepage = "https://github.com/DmitryTsepelev/store_model"
spec.summary = "Gem for working with JSON-backed attributes as ActiveRecord models"
spec.description = "Gem for working with JSON-backed attributes as ActiveRecord models"
spec.license = "MIT"
spec.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
spec.required_ruby_version = ">= 3.0"
spec.add_dependency "activerecord", ">= 7.0"
spec.add_development_dependency "rspec"
spec.add_development_dependency "rspec-rails"
spec.add_development_dependency "rubocop", "1.65.1"
end