https://github.com/mlibrary/rsvp
Ruby SIP Validation and Processing
https://github.com/mlibrary/rsvp
Last synced: over 1 year ago
JSON representation
Ruby SIP Validation and Processing
- Host: GitHub
- URL: https://github.com/mlibrary/rsvp
- Owner: mlibrary
- License: other
- Created: 2021-03-02T17:21:06.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2025-02-18T20:49:51.000Z (over 1 year ago)
- Last Synced: 2025-02-18T21:38:00.687Z (over 1 year ago)
- Language: Ruby
- Homepage:
- Size: 222 KB
- Stars: 0
- Watchers: 7
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# RSVP

## Ruby SIP Validation and Processing
## Overview
At its core RSVP manages a workflow of discrete stages for validating and
converting SIP shipments and their associated image files for
University of Michigan DCU.
## Installation
### 1. Set up development
The minimum Ruby version is 2.7.4.
```
mkdir -p vendor/bundle
bundle config set --local path 'vendor/bundle'
bundle install
```
For basic functionality when running outside Docker, the following packages
should be installed via Homebrew if running on Mac OS:
```
exiftool
libtiff
netpbm
```
RSVP uses Kakadu for JPEG2000 compression. For local use, the free version
should suffice for development purposes.
### 2. Set up Docker development
```
$ docker-compose build
```
### 3. Running tests
```
$ docker-compose run --rm test
$ docker-compose run --rm test bundle exec rubocop
```
or
```
$ bundle exec rake test
$ bundle exec rubocop
```