# -*- 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", "Justin Coyne"] 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.license = "Apache 2.0" 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", "~> 4.0" s.add_dependency "nokogiri", "~>1.6" # 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 "bootstrap-sass", ">= 2.2.0", "< 2.4" s.add_dependency "deprecation", "~> 0.1" s.add_development_dependency "jettywrapper", ">= 1.4.1" s.add_development_dependency "rspec-rails", "~> 3.0" s.add_development_dependency "rspec-its" s.add_development_dependency 'engine_cart', "~> 2.0" s.add_development_dependency "equivalent-xml" end