uwdc 0.0.6 → 0.0.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/lib/uwdc/mets.rb +12 -12
- data/lib/uwdc/version.rb +1 -1
- data/spec/profiles/empty.png +0 -0
- data/spec/profiles/minus.png +0 -0
- data/spec/profiles/plus.png +0 -0
- data/spec/profiles/profile_uwdc.rb +12 -0
- data/spec/profiles/uwdc.flat.txt +1255 -0
- data/spec/profiles/uwdc.graph.html +33942 -0
- data/spec/profiles/uwdc.grind.dat +17650 -0
- data/spec/profiles/uwdc.stack.html +4508 -0
- data/uwdc.gemspec +1 -0
- metadata +32 -2
data/uwdc.gemspec
CHANGED
@@ -21,6 +21,7 @@ Gem::Specification.new do |gem|
|
|
21
21
|
gem.add_development_dependency 'rspec'
|
22
22
|
gem.add_development_dependency 'guard-rspec'
|
23
23
|
gem.add_development_dependency 'rb-fsevent'
|
24
|
+
gem.add_development_dependency 'ruby-prof'
|
24
25
|
|
25
26
|
gem.files = `git ls-files`.split($/)
|
26
27
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: uwdc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Eric Larson
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-05-
|
11
|
+
date: 2013-05-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: httpclient
|
@@ -122,6 +122,20 @@ dependencies:
|
|
122
122
|
- - ! '>='
|
123
123
|
- !ruby/object:Gem::Version
|
124
124
|
version: '0'
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: ruby-prof
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - ! '>='
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: '0'
|
132
|
+
type: :development
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - ! '>='
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: '0'
|
125
139
|
description: Gem for the University of Wisconsin Digital Collections
|
126
140
|
email:
|
127
141
|
- ewlarson@gmail.com
|
@@ -163,6 +177,14 @@ files:
|
|
163
177
|
- spec/models/rels_ext_spec.rb
|
164
178
|
- spec/models/struct_map_spec.rb
|
165
179
|
- spec/models/xml_spec.rb
|
180
|
+
- spec/profiles/empty.png
|
181
|
+
- spec/profiles/minus.png
|
182
|
+
- spec/profiles/plus.png
|
183
|
+
- spec/profiles/profile_uwdc.rb
|
184
|
+
- spec/profiles/uwdc.flat.txt
|
185
|
+
- spec/profiles/uwdc.graph.html
|
186
|
+
- spec/profiles/uwdc.grind.dat
|
187
|
+
- spec/profiles/uwdc.stack.html
|
166
188
|
- spec/spec_helper.rb
|
167
189
|
- uwdc.gemspec
|
168
190
|
homepage: https://github.com/ewlarson/uwdc
|
@@ -203,5 +225,13 @@ test_files:
|
|
203
225
|
- spec/models/rels_ext_spec.rb
|
204
226
|
- spec/models/struct_map_spec.rb
|
205
227
|
- spec/models/xml_spec.rb
|
228
|
+
- spec/profiles/empty.png
|
229
|
+
- spec/profiles/minus.png
|
230
|
+
- spec/profiles/plus.png
|
231
|
+
- spec/profiles/profile_uwdc.rb
|
232
|
+
- spec/profiles/uwdc.flat.txt
|
233
|
+
- spec/profiles/uwdc.graph.html
|
234
|
+
- spec/profiles/uwdc.grind.dat
|
235
|
+
- spec/profiles/uwdc.stack.html
|
206
236
|
- spec/spec_helper.rb
|
207
237
|
has_rdoc:
|