-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathactiverecord-batch_touching.gemspec
37 lines (31 loc) · 1.64 KB
/
activerecord-batch_touching.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
30
31
32
33
34
35
36
37
# frozen_string_literal: true
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "activerecord/batch_touching/version"
Gem::Specification.new do |spec|
spec.name = "activerecord-batch_touching"
spec.version = Activerecord::BatchTouching::VERSION
spec.authors = ["Brian Morearty", "Phil Phillips"]
spec.email = ["[email protected]"]
spec.summary = 'Batch up your ActiveRecord "touch" operations for better performance.'
spec.description = 'Batch up your ActiveRecord "touch" operations for better performance. All accumulated "touch" calls will be consolidated into as few database round trips as possible.'
spec.homepage = "https://github.com/irphilli/activerecord-batch_touching"
spec.license = "MIT"
spec.files = Dir["LICENSE", "README", "lib/**/*"]
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_dependency "activerecord", ">= 6"
spec.add_development_dependency "bundler"
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec-rails"
spec.add_development_dependency "rubocop"
spec.add_development_dependency "rubocop-performance"
spec.add_development_dependency "rubocop-rake"
spec.add_development_dependency "rubocop-rspec"
spec.add_development_dependency "simplecov"
spec.add_development_dependency "simplecov-rcov"
spec.add_development_dependency "sqlite3", "~> 1.4"
spec.add_development_dependency "timecop"
spec.metadata["rubygems_mfa_required"] = "true"
spec.required_ruby_version = ">= 3.1.0"
end