-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqry_filter.gemspec
32 lines (27 loc) · 1.03 KB
/
qry_filter.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
31
32
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path('lib', __dir__)
# Maintain your gem's version:
require 'qry_filter/version'
# Describe your gem and declare its dependencies:
Gem::Specification.new do |spec|
spec.name = 'qry_filter'
spec.version = QryFilter::VERSION
spec.authors = ['Iñaki Ibarra']
spec.email = ['[email protected]']
spec.homepage = 'https://github.com/inaki-ibarra/qry_filter'
spec.summary = 'Query filter helper for Rails'
spec.description = 'A Rails add-on for handling query filters'
spec.license = 'MIT'
spec.files = Dir[
'{app,config,db,lib}/**/*',
'MIT-LICENSE',
'Rakefile',
'README.md'
]
spec.add_development_dependency 'activerecord', '~> 6.0'
spec.add_development_dependency 'rake', '~> 13.0.1'
spec.add_development_dependency 'rspec', '~> 3.8'
spec.add_development_dependency 'rubocop', '~> 0.79.0'
spec.add_development_dependency 'simplecov', '~> 0.17.0'
spec.add_development_dependency 'sqlite3', '~> 1.4.1'
end