hydra-mods 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/hydra-mods.gemspec +1 -1
- data/lib/hydra/mods.rb +4 -0
- data/spec/spec_helper.rb +1 -3
- metadata +1 -1
data/hydra-mods.gemspec
CHANGED
@@ -3,7 +3,7 @@ $:.push File.expand_path("../lib", __FILE__)
|
|
3
3
|
|
4
4
|
Gem::Specification.new do |s|
|
5
5
|
s.name = 'hydra-mods'
|
6
|
-
s.version = '0.0.
|
6
|
+
s.version = '0.0.3'
|
7
7
|
s.platform = Gem::Platform::RUBY
|
8
8
|
s.authors = ["Matt Zumwalt, Bess Sadler, Julie Meloni, Naomi Dushay, Jessie Keck, John Scofield, Justin Coyne & many more. See https://github.com/projecthydra/hydra-head/contributors"]
|
9
9
|
s.email = ["hydra-tech@googlegroups.com"]
|
data/lib/hydra/mods.rb
CHANGED
@@ -1,5 +1,9 @@
|
|
1
1
|
module Hydra
|
2
2
|
|
3
|
+
module Datastream
|
4
|
+
autoload :ModsArticle, 'hydra/datastream/mods_article'
|
5
|
+
autoload :ModsGenericContent, 'hydra/datastream/mods_generic_content'
|
6
|
+
end
|
3
7
|
# DEPRECATED STUFF
|
4
8
|
#module ModelMixins
|
5
9
|
# autoload :CommonModsIndexMethods, 'hydra/model_mixins/mods_object'
|
data/spec/spec_helper.rb
CHANGED
@@ -24,9 +24,7 @@ if ENV['COVERAGE'] and RUBY_VERSION =~ /^1.9/
|
|
24
24
|
end
|
25
25
|
end
|
26
26
|
|
27
|
-
require '
|
28
|
-
Combustion.initialize!
|
29
|
-
require 'rspec/rails'
|
27
|
+
require 'rspec'
|
30
28
|
require 'hydra/mods'
|
31
29
|
require 'hydra/datastream/common_mods_index_methods'
|
32
30
|
require 'hydra/datastream/mods_basic'
|