forked from angelf/escargot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathescargot.gemspec
24 lines (19 loc) · 927 Bytes
/
escargot.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
# -*- encoding: utf-8 -*-
require File.expand_path("../lib/escargot/version", __FILE__)
Gem::Specification.new do |s|
s.name = "escargot"
s.version = Escargot::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Angel Faus"]
s.email = ["[email protected]"]
s.homepage = "http://github.com/angelf/escargot"
s.summary = "ElasticSearch connector for Rails"
s.description = "Connects any Rails model with ElasticSearch, supports near real time updates, distributed indexing and models that integrate data from many databases."
s.required_rubygems_version = ">= 1.3.6"
s.rubyforge_project = "escargot"
s.add_development_dependency "bundler", ">= 1.0.0"
s.add_dependency "rubberband", ">= 0.0.5"
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
s.require_path = 'lib'
end