-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* FOLIO token changes, authenticate returns a token expiration * Require latest version of cul_folio_edge; remove borrow_direct dependency (DACCESS-261) * Formatting * Remove 'newcatalog' references * Remove 'newcatalog' references --------- Co-authored-by: Melissa Wallace <[email protected]> Co-authored-by: Sarah Chintomby <[email protected]>
- Loading branch information
1 parent
cf1a586
commit 0cea3d4
Showing
7 changed files
with
24 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
module MyAccount | ||
VERSION = "2.2.5" | ||
VERSION = '2.3' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,27 @@ | ||
$:.push File.expand_path("../lib", __FILE__) | ||
|
||
# Maintain your gem's version: | ||
require "my_account/version" | ||
require 'my_account/version' | ||
|
||
# Describe your gem and declare its dependencies: | ||
Gem::Specification.new do |s| | ||
s.name = "my_account" | ||
s.version = MyAccount::VERSION | ||
s.authors = ["Matt Connolly"] | ||
s.email = ["[email protected]"] | ||
s.homepage = "http://newcatalog.library.cornell.edu/myaccount" | ||
s.summary = "Summary of MyAccount." | ||
s.description = "Description of MyAccount." | ||
s.homepage = "http://catalog.library.cornell.edu/myaccount" | ||
s.summary = "User account page for Cornell University Library online catalog" | ||
s.description = "Provides a user account page for the Cornell University Library online catalog, including user account information, loans, requests, and fines." | ||
s.license = "MIT" | ||
|
||
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc"] | ||
s.test_files = Dir["test/**/*"] | ||
|
||
s.add_dependency "rails", "~> 6.1" | ||
s.add_dependency 'rails', '~> 6.1' | ||
s.add_dependency 'blacklight',['>= 7.0'] | ||
s.add_dependency "xml-simple" | ||
s.add_dependency 'xml-simple' | ||
s.add_dependency 'rest-client' | ||
s.add_dependency 'borrow_direct' | ||
s.add_dependency 'cul-folio-edge', ['>= 1.2.1'] | ||
s.add_dependency 'cul-folio-edge', '~3.1' | ||
|
||
s.add_development_dependency "sqlite3" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters