-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathdb-query-matchers.gemspec
30 lines (24 loc) · 1.08 KB
/
db-query-matchers.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
# coding: utf-8
$LOAD_PATH << File.expand_path('../lib', __FILE__)
require 'db_query_matchers/version'
Gem::Specification.new do |spec|
spec.name = 'db-query-matchers'
spec.version = DBQueryMatchers::VERSION
spec.authors = ['Brigade Engineering', 'Henric Trotzig', 'Joe Lencioni']
spec.email = ['[email protected]', '[email protected]',
spec.summary = 'RSpec matchers for database queries'
spec.homepage = 'https://github.com/brigade/db-query-matchers'
spec.license = 'MIT'
spec.metadata = {
'changelog_uri' => 'https://github.com/sds/db-query-matchers/blob/main/CHANGELOG.md'
}
spec.files = Dir['lib/**/*.rb']
spec.require_paths = ['lib']
spec.add_runtime_dependency 'activesupport', '>= 4.0', "< 8.1"
spec.add_runtime_dependency 'rspec', '>= 3.0'
spec.add_development_dependency 'activerecord', '>= 4.0', "< 8.1"
spec.add_development_dependency 'sqlite3'
spec.add_development_dependency "appraisal", "~> 2.0"
spec.required_ruby_version = ">= 3.0"
end