From de3add1ce2faf4a602dfe3401aeaca9cff9d442a Mon Sep 17 00:00:00 2001 From: Carla Galarza Date: Thu, 18 Jul 2024 14:33:47 -0400 Subject: [PATCH 1/3] Updating README with versioning information. --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0a8ae09..c31b182 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,12 @@ # blacklight-ris -Adds "Download in RIS format" functionality to Blacklight +Adds "Download in RIS format" functionality to [Blacklight](https://github.com/projectblacklight/blacklight). + +## Description +Blacklight plugin that adds the ability to download a [RIS representation](https://en.wikipedia.org/wiki/RIS_(file_format)) of a record from a catalog show page and a set of records from the bookmarks index page. + +### Versioning +`v0.1.0` -> Known to work with Blacklight v6 and Rails 4 ## Installation From d0258be76d9719a7737a47414e0c43c1211ccd6e Mon Sep 17 00:00:00 2001 From: Carla Galarza Date: Thu, 18 Jul 2024 14:34:12 -0400 Subject: [PATCH 2/3] Not requiring MFA (this will make it easier if we set up automated releases). --- blacklight-ris.gemspec | 2 ++ 1 file changed, 2 insertions(+) diff --git a/blacklight-ris.gemspec b/blacklight-ris.gemspec index ff42b2e..a66b055 100644 --- a/blacklight-ris.gemspec +++ b/blacklight-ris.gemspec @@ -17,4 +17,6 @@ Gem::Specification.new do |s| s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"] s.add_dependency "rails", "> 4.2" + + s.metadata['rubygems_mfa_required'] = 'false' end From a8b4b5cdf709d628347ba7c2b9ac85f12bf575d3 Mon Sep 17 00:00:00 2001 From: Carla Galarza Date: Thu, 18 Jul 2024 14:35:54 -0400 Subject: [PATCH 3/3] Instructing adopters to use RubyGems release of the gem. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c31b182..ddfc0dd 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ Blacklight plugin that adds the ability to download a [RIS representation](https Add this line to your application's Gemfile: ```ruby -gem 'blacklight-ris', :git => 'https://github.com/upenn-libraries/blacklight-ris.git' +gem 'blacklight-ris', '0.1.0' ``` And then execute: