Skip to content

Commit

Permalink
Merge pull request #753 from projectblacklight/blacklight-marc-5.x
Browse files Browse the repository at this point in the history
Require blacklight-marc ~> 5.0
  • Loading branch information
jcoyne committed Feb 5, 2014
2 parents d4de531 + b8722e2 commit 92987c4
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ group :test do
gem "bootstrap-sass"
gem 'turbolinks'
gem 'sass-rails'
gem 'blacklight_marc', :github => 'projectblacklight/blacklight_marc'
gem 'blacklight-marc', :github => 'projectblacklight/blacklight_marc'
end

if File.exists?('spec/test_app_templates/Gemfile.extra')
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.0.0
5.0.1
2 changes: 1 addition & 1 deletion blacklight.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Gem::Specification.new do |s|
s.add_dependency "bootstrap-sass", "~> 3.0"
s.add_dependency "deprecation"
s.add_development_dependency "jettywrapper", ">= 1.5.2"
s.add_development_dependency "blacklight_marc", "0.0.9"
s.add_development_dependency "blacklight-marc", "~> 5.0"
s.add_development_dependency "rspec-rails"
s.add_development_dependency 'engine_cart', ">= 0.1.0"
s.add_development_dependency "equivalent-xml"
Expand Down
2 changes: 1 addition & 1 deletion lib/generators/blacklight/install_generator.rb
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def create_blacklight_catalog

def generate_blacklight_marc_demo
if options[:marc]
gem "blacklight_marc", ">= 0.0.9"
gem "blacklight-marc", "~> 5.0"

Bundler.with_clean_env do
run "bundle install"
Expand Down
2 changes: 1 addition & 1 deletion spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
end

require 'blacklight'
require 'blacklight_marc'
require 'blacklight/marc'

require 'engine_cart'
EngineCart.load_application!
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def remove_index

def run_blacklight_generator
say_status("warning", "GENERATING BL", :yellow)
gem 'blacklight_marc', ">= 0.0.9", :github => 'projectblacklight/blacklight_marc'
gem 'blacklight-marc', "~> 5.0", :github => 'projectblacklight/blacklight_marc'

Bundler.with_clean_env do
run "bundle install"
Expand Down

0 comments on commit 92987c4

Please sign in to comment.