forked from GeorgeKaraszi/ActiveRecordExtended
-
Notifications
You must be signed in to change notification settings - Fork 1
/
active_record_extended.gemspec
25 lines (19 loc) · 1.07 KB
/
active_record_extended.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
# frozen_string_literal: true
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), "lib"))
require "active_record_extended/version"
Gem::Specification.new do |spec|
spec.name = "active_record_extended"
spec.version = ActiveRecordExtended::VERSION
spec.authors = ["George Protacio-Karaszi", "Dan McClain", "Olivier El Mekki"]
spec.summary = "Adds extended functionality to Activerecord Postgres implementation"
spec.description = "Adds extended functionality to Activerecord Postgres implementation"
spec.homepage = "https://github.com/georgekaraszi/ActiveRecordExtended"
spec.license = "MIT"
spec.files = Dir["README.md", "lib/**/*"]
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 3.1"
spec.metadata["rubygems_mfa_required"] = "true"
spec.add_dependency "activerecord", ">= 5.2", "< 8.1"
spec.add_dependency "pg", "< 3.0"
end