-
Notifications
You must be signed in to change notification settings - Fork 0
/
nql.gemspec
27 lines (23 loc) · 1.03 KB
/
nql.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/nql/version', __FILE__)
Gem::Specification.new do |s|
s.name = 'nql'
s.version = NQL::VERSION
s.authors = ['Gabriel Naiman']
s.email = ['[email protected]']
s.description = 'Natural Query Language built on top of ActiveRecord and Ransack'
s.summary = 'Natural Query Language built on top of ActiveRecord and Ransack'
s.homepage = 'https://github.com/gabynaiman/nql'
s.files = `git ls-files`.split($\)
s.executables = s.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.require_paths = ["lib"]
s.add_dependency 'treetop', '~> 1.4.0'
s.add_dependency 'activerecord', '>= 3.2.0'
s.add_dependency 'activesupport', '>= 3.2.0'
s.add_dependency 'ransack', '~> 0.7'
s.add_development_dependency 'rake'
s.add_development_dependency 'sqlite3', '~> 1.3.0'
s.add_development_dependency 'rspec', '~> 3.0'
s.add_development_dependency 'simplecov'
end