forked from qertoip/transaction_isolation
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtransaction_isolation.gemspec
21 lines (18 loc) · 1 KB
/
transaction_isolation.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "transaction_isolation/version"
Gem::Specification.new do |s|
s.name = "openstax_transaction_isolation"
s.version = TransactionIsolation::VERSION
s.authors = ["Dante Soares", "Piotr 'Qertoip' Włodarek"]
s.email = []
s.homepage = "https://github.com/openstax/transaction_isolation"
s.summary = %q{Set transaction isolation level in the ActiveRecord in a database agnostic way.}
s.description = %q{Set transaction isolation level in the ActiveRecord in a database agnostic way.
Works with MySQL, PostgreSQL and SQLite as long as you are using new adapters mysql2, pg or sqlite3.
Supports all ANSI SQL isolation levels: :serializable, :repeatable_read, :read_committed, :read_uncommitted.}
s.required_ruby_version = '>= 3'
s.files = `git ls-files -z`.split("\x0").reject { |f| f == 'd' || f.start_with?('test') }
s.require_paths = ["lib"]
s.add_runtime_dependency "activerecord", ">= 6"
end