-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cleaning up some things so they'll be easier to test
- Loading branch information
1 parent
9db5680
commit f4a63dd
Showing
6 changed files
with
19 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
require "file_asset" | ||
class AudioAsset < FileAsset | ||
def initialize(attrs = {}) | ||
super(attrs) | ||
|
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,4 @@ | ||
require "file_asset" | ||
class ImageAsset < FileAsset | ||
def initialize(attrs = {}) | ||
super(attrs) | ||
|
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,4 @@ | ||
require "file_asset" | ||
class VideoAsset < FileAsset | ||
def initialize(attrs = {}) | ||
super(attrs) | ||
|
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
archivist: | ||
- archivist1 | ||
- archivist2 | ||
- leland_himself | ||
admin_policy_object_editor: | ||
- archivist1 | ||
donor: | ||
- donor1 | ||
- leland_himself | ||
researcher: | ||
- researcher1 | ||
patron: | ||
- patron1 | ||
- leland_himself |
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,4 @@ | ||
require "active-fedora" | ||
module Hydra | ||
class RightsMetadata < ActiveFedora::NokogiriDatastream | ||
|
||
|