-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathperuse.gemspec
23 lines (22 loc) · 1.13 KB
/
peruse.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 -*-
require File.expand_path('../lib/peruse/version', __FILE__)
Gem::Specification.new do |s|
s.name = "peruse"
s.version = Peruse::VERSION
s.required_ruby_version = ">= 1.9.3"
s.add_runtime_dependency "json", ">= 1.8.0", "< 3.0"
s.add_runtime_dependency "parslet", "~> 1.5", ">= 1.5.0"
s.add_runtime_dependency "elasticsearch", "~> 1.0", ">= 1.0.0"
s.add_runtime_dependency "activesupport", ">= 4.0.0", "< 7"
s.add_runtime_dependency "chronic", "~> 0.10", ">= 0.10.0"
s.add_development_dependency "rspec", "~> 3.1", ">= 3.1.0"
s.add_development_dependency "timecop", "~> 0.7", ">= 0.7.1"
s.executables << "peruse"
s.summary = "Elasticsearch query language"
s.description = "Human-friendly query language for Elasticsearch."
s.authors = ["Ram Mehta", "Jamil Bou Kheir"]
s.email = ["[email protected]", "[email protected]"]
s.files = `git ls-files`.split("\n")
s.homepage = "https://github.com/jamilbk/peruse"
s.license = "MIT"
end