fcrepo_wrapper 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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
data/.rubocop.yml ADDED
@@ -0,0 +1,15 @@
1
+ inherit_from:
2
+ - .rubocop_hound.yml
3
+ - .rubocop_todo.yml
4
+
5
+ AllCops:
6
+ Exclude:
7
+ - "*.gemspec"
8
+ RunRailsCops: true
9
+
10
+ Metrics/LineLength:
11
+ Enabled: false
12
+
13
+ # Offense count: 61
14
+ Metrics/AbcSize:
15
+ Max: 59