Skip to content

Commit

Permalink
Updating the Product Owner information in preparation for the 2022 au…
Browse files Browse the repository at this point in the history
…tumn request for maintenance (#145)
  • Loading branch information
jrgriffiniii authored Nov 14, 2022
1 parent 1f5fc36 commit debba92
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 6 deletions.
19 changes: 14 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,25 @@
Rubydora is a low-level Fedora Commons REST API consumer, providing direct
access to REST API methods, as well as a primitive ruby abstraction.

[![CircleCI](https://circleci.com/gh/samvera/rubydora.svg?style=svg)](https://circleci.com/gh/samvera/rubydora)
[<img src="https://badge.fury.io/rb/rubydora.png" alt="Gem Version"/>](http://badge.fury.io/rb/rubydora)
Code:
[![Gem Version](https://badge.fury.io/rb/rubydora.png)](http://badge.fury.io/rb/rubydora)
[![Build Status](https://circleci.com/gh/samvera/rubydora.svg?style=svg)](https://circleci.com/gh/samvera/rubydora)
[![Coverage Status](https://coveralls.io/repos/github/samvera/rubydora/badge.svg?branch=main)](https://coveralls.io/github/samvera/rubydora?branch=main)

Jump in: [![Slack Status](http://slack.samvera.org/badge.svg)](http://slack.samvera.org/)
Docs:
[![Contribution Guidelines](http://img.shields.io/badge/CONTRIBUTING-Guidelines-blue.svg)](./CONTRIBUTING.md)
[![Apache 2.0 License](http://img.shields.io/badge/APACHE2-license-blue.svg)](./LICENSE.txt)

## Primary Contacts
Community Support: [![Samvera Community Slack](https://img.shields.io/badge/samvera-slack-blueviolet)](http://slack.samvera.org/)

## Product Owner & Maintenance

`rubydora` was a Core Component of the Samvera Community. Given a decline in available labor required for maintenance, this project no longer has a dedicated Product Owner. The documentation for what this means can be found [here](http://samvera.github.io/core_components.html#requirements-for-a-core-component).

### Product Owner
[Justin Coyne](https://github.com/jcoyne)
**Vacant**

_Until a Product Owner has been identified, we ask that you please direct all requests for support, bug reports, and general questions to the [`#dev` Channel on the Samvera Slack](https://samvera.slack.com/app_redirect?channel=dev)._

## Help

Expand Down
4 changes: 3 additions & 1 deletion spec/lib/integration_test_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,9 @@
e_date = obj.lastModifiedDate
obj = @repository.find('test:3')
obj.label.should == 'qwerty'
obj.lastModifiedDate.should == e_date
parsed_last_modified = Date.parse(obj.lastModifiedDate)
parsed_e_date = Date.parse(e_date)
parsed_last_modified.should == parsed_e_date
end

describe "datastream stuff" do
Expand Down

0 comments on commit debba92

Please sign in to comment.