Sha256: fd9267042fb8208c7bf399c33a7cd588b5d0ddb056dcdbe9ea614ddb5cb3b1d9

Contents?: true

Size: 1.86 KB

Versions: 4

Compression:

Stored size: 1.86 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", "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.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.6", "< 5"
  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 "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

4 entries across 4 versions & 1 rubygems

Version Path
blacklight-4.5.0.rc1 blacklight.gemspec
blacklight-4.4.2 blacklight.gemspec
blacklight-4.4.1 blacklight.gemspec
blacklight-4.4.0 blacklight.gemspec