forked from socialcast/elastic_searchable
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathelastic_searchable.gemspec
34 lines (29 loc) · 1.42 KB
/
elastic_searchable.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
33
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "elastic_searchable/version"
Gem::Specification.new do |s|
s.name = %q{elastic_searchable}
s.version = ElasticSearchable::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Ryan Sonnek"]
s.email = ["[email protected]"]
s.homepage = %q{http://github.com/wireframe/elastic_searchable}
s.summary = %q{elastic search for activerecord}
s.description = %q{integrate the elastic search engine with rails}
s.rubyforge_project = "elastic_searchable"
s.add_runtime_dependency(%q<activerecord>, ["~> 2.3.5"])
s.add_runtime_dependency(%q<httparty>, ["~> 0.6.0"])
s.add_runtime_dependency(%q<backgrounded>, ["~> 0.7.0"])
s.add_runtime_dependency(%q<will_paginate>, ["~> 2.3.15"])
s.add_runtime_dependency(%q<larsklevan-after_commit>, ["~> 1.0.5"])
s.add_development_dependency(%q<shoulda>, [">= 0"])
s.add_development_dependency(%q<mocha>, [">= 0"])
s.add_development_dependency(%q<jeweler>, ["~> 1.5.2"])
s.add_development_dependency(%q<rcov>, [">= 0"])
s.add_development_dependency(%q<sqlite3-ruby>, ["~> 1.3.2"])
s.add_development_dependency(%q<ruby-debug>, [">= 0"])
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
end