-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaggregate.gemspec
27 lines (22 loc) · 1017 Bytes
/
aggregate.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
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path("lib", __dir__)
# Maintain your gem's version:
require "aggregate/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "aggregate"
s.version = Aggregate::VERSION
s.authors = ["Bob Smith"]
s.email = ["[email protected]"]
s.homepage = "http://github.com/invoca"
s.summary = "A no-sql style document store using mysql"
s.description = "Store hashes of attributes on active record models. Add attributes without requiring migrations"
s.metadata['allowed_push_host'] = "https://gem.fury.io/invoca"
s.required_ruby_version = ">= 3.1"
s.files = Dir["{app,config,db,lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.md"]
s.add_dependency "activerecord", ">= 6.0"
s.add_dependency "encryptor", "~> 3.0"
s.add_dependency "invoca-utils", "~> 0.3"
s.add_dependency "large_text_field", ">= 1.0.2"
s.metadata['rubygems_mfa_required'] = 'true'
end