cul_scv_hydra 0.17.0 → 0.17.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 CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- OTBkODQ3ZmViNGU4YjI4MjAyZThmZDI3ZDNlNTJmZTkyMzgzNDEzYQ==
4
+ YTk2OTQ4OGZjMjQ0YjdjNzBmNmRiZGEwYjc3YjVlNDllMDRmM2QzMg==
5
5
  data.tar.gz: !binary |-
6
- ZTM5ZTVhZGY2Y2JhYzNjNWI5OTY2YTI1YjZlZThkZTc4MzI2ODQ3OA==
6
+ MTdjYjkwOTY1YWJhYzM3ZDUzMmVhMTA5MzY2Y2IzNWYwYjFjMTgwYg==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- NWEyYTMxNWRhMjg0MmNjNTBkYTViN2QzZTcxNDAzYjE5ZGNhZmY3MjNlMjMx
10
- YjRmODg3NzFiZWMwZGM5ZjM0ZGYwMWQwMGQ2MDZkZWNiOGI2ZGU2MjQxMGU4
11
- ZWNjN2YxYTUwODA2YmE5ODFiMjQ4ZDJiOTUzNDNjZDJiNmM3MGQ=
9
+ NDJmNTAxM2Q2MWIzNzUwYjNkZDcyN2MzZjhjNGQ4YWY2ZTgwYjRiMzI2M2Zj
10
+ YTlkOTBlZTNjMjY5Yjc0OWEwNDAzZTI0YWZjYTEyYzRiMDNmYWM0ZTAyZDBi
11
+ MTM2YzY1ZmE1NjNmOTFiMjhjOTM4NmE0Zjk3N2U1YTI0ZWUxMTI=
12
12
  data.tar.gz: !binary |-
13
- MTNhZWExNzU3ZWRlMTgwZjY0ZDA5NjMzZmJkZDVjN2IyNDYyOGVjMTZiMGJm
14
- ZDU5NTVjYWFlNDM1MzM4ZjM1M2U5NzkzZGVlNjEwYTUwYjMyOTQwODMwMjMy
15
- OTg2YjljZGYyNzk0NTI5MTg4MWViMjk1Y2EyYmI3OTYyMzYzZTA=
13
+ YWExMjcxYWU2MGEzZTk5MjA1ZWUxMWI2ZjgzMmQ2YjM4NzNjYjc1MzAxYjZj
14
+ YjUxZWNlMDIwMjk5YWQ5ZTliMzIyNmYxODcwODZlOTk0OWYwMzFhNDdhYjI3
15
+ NGFhNDM3Yzk0YjgzNWE4N2M1MjZiM2IxY2I2MWNjOWE5OTQzZjQ=
data/config/fedora.yml CHANGED
@@ -1,11 +1,11 @@
1
- alcott: &alcott
2
- :url: http://alcott.cul.columbia.edu:8080/fedora
1
+ development:
3
2
  :user: fedoraAdmin
4
- :password: f+BULUS*^
5
- default: &default
6
- :url: http://127.0.0.1:8983/fedora
3
+ :password: fedoraAdmin
4
+ :url: http://localhost:8983/fedora-test
5
+ :time_zone: "America/New_York"
6
+
7
+ test:
7
8
  :user: fedoraAdmin
8
9
  :password: fedoraAdmin
9
- development: *alcott
10
- test: *default
11
- production: *alcott
10
+ :url: http://localhost:8983/fedora-test
11
+ :time_zone: "America/New_York"
data/config/solr.yml ADDED
@@ -0,0 +1,5 @@
1
+ development:
2
+ url: http://localhost:8983/solr/test
3
+
4
+ test:
5
+ url: http://localhost:8983/solr/test
@@ -2,7 +2,7 @@
2
2
  module Cul
3
3
  module Scv
4
4
  module Hydra
5
- VERSION = '0.17.0'
5
+ VERSION = '0.17.1'
6
6
  def self.version
7
7
  VERSION
8
8
  end
@@ -0,0 +1,11 @@
1
+
2
+ module Cul
3
+ module Scv
4
+ module Hydra
5
+ VERSION = '0.17.0'
6
+ def self.version
7
+ VERSION
8
+ end
9
+ end
10
+ end
11
+ end
@@ -1,4 +1,4 @@
1
- APP_ROOT = File.expand_path("#{File.dirname(__FILE__)}/../../")
1
+ APP_ROOT = File.expand_path("#{File.dirname(__FILE__)}/../../") unless defined?(APP_ROOT)
2
2
  require 'active-fedora'
3
3
 
4
4
  def logger
@@ -1,4 +1,4 @@
1
- APP_ROOT = File.expand_path("#{File.dirname(__FILE__)}/../../")
1
+ APP_ROOT = File.expand_path("#{File.dirname(__FILE__)}/../../") unless defined?(APP_ROOT)
2
2
 
3
3
  require 'jettywrapper'
4
4
  JETTY_ZIP_BASENAME = 'master'
@@ -36,7 +36,7 @@ namespace :cul_hydra do
36
36
  end
37
37
 
38
38
  desc "Execute specs with coverage"
39
- task :coverage do
39
+ task :coverage do
40
40
  # Put spec opts in a file named .rspec in root
41
41
  ruby_engine = defined?(RUBY_ENGINE) ? RUBY_ENGINE : "ruby"
42
42
  ENV['COVERAGE'] = 'true' unless ruby_engine == 'jruby'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cul_scv_hydra
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.17.0
4
+ version: 0.17.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Benjamin Armintor
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-09-15 00:00:00.000000000 Z
11
+ date: 2014-09-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: blacklight
@@ -254,11 +254,10 @@ files:
254
254
  - config/fedora.yml
255
255
  - config/jetty.yml
256
256
  - config/locales/ldpd_hydra.en.yml
257
- - config/locales/nnc.ntriples
258
257
  - config/predicate_mappings.yml
258
+ - config/solr.yml
259
259
  - config/solr_mappings.yml
260
260
  - config/solr_value_maps.yml
261
- - config/subs.yml
262
261
  - lib/cul_scv_fedora/dummy_object.rb
263
262
  - lib/cul_scv_fedora/rubydora_patch.rb
264
263
  - lib/cul_scv_fedora/url_helper_behavior.rb
@@ -294,6 +293,7 @@ files:
294
293
  - lib/cul_scv_hydra/solrizer/terminology_based_solrizer.rb
295
294
  - lib/cul_scv_hydra/solrizer/value_mapper.rb
296
295
  - lib/cul_scv_hydra/version.rb
296
+ - lib/cul_scv_hydra/version.rb~
297
297
  - lib/tasks/cmodel.rake
298
298
  - lib/tasks/cul_hydra_dev.rake
299
299
  - lib/tasks/index.rake
@@ -319,7 +319,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
319
319
  version: '0'
320
320
  requirements: []
321
321
  rubyforge_project:
322
- rubygems_version: 2.2.2
322
+ rubygems_version: 2.4.1
323
323
  signing_key:
324
324
  specification_version: 4
325
325
  summary: ActiveFedora, OM, and Solrizer implementations for CUL Staff Collection Viewer
@@ -1,12 +0,0 @@
1
- <info:fedora/marcorg:nnc> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.loc.gov/mads/rdf/v1#CorporateName> .
2
- <info:fedora/marcorg:nnc> <http://www.loc.gov/mads/rdf/v1#hasReciprocalAuthority> <http://id.loc.gov/vocabulary/organizations/nnc> .
3
- <info:fedora/marcorg:nnc> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.loc.gov/mads/rdf/v1#Authority> .
4
- <info:fedora/marcorg:nnc> <http://www.loc.gov/mads/rdf/v1#code> "NNC"^^<http://id.loc.gov/datatypes/orgs/code> .
5
- <info:fedora/marcorg:nnc> <http://www.loc.gov/mads/rdf/v1#code> "nnc"^^<http://id.loc.gov/datatypes/orgs/normalized> .
6
- <info:fedora/marcorg:nnc> <http://www.loc.gov/mads/rdf/v1#authoritativeLabel> "Butler Library"@en .
7
- <info:fedora/marcorg:nnc> <http://www.loc.gov/mads/rdf/v1#hasAbbreviationVariant> _:bnodereponncfacet .
8
- <info:fedora/marcorg:nnc> <http://www.loc.gov/mads/rdf/v1#hasExpansionVariant> _:bnodereponncfull .
9
- _:bnodereponncfacet <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.loc.gov/mads/rdf/v1#Variant> .
10
- _:bnodereponncfacet <http://www.loc.gov/mads/rdf/v1#variantLabel> "Butler Library"@en .
11
- _:bnodereponncfull <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.loc.gov/mads/rdf/v1#Variant> .
12
- _:bnodereponncfull <http://www.loc.gov/mads/rdf/v1#variantLabel> "Butler Library, Columbia University"@en
data/config/subs.yml DELETED
@@ -1,12 +0,0 @@
1
- development:
2
- djatoka_server: "http://iris.cul.columbia.edu:8080"
3
- fedora_server: "http://sayers.cul.columbia.edu:8080"
4
- php_server: "http://bach.cul.columbia.edu/dev"
5
- test:
6
- djatoka_server: "http://iris.cul.columbia.edu:8080"
7
- fedora_server: "http://sayers.cul.columbia.edu:8080"
8
- php_server: "http://bach.cul.columbia.edu/dev"
9
- production:
10
- djatoka_server: "http://iris.cul.columbia.edu:8080"
11
- fedora_server: "http://alcott.cul.columbia.edu:8080"
12
- php_server: "http://bach.cul.columbia.edu"