Sha256: 67b50413e635e71867841dcbc8f45a765ba27f18efc20479c48f4ab02bab6a80
Contents?: true
Size: 1.41 KB
Versions: 2
Compression:
Stored size: 1.41 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 = "sunspot_solr" 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'] s.email = ["mat@patch.com"] s.homepage = 'https://github.com/sunspot/sunspot/tree/master/sunspot_solr' s.summary = 'Bundled Solr distribution for Sunspot' s.license = 'MIT' s.description = <<-TEXT Sunspot::Solr provides a bundled Solr distribution for use with Sunspot. Typical deployment environments will require more configuration, but this distribution is well suited to development and testing. TEXT 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_development_dependency 'rake', '~> 13.2' s.add_development_dependency 'rspec', '~> 3.7' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
sunspot_solr-2.7.1 | sunspot_solr.gemspec |
sunspot_solr-2.7.0 | sunspot_solr.gemspec |