Sha256: 5244f39f0dda3ddfeffcb5e43099025bc08115f2f1a7e1a64cb1b7c97b6ff7b3
Contents?: true
Size: 1.34 KB
Versions: 1
Compression:
Stored size: 1.34 KB
Contents
# -*- encoding: utf-8 -*- require File.expand_path('../lib/sunspot_stats/version', __FILE__) Gem::Specification.new do |gem| gem.authors = ["duccio giovannelli"] gem.email = ["giovannelli@extendi.it"] gem.description = <<-TEXT Sunspot is a library providing a powerful, all-ruby API for the Solr search engine. This gem extend sunspot adding the statsComponent feature, which returns simple statistics for indexed numeric fields within the DocSet. Usually Suspot use the dismax for searches, here we extend to edismax to manage also boolean logic searches. TEXT gem.summary = "Added the statsComponent to sunspot" gem.homepage = "https://github.com/giovannelli/sunspot_stats" gem.files = `git ls-files`.split($\) gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) } gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) gem.name = "sunspot_stats" gem.require_paths = ["lib"] gem.version = SunspotStats::VERSION gem.add_dependency "sunspot", "~> 2.0.0" gem.add_development_dependency "rspec" gem.rdoc_options << '--webcvs=http://github.com/giovannelli/sunspot_stats/tree/master/%s' << '--title' << 'Sunspot Stat - StatsComponent for sunspot - API Documentation' << '--main' << 'README.rdoc' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
sunspot_stats-0.0.6 | sunspot_stats.gemspec |