Sha256: af68d8e8ec8a1a77835c9c27aaa016229b9f3360c9866ca7c2c48f97dad188fc
Contents?: true
Size: 1.83 KB
Versions: 1
Compression:
Stored size: 1.83 KB
Contents
# -*- coding: utf-8 -*- require File.join(File.dirname(__FILE__), "lib/blacklight/version") Gem::Specification.new do |s| s.name = "blacklight" s.version = Blacklight::VERSION s.platform = Gem::Platform::RUBY s.authors = ["Jonathan Rochkind", "Matt Mitchell", "Chris Beer", "Jessie Keck", "Jason Ronallo", "Vernon Chapman", "Mark A. Matienzo", "Dan Funk", "Naomi Dushay"] s.email = ["blacklight-development@googlegroups.com"] s.homepage = "http://projectblacklight.org/" s.summary = "Blacklight provides a discovery interface for any Solr (http://lucene.apache.org/solr) index." s.description = %q{Blacklight is an open source Solr user interface discovery platform. You can use Blacklight to enable searching and browsing of your collections. Blacklight uses the Apache Solr search engine to search full text and/or metadata.} s.rubyforge_project = "blacklight" 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"] # PRODUCTION GEM REQUIREMENTS # --------------------------------------- s.add_dependency "rails", ">= 3.2" s.add_dependency "nokogiri", "~>1.5" # XML Parser # Let's allow future versions of marc, count on # them to be backwards compat until 1.1 s.add_dependency "marc", ">= 0.4.3", "< 1.1" # Marc record parser. s.add_dependency "rsolr", "~> 1.0.6" # Library for interacting with rSolr. s.add_dependency "kaminari", "~> 0.13" # the pagination (page 1,2,3, etc..) of our search results s.add_dependency "sass-rails" s.add_dependency "bootstrap-sass", ">= 2.2.0", "< 2.4" s.add_development_dependency "jettywrapper", ">= 1.4.1" s.add_development_dependency "rspec-rails" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
blacklight-4.2.1 | blacklight.gemspec |