forked from sds/db-query-matchers
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb-query-matchers.gemspec
More file actions
26 lines (21 loc) · 981 Bytes
/
db-query-matchers.gemspec
File metadata and controls
26 lines (21 loc) · 981 Bytes
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
# 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 = ['eng@brigade.com', 'henric.trotzig@brigade.com',
'joe.lencioni@brigade.com']
spec.summary = 'RSpec matchers for database queries'
spec.homepage = 'https://github.com/brigade/db-query-matchers'
spec.license = 'MIT'
spec.files = Dir['lib/**/*.rb']
spec.require_paths = ['lib']
spec.add_runtime_dependency 'activesupport', '>= 4.0'
spec.add_runtime_dependency 'rspec', '>= 3.0'
spec.add_development_dependency 'activerecord', '>= 4.0'
spec.add_development_dependency 'sqlite3'
spec.add_development_dependency "appraisal", ">= 2.0"
spec.required_ruby_version = ">= 1.9.2"
end