Sha256: 5a11a4326d5e40cb350f41cf0c1425577af4080c51731006722936dec3f610ab
Contents?: true
Size: 2 KB
Versions: 5
Compression:
Stored size: 2 KB
Contents
# -*- encoding: utf-8 -*- lib = File.expand_path('../../sunspot/lib/', __FILE__) $:.unshift(lib) unless $:.include?(lib) require 'sunspot/version' Gem::Specification.new do |s| s.name = "erichummel-sunspot_rails" s.version = Sunspot::VERSION s.platform = Gem::Platform::RUBY s.authors = ['Mat Brown', 'Peer Allan', 'Dmitriy Dzema', 'Benjamin Krause', 'Marcel de Graaf', 'Brandon Keepers', 'Peter Berkenbosch', 'Brian Atkinson', 'Tom Coleman', 'Matt Mitchell', 'Nathan Beyer', 'Kieran Topping', 'Nicolas Braem', 'Jeremy Ashkenas', 'Dylan Vaughn', 'Brian Durand', 'Sam Granieri', 'Nick Zadrozny', 'Jason Ronallo', 'Eric Hummel'] s.email = ["mat@patch.com"] s.homepage = 'http://github.com/outoftime/sunspot/tree/master/sunspot_rails' s.summary = 'Rails integration for the Sunspot Solr search library' s.description = <<-TEXT Sunspot::Rails is an extension to the Sunspot library for Solr search. Sunspot::Rails adds integration between Sunspot and ActiveRecord, including defining search and indexing related methods on ActiveRecord models themselves, running a Sunspot-compatible Solr instance for development and test environments, and automatically commit Solr index changes at the end of each Rails request. TEXT s.rubyforge_project = "sunspot" 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"] s.add_dependency 'erichummel-sunspot', Sunspot::VERSION s.add_dependency 'nokogiri' s.add_development_dependency 'rspec', '~> 1.2' s.add_development_dependency 'rspec-rails', '~> 1.2' s.rdoc_options << '--webcvs=http://github.com/outoftime/sunspot/tree/master/%s' << '--title' << 'Sunspot-Rails - Rails integration for the Sunspot Solr search library - API Documentation' << '--main' << 'README.rdoc' end
Version data entries
5 entries across 5 versions & 1 rubygems