fcrepo_wrapper 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +35 -0
- data/.rubocop.yml +15 -0
- data/.rubocop_hound.yml +1063 -0
- data/.rubocop_todo.yml +0 -0
- data/.travis.yml +8 -0
- data/Gemfile +4 -0
- data/LICENSE +22 -0
- data/README.md +28 -0
- data/Rakefile +7 -0
- data/coveralls.yml +1 -0
- data/exe/fcrepo_wrapper +32 -0
- data/fcrepo_wrapper.gemspec +29 -0
- data/lib/fcrepo_wrapper/instance.rb +258 -0
- data/lib/fcrepo_wrapper/version.rb +3 -0
- data/lib/fcrepo_wrapper.rb +18 -0
- data/spec/lib/fcrepo_wrapper_spec.rb +15 -0
- data/spec/spec_helper.rb +12 -0
- metadata +148 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 87b62fa9edf42b7de6f796431bed9e3734fb912f
|
4
|
+
data.tar.gz: 20371b68990e12b86bca4c7e635a2df482078b10
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 83b7907e5b591fc8a6942c0b417894bea81eb6cde9dc23e929cd2cc361a8be3b392da25685306e229cb0bba18252e28e8ee9cbe6c7208446ec0c4636aac86168
|
7
|
+
data.tar.gz: 6c23eede5efdb846bb783e6265138e257772d3377a80f4468f8dd964d9bdd81fbe7b6422672b3f9a1379915d335e488bd4aacd1b545edf9abbe1a166bd24f1d1
|
data/.gitignore
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
Gemfile.lock
|
2
|
+
*.gem
|
3
|
+
*.rbc
|
4
|
+
/.config
|
5
|
+
/coverage/
|
6
|
+
/InstalledFiles
|
7
|
+
/pkg/
|
8
|
+
/spec/reports/
|
9
|
+
/test/tmp/
|
10
|
+
/test/version_tmp/
|
11
|
+
/tmp/
|
12
|
+
|
13
|
+
## Specific to RubyMotion:
|
14
|
+
.dat*
|
15
|
+
.repl_history
|
16
|
+
build/
|
17
|
+
|
18
|
+
## Documentation cache and generated files:
|
19
|
+
/.yardoc/
|
20
|
+
/_yardoc/
|
21
|
+
/doc/
|
22
|
+
/rdoc/
|
23
|
+
|
24
|
+
## Environment normalisation:
|
25
|
+
/.bundle/
|
26
|
+
/lib/bundler/man/
|
27
|
+
|
28
|
+
# for a library or gem, you might want to ignore these files since the code is
|
29
|
+
# intended to run in multiple environments; otherwise, check them in:
|
30
|
+
# Gemfile.lock
|
31
|
+
# .ruby-version
|
32
|
+
# .ruby-gemset
|
33
|
+
|
34
|
+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
35
|
+
.rvmrc
|