Sha256: 28d01920be81205baef1b03086b08d83f1a4fcc08f17b780826d57d782450247
Contents?: true
Size: 1.35 KB
Versions: 4
Compression:
Stored size: 1.35 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.pre.120417" 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
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
sunspot_stats-0.0.5 | sunspot_stats.gemspec |
sunspot_stats-0.0.4 | sunspot_stats.gemspec |
sunspot_stats-0.0.3 | sunspot_stats.gemspec |
sunspot_stats-0.0.2 | sunspot_stats.gemspec |