forked from Casecommons/pg_search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pg_search.gemspec
25 lines (20 loc) · 908 Bytes
/
pg_search.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.push File.expand_path("lib", __dir__)
require "pg_search/version"
Gem::Specification.new do |s|
s.name = "pg_search"
s.version = PgSearch::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Grant Hutchins", "Case Commons, LLC"]
s.email = %w[[email protected] [email protected]]
s.homepage = "https://github.com/Casecommons/pg_search"
s.summary = "PgSearch builds Active Record named scopes that take advantage of PostgreSQL's full text search"
s.description = "PgSearch builds Active Record named scopes that take advantage of PostgreSQL's full text search"
s.licenses = ["MIT"]
s.metadata["rubygems_mfa_required"] = "true"
s.files = `git ls-files -z`.split("\x0")
s.require_paths = ["lib"]
s.add_dependency "activerecord", ">= 6.0"
s.add_dependency "activesupport", ">= 6.0"
s.required_ruby_version = ">= 2.7"
end