-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathlookup_by.gemspec
29 lines (21 loc) · 976 Bytes
/
lookup_by.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
28
29
# coding: utf-8
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "lookup_by/version"
Gem::Specification.new do |gem|
gem.name = "lookup_by"
gem.version = LookupBy::VERSION
gem.summary = %q(A thread-safe lookup table cache for ActiveRecord)
gem.description = %q(Use database lookup tables in AR models.)
gem.authors = ["Erik Peterson"]
gem.email = ["thecompanygardener@gmail.com"]
gem.homepage = "https://www.github.com/companygardener/lookup_by"
gem.license = "MIT"
gem.files = `git ls-files -z`.split("\x0")
gem.executables = gem.files.grep(%r{^bin/}) { |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_dependency "activerecord", ">= 6.0.0"
gem.add_development_dependency "bundler", ">= 2.3.3"
gem.add_development_dependency "rake"
end