-
Notifications
You must be signed in to change notification settings - Fork 34
/
transaction_isolation.gemspec
23 lines (20 loc) · 1.11 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
22
23
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "transaction_isolation/version"
Gem::Specification.new do |s|
s.name = "transaction_isolation"
s.version = TransactionIsolation::VERSION
s.authors = ["Piotr 'Qertoip' Włodarek"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/qertoip/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 = '>= 1.9.2'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_runtime_dependency "activerecord", ">= 3.0.11"
end