Sha256: 04fb8930607d454adc75f995b6a60fb49075af30eaf7d1bbbcb1facb9c49f4b0

Contents?: true

Size: 1.78 KB

Versions: 5

Compression:

Stored size: 1.78 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.1.0"
  s.add_development_dependency "jettywrapper", ">= 1.2.0"
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
blacklight-4.0.0 blacklight.gemspec
blacklight-4.0.0.rc2 blacklight.gemspec
blacklight-4.0.0.rc1 blacklight.gemspec
blacklight-4.0.0.pre7 blacklight.gemspec
blacklight-4.0.0.pre6 blacklight.gemspec