-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
statement_timeout.gemspec
27 lines (22 loc) · 1.09 KB
/
statement_timeout.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
require_relative 'lib/statement_timeout/version'
Gem::Specification.new do |spec|
spec.name = 'statement_timeout'
spec.version = StatementTimeout::VERSION
spec.authors = ['Zeke Gabrielse']
spec.email = ['[email protected]']
spec.summary = 'Wrap an Active Record transaction or query in a local statement timeout.'
spec.description = 'Wrap an Active Record transaction or query in a local statement timeout.'
spec.homepage = 'https://github.com/keygen-sh/statement_timeout'
spec.license = 'MIT'
spec.required_ruby_version = '>= 3.1'
spec.files = %w[LICENSE CHANGELOG.md CONTRIBUTING.md SECURITY.md README.md] + Dir.glob('lib/**/*')
spec.require_paths = ['lib']
spec.add_dependency 'rails', '>= 6.0'
spec.add_development_dependency 'rspec-rails'
spec.add_development_dependency 'temporary_tables', '~> 1.0'
spec.add_development_dependency 'sql_matchers', '~> 1.0'
spec.add_development_dependency 'sqlite3', '~> 1.4'
spec.add_development_dependency 'mysql2'
spec.add_development_dependency 'pg'
end