hydra-file_characterization 0.3.3 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.gitignore +0 -0
- data/.rspec +0 -0
- data/.travis.yml +1 -1
- data/CODE_OF_CONDUCT.md +36 -0
- data/CONTRIBUTING.md +70 -22
- data/Gemfile +0 -0
- data/Guardfile +0 -0
- data/LICENSE +14 -16
- data/README.md +40 -9
- data/Rakefile +0 -0
- data/SUPPORT.md +5 -0
- data/hydra-file_characterization.gemspec +1 -0
- data/lib/hydra-file_characterization.rb +0 -0
- data/lib/hydra/file_characterization.rb +0 -0
- data/lib/hydra/file_characterization/characterizer.rb +0 -0
- data/lib/hydra/file_characterization/characterizers.rb +0 -0
- data/lib/hydra/file_characterization/characterizers/ffprobe.rb +0 -0
- data/lib/hydra/file_characterization/characterizers/fits.rb +0 -0
- data/lib/hydra/file_characterization/exceptions.rb +0 -0
- data/lib/hydra/file_characterization/to_temp_file.rb +0 -0
- data/lib/hydra/file_characterization/version.rb +1 -1
- data/spec/fixtures/archive.zip +0 -0
- data/spec/fixtures/archive.zip.fits.xml +0 -0
- data/spec/fixtures/brendan_behan.jpeg +0 -0
- data/spec/fixtures/brendan_behan.jpeg.fits.xml +0 -0
- data/spec/fixtures/brendan_broken.dxxd +0 -0
- data/spec/fixtures/brendan_broken.dxxd.fits.xml +0 -0
- data/spec/lib/hydra/file_characterization/characterizer_spec.rb +0 -0
- data/spec/lib/hydra/file_characterization/characterizers/ffprobe_spec.rb +0 -0
- data/spec/lib/hydra/file_characterization/characterizers/fits_spec.rb +0 -0
- data/spec/lib/hydra/file_characterization/characterizers_spec.rb +0 -0
- data/spec/lib/hydra/file_characterization/to_temp_file_spec.rb +0 -0
- data/spec/lib/hydra/file_characterization_spec.rb +0 -0
- data/spec/spec_helper.rb +3 -0
- metadata +19 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: fc80d9f0fda674639f974b581b57939e1b7cd9b32a992b7119f90ea017c883ad
|
4
|
+
data.tar.gz: a4e3af95b921b20d395b3405f29b3e2bfcc3a15882265f8989338f1fcf9594ae
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a6fd8b4b84d9a5fa5e1a9d28c6aba85611690656a7aaee7205ee0cdf30e3f797ebdfaa8952d4a226efdd15ff608f2685bf12e6133d05b3a7f6ed491f1cedad5e
|
7
|
+
data.tar.gz: 243e3a2d57e41f3e2cb9a71004c4a2ccc8f136115d2008390d3a66570a4c1f0e1dec4ebfb8c490f702cb99ee3b8d25d0dd7ec8febad60463d57b5783152a0f51
|
data/.gitignore
CHANGED
File without changes
|
data/.rspec
CHANGED
File without changes
|
data/.travis.yml
CHANGED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
The Samvera community is dedicated to providing a welcoming and
|
2
|
+
positive experience for all its members, whether they are at a formal
|
3
|
+
gathering, in a social setting, or taking part in activities online.
|
4
|
+
The Samvera community welcomes participation from people all over the
|
5
|
+
world and these members bring with them a wide variety of
|
6
|
+
professional, personal and social backgrounds; whatever these may be,
|
7
|
+
we treat colleagues with dignity and respect.
|
8
|
+
|
9
|
+
Community members communicate primarily in English, though for many of
|
10
|
+
them this is not their native language. We therefore strive to express
|
11
|
+
ourselves simply and clearly remembering that unnecessary use of
|
12
|
+
jargon and slang will be a barrier to understanding for many of our
|
13
|
+
colleagues. We are sensitive to the fact that the international
|
14
|
+
nature of the community means that we span many different social norms
|
15
|
+
around language and behaviour and we strive to conduct ourselves,
|
16
|
+
online and in person, in ways that are unlikely to cause offence.
|
17
|
+
|
18
|
+
Samvera conversations are often information-rich and intended to
|
19
|
+
generate discussion and debate. We discuss ideas from a standpoint of
|
20
|
+
mutual respect and reasoned argument.
|
21
|
+
|
22
|
+
Community members work together to promote a respectful and safe
|
23
|
+
community. In the event that someone’s conduct is causing offence or
|
24
|
+
distress, Samvera has a detailed
|
25
|
+
[Anti-Harassment Policy and Protocol](https://wiki.duraspace.org/display/samvera/Anti-Harassment+Policy)
|
26
|
+
which can be applied to address the problem. The first step in dealing
|
27
|
+
with any serious misconduct is to contact a local meeting organizer,
|
28
|
+
the
|
29
|
+
[Samvera community helpers](https://wiki.duraspace.org/display/samvera/Samvera+Community+Helpers)
|
30
|
+
([email](mailto:helpers@samvera.org)), a community member you
|
31
|
+
trust, or the
|
32
|
+
[Samvera Steering Group](https://wiki.duraspace.org/display/samvera/Samvera+Steering+Group+membership)
|
33
|
+
immediately; at Samvera events, these people can be identified by
|
34
|
+
distinctive name badges. The
|
35
|
+
[Policy and Protocol](https://wiki.duraspace.org/display/samvera/Anti-Harassment+Policy)
|
36
|
+
should be consulted for fuller details.
|
data/CONTRIBUTING.md
CHANGED
@@ -1,14 +1,24 @@
|
|
1
1
|
# How to Contribute
|
2
2
|
|
3
|
-
We want your help to make
|
4
|
-
|
3
|
+
We want your help to make the Samvera community great. There are a few guidelines
|
4
|
+
that we need contributors to follow so that we can have a chance of
|
5
|
+
keeping on top of things.
|
5
6
|
|
6
|
-
##
|
7
|
+
## Code of Conduct
|
7
8
|
|
8
|
-
|
9
|
-
|
9
|
+
The Samvera Community is dedicated to providing a welcoming and positive
|
10
|
+
experience for all its members, whether they are at a formal gathering, in
|
11
|
+
a social setting, or taking part in activities online. Please see our
|
12
|
+
[Code of Conduct](CODE_OF_CONDUCT.md) for more information.
|
10
13
|
|
11
|
-
|
14
|
+
## Samvera Community Intellectual Property Licensing and Ownership
|
15
|
+
|
16
|
+
All code contributors must have an Individual Contributor License Agreement
|
17
|
+
(iCLA) on file with the Samvera Steering Group. If the contributor works for
|
18
|
+
an institution, the institution must have a Corporate Contributor License
|
19
|
+
Agreement (cCLA) on file.
|
20
|
+
|
21
|
+
https://wiki.duraspace.org/display/samvera/Samvera+Community+Intellectual+Property+Licensing+and+Ownership
|
12
22
|
|
13
23
|
You should also add yourself to the `CONTRIBUTORS.md` file in the root of the project.
|
14
24
|
|
@@ -16,13 +26,15 @@ You should also add yourself to the `CONTRIBUTORS.md` file in the root of the pr
|
|
16
26
|
|
17
27
|
* Reporting Issues
|
18
28
|
* Making Changes
|
29
|
+
* Documenting Code
|
30
|
+
* Committing Changes
|
19
31
|
* Submitting Changes
|
20
|
-
* Merging Changes
|
32
|
+
* Reviewing and Merging Changes
|
21
33
|
|
22
34
|
### Reporting Issues
|
23
35
|
|
24
36
|
* Make sure you have a [GitHub account](https://github.com/signup/free)
|
25
|
-
* Submit a [Github issue](
|
37
|
+
* Submit a [Github issue](https://github.com/samvera/hydra-file_characterization/issues/) by:
|
26
38
|
* Clearly describing the issue
|
27
39
|
* Provide a descriptive summary
|
28
40
|
* Explain the expected behavior
|
@@ -38,8 +50,24 @@ You should also add yourself to the `CONTRIBUTORS.md` file in the root of the pr
|
|
38
50
|
* Then checkout the new branch with `git checkout fix/master/my_contribution`.
|
39
51
|
* Please avoid working directly on the `master` branch.
|
40
52
|
* You may find the [hub suite of commands](https://github.com/defunkt/hub) helpful
|
53
|
+
* Make sure you have added sufficient tests and documentation for your changes.
|
54
|
+
* Test functionality with RSpec; Test features / UI with Capybara.
|
55
|
+
* Run _all_ the tests to assure nothing else was accidentally broken.
|
56
|
+
|
57
|
+
### Documenting Code
|
58
|
+
|
59
|
+
* All new public methods, modules, and classes should include inline documentation in [YARD](http://yardoc.org/).
|
60
|
+
* Documentation should seek to answer the question "why does this code exist?"
|
61
|
+
* Document private / protected methods as desired.
|
62
|
+
* If you are working in a file with no prior documentation, do try to document as you gain understanding of the code.
|
63
|
+
* If you don't know exactly what a bit of code does, it is extra likely that it needs to be documented. Take a stab at it and ask for feedback in your pull request. You can use the 'blame' button on GitHub to identify the original developer of the code and @mention them in your comment.
|
64
|
+
* This work greatly increases the usability of the code base and supports the on-ramping of new committers.
|
65
|
+
* We will all be understanding of one another's time constraints in this area.
|
66
|
+
* [Getting started with YARD](http://www.rubydoc.info/gems/yard/file/docs/GettingStarted.md)
|
67
|
+
|
68
|
+
### Committing changes
|
69
|
+
|
41
70
|
* Make commits of logical units.
|
42
|
-
* Your commit should include a high level description of your work in HISTORY.textile
|
43
71
|
* Check for unnecessary whitespace with `git diff --check` before committing.
|
44
72
|
* Make sure your commit messages are [well formed](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html).
|
45
73
|
* If you created an issue, you can close it by including "Closes #issue" in your commit message. See [Github's blog post for more details](https://github.com/blog/1386-closing-issues-via-commit-messages)
|
@@ -60,7 +88,9 @@ You should also add yourself to the `CONTRIBUTORS.md` file in the root of the pr
|
|
60
88
|
|
61
89
|
class PostsController
|
62
90
|
def index
|
63
|
-
|
91
|
+
respond_to do |wants|
|
92
|
+
wants.html { render 'index' }
|
93
|
+
end
|
64
94
|
end
|
65
95
|
end
|
66
96
|
|
@@ -78,36 +108,54 @@ You should also add yourself to the `CONTRIBUTORS.md` file in the root of the pr
|
|
78
108
|
|
79
109
|
### Submitting Changes
|
80
110
|
|
81
|
-
[Detailed Walkthrough of One Pull Request per Commit](http://ndlib.github.io/practices/one-commit-per-pull-request/)
|
82
|
-
|
83
111
|
* Read the article ["Using Pull Requests"](https://help.github.com/articles/using-pull-requests) on GitHub.
|
84
112
|
* Make sure your branch is up to date with its parent branch (i.e. master)
|
85
113
|
* `git checkout master`
|
86
114
|
* `git pull --rebase`
|
87
115
|
* `git checkout <your-branch>`
|
88
116
|
* `git rebase master`
|
89
|
-
* It is
|
90
|
-
*
|
91
|
-
*
|
92
|
-
*
|
117
|
+
* It is a good idea to run your tests again.
|
118
|
+
* If you've made more than one commit take a moment to consider whether squashing commits together would help improve their logical grouping.
|
119
|
+
* [Detailed Walkthrough of One Pull Request per Commit](http://ndlib.github.io/practices/one-commit-per-pull-request/)
|
120
|
+
* `git rebase --interactive master` ([See Github help](https://help.github.com/articles/interactive-rebase))
|
93
121
|
* Squashing your branch's changes into one commit is "good form" and helps the person merging your request to see everything that is going on.
|
94
122
|
* Push your changes to a topic branch in your fork of the repository.
|
95
123
|
* Submit a pull request from your fork to the project.
|
96
124
|
|
97
|
-
### Merging Changes
|
125
|
+
### Reviewing and Merging Changes
|
126
|
+
|
127
|
+
We adopted [Github's Pull Request Review](https://help.github.com/articles/about-pull-request-reviews/) for our repositories.
|
128
|
+
Common checks that may occur in our repositories:
|
129
|
+
|
130
|
+
1. Travis CI - where our automated tests are running
|
131
|
+
2. Approval Required - Github enforces at least one person approve a pull request. Also, all reviewers that have chimed in must approve.
|
132
|
+
|
133
|
+
If one or more of the required checks failed (or are incomplete), the code should not be merged (and the UI will not allow it). If all of the checks have passed, then anyone on the project (including the pull request submitter) may merge the code.
|
134
|
+
|
135
|
+
*Example: Carolyn submits a pull request, Justin reviews the pull request and approves. However, Justin is still waiting on other checks (Travis CI is usually the culprit), so he does not merge the pull request. Eventually, all of the checks pass. At this point, Carolyn or anyone else may merge the pull request.*
|
136
|
+
|
137
|
+
#### Things to Consider When Reviewing
|
138
|
+
|
139
|
+
First, the person contributing the code is putting themselves out there. Be mindful of what you say in a review.
|
140
|
+
|
141
|
+
* Ask clarifying questions
|
142
|
+
* State your understanding and expectations
|
143
|
+
* Provide example code or alternate solutions, and explain why
|
144
|
+
|
145
|
+
This is your chance for a mentoring moment of another developer. Take time to give an honest and thorough review of what has changed. Things to consider:
|
98
146
|
|
99
|
-
* It is considered "poor from" to merge your own request.
|
100
|
-
* Please take the time to review the changes and get a sense of what is being changed. Things to consider:
|
101
147
|
* Does the commit message explain what is going on?
|
102
148
|
* Does the code changes have tests? _Not all changes need new tests, some changes are refactorings_
|
149
|
+
* Do new or changed methods, modules, and classes have documentation?
|
103
150
|
* Does the commit contain more than it should? Are two separate concerns being addressed in one commit?
|
151
|
+
* Does the description of the new/changed specs match your understanding of what the spec is doing?
|
104
152
|
* Did the Travis tests complete successfully?
|
105
|
-
|
106
|
-
|
153
|
+
|
154
|
+
If you are uncertain, bring other contributors into the conversation by assigning them as a reviewer.
|
107
155
|
|
108
156
|
# Additional Resources
|
109
157
|
|
110
158
|
* [General GitHub documentation](http://help.github.com/)
|
111
|
-
* [GitHub pull request documentation](
|
159
|
+
* [GitHub pull request documentation](https://help.github.com/articles/about-pull-requests/)
|
112
160
|
* [Pro Git](http://git-scm.com/book) is both a free and excellent book about Git.
|
113
161
|
* [A Git Config for Contributing](http://ndlib.github.io/practices/my-typical-per-project-git-config/)
|
data/Gemfile
CHANGED
File without changes
|
data/Guardfile
CHANGED
File without changes
|
data/LICENSE
CHANGED
@@ -1,16 +1,14 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
# See the License for the specific language governing permissions and
|
16
|
-
# limitations under the License.
|
1
|
+
Copyright 2013 Notre Dame
|
2
|
+
Additional copyright may be held by others, as reflected in the commit history.
|
3
|
+
|
4
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
+
you may not use this file except in compliance with the License.
|
6
|
+
You may obtain a copy of the License at
|
7
|
+
|
8
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
|
10
|
+
Unless required by applicable law or agreed to in writing, software
|
11
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
+
See the License for the specific language governing permissions and
|
14
|
+
limitations under the License.
|
data/README.md
CHANGED
@@ -1,12 +1,33 @@
|
|
1
|
-
# hydra-
|
1
|
+
# hydra-file_characterization
|
2
2
|
|
3
|
-
|
3
|
+
Code: [![Version](https://badge.fury.io/rb/hydra-file_characterization.png)](http://badge.fury.io/rb/hydra-file_characterization)
|
4
|
+
[![Build Status](https://travis-ci.org/samvera/hydra-file_characterization.png?branch=master)](https://travis-ci.org/samvera/hydra-file_characterization)
|
5
|
+
[![Coverage Status](https://coveralls.io/repos/github/samvera/hydra-file_characterization/badge.svg?branch=master)](https://coveralls.io/github/samvera/hydra-file_characterization?branch=master)
|
4
6
|
|
5
|
-
|
7
|
+
Docs: [![Contribution Guidelines](http://img.shields.io/badge/CONTRIBUTING-Guidelines-blue.svg)](./CONTRIBUTING.md)
|
8
|
+
[![Apache 2.0 License](http://img.shields.io/badge/APACHE2-license-blue.svg)](./LICENSE)
|
6
9
|
|
7
|
-
|
10
|
+
Jump in: [![Slack Status](http://slack.samvera.org/badge.svg)](http://slack.samvera.org/)
|
8
11
|
|
9
|
-
|
12
|
+
# What is hydra-file_characterization?
|
13
|
+
|
14
|
+
Provides a wrapper for file characterization.
|
15
|
+
|
16
|
+
## Product Owner & Maintenance
|
17
|
+
|
18
|
+
hydra-file_characterization is a Core Component of the Samvera community. The documentation for
|
19
|
+
what this means can be found
|
20
|
+
[here](http://samvera.github.io/core_components.html#requirements-for-a-core-component).
|
21
|
+
|
22
|
+
### Product Owner
|
23
|
+
|
24
|
+
[little9](https://github.com/little9)
|
25
|
+
|
26
|
+
# Help
|
27
|
+
|
28
|
+
The Samvera community is here to help. Please see our [support guide](./SUPPORT.md).
|
29
|
+
|
30
|
+
# Getting Started
|
10
31
|
|
11
32
|
If you are using Rails add the following to an initializer (./config/initializers/hydra-file_characterization_config.rb):
|
12
33
|
|
@@ -15,10 +36,16 @@ Hydra::FileCharacterization.configure do |config|
|
|
15
36
|
config.tool_path(:fits, '/path/to/fits')
|
16
37
|
end
|
17
38
|
```
|
39
|
+
```ruby
|
40
|
+
Hydra::FileCharacterization.characterize(File.read(filename), File.basename(filename), :fits)```
|
41
|
+
|
42
|
+
* Why `file.read`? To highlight that we want a string. In the case of ActiveFedora, we have a StringIO instead of a file.
|
43
|
+
* Why `file.basename`? In the case of Fits, the characterization takes cues from the extension name.
|
18
44
|
|
19
45
|
You can call a single characterizer…
|
46
|
+
|
20
47
|
```ruby
|
21
|
-
xml_string = Hydra::FileCharacterization.characterize(
|
48
|
+
xml_string = Hydra::FileCharacterization.characterize(File.read("/path/to/my/file.rb"), 'file.rb', :fits)
|
22
49
|
```
|
23
50
|
|
24
51
|
…for this particular call, you can specify custom fits path…
|
@@ -51,9 +78,13 @@ You can also call multiple characterizers at the same time.
|
|
51
78
|
fits_xml, ffprobe_xml = Hydra::FileCharacterization.characterize(contents_of_a_file, 'file.rb', :fits, :ffprobe)
|
52
79
|
```
|
53
80
|
|
54
|
-
* Why `file.read`? To highlight that we want a string. In the case of ActiveFedora, we have a StringIO instead of a file.
|
55
|
-
* Why `file.basename`? In the case of Fits, the characterization takes cues from the extension name.
|
56
|
-
|
57
81
|
## Registering New Characterizers
|
58
82
|
|
59
83
|
This is possible by adding a characterizer to the `Hydra::FileCharacterization::Characterizers`' namespace.
|
84
|
+
|
85
|
+
# Acknowledgments
|
86
|
+
|
87
|
+
This software has been developed by and is brought to you by the Samvera community. Learn more at the
|
88
|
+
[Samvera website](http://samvera.org/).
|
89
|
+
|
90
|
+
![Samvera Logo](https://wiki.duraspace.org/download/thumbnails/87459292/samvera-fall-font2-200w.png?version=1&modificationDate=1498550535816&api=v2)
|
data/Rakefile
CHANGED
File without changes
|
data/SUPPORT.md
ADDED
@@ -0,0 +1,5 @@
|
|
1
|
+
If you would like to report an issue, first search [the list of issues](https://github.com/samvera/hydra-file_characterization/issues/) to see if someone else has already reported it, and then feel free to [create a new issue](https://github.com/samvera/hydra-file_characterization/issues/new).
|
2
|
+
i
|
3
|
+
If you have questions or need help, please email [the Samvera community tech list](https://groups.google.com/forum/#!forum/samvera-tech) or stop by the #dev channel in [the Samvera community Slack team](https://wiki.duraspace.org/pages/viewpage.action?pageId=87460391#Getintouch!-Slack).
|
4
|
+
|
5
|
+
You can learn more about the various Samvera communication channels on the [Get in touch!](https://wiki.duraspace.org/pages/viewpage.action?pageId=87460391) wiki page.
|
@@ -29,6 +29,7 @@ Gem::Specification.new do |gem|
|
|
29
29
|
gem.require_paths = ["lib"]
|
30
30
|
|
31
31
|
gem.add_dependency "activesupport", ">= 3.0.0"
|
32
|
+
gem.add_development_dependency 'coveralls'
|
32
33
|
gem.add_development_dependency "rake"
|
33
34
|
gem.add_development_dependency "rspec"
|
34
35
|
gem.add_development_dependency "guard"
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/spec/fixtures/archive.zip
CHANGED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hydra-file_characterization
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- James Treacy
|
@@ -11,7 +11,7 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date:
|
14
|
+
date: 2018-08-28 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: activesupport
|
@@ -27,6 +27,20 @@ dependencies:
|
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
29
|
version: 3.0.0
|
30
|
+
- !ruby/object:Gem::Dependency
|
31
|
+
name: coveralls
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
33
|
+
requirements:
|
34
|
+
- - ">="
|
35
|
+
- !ruby/object:Gem::Version
|
36
|
+
version: '0'
|
37
|
+
type: :development
|
38
|
+
prerelease: false
|
39
|
+
version_requirements: !ruby/object:Gem::Requirement
|
40
|
+
requirements:
|
41
|
+
- - ">="
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: '0'
|
30
44
|
- !ruby/object:Gem::Dependency
|
31
45
|
name: rake
|
32
46
|
requirement: !ruby/object:Gem::Requirement
|
@@ -96,12 +110,14 @@ files:
|
|
96
110
|
- ".gitignore"
|
97
111
|
- ".rspec"
|
98
112
|
- ".travis.yml"
|
113
|
+
- CODE_OF_CONDUCT.md
|
99
114
|
- CONTRIBUTING.md
|
100
115
|
- Gemfile
|
101
116
|
- Guardfile
|
102
117
|
- LICENSE
|
103
118
|
- README.md
|
104
119
|
- Rakefile
|
120
|
+
- SUPPORT.md
|
105
121
|
- hydra-file_characterization.gemspec
|
106
122
|
- lib/hydra-file_characterization.rb
|
107
123
|
- lib/hydra/file_characterization.rb
|
@@ -145,7 +161,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
145
161
|
version: '0'
|
146
162
|
requirements: []
|
147
163
|
rubyforge_project:
|
148
|
-
rubygems_version: 2.
|
164
|
+
rubygems_version: 2.7.7
|
149
165
|
signing_key:
|
150
166
|
specification_version: 4
|
151
167
|
summary: To provide a wrapper for file characterization
|
@@ -163,4 +179,3 @@ test_files:
|
|
163
179
|
- spec/lib/hydra/file_characterization/to_temp_file_spec.rb
|
164
180
|
- spec/lib/hydra/file_characterization_spec.rb
|
165
181
|
- spec/spec_helper.rb
|
166
|
-
has_rdoc:
|