spotlight-resources-iiif 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 +7 -0
- data/.coveralls.yml +1 -0
- data/.gitignore +11 -0
- data/.rspec +2 -0
- data/.rubocop.yml +14 -0
- data/.rubocop_todo.yml +7 -0
- data/.travis.yml +15 -0
- data/Gemfile +30 -0
- data/LICENSE.txt +13 -0
- data/README.md +41 -0
- data/Rakefile +77 -0
- data/app/models/spotlight/resources/iiif_harvester.rb +10 -0
- data/app/views/spotlight/resources/iiif/_manifest.html.erb +9 -0
- data/app/views/spotlight/resources/iiif/_tabbed_form.html.erb +18 -0
- data/bin/console +14 -0
- data/bin/setup +7 -0
- data/config/jetty.yml +6 -0
- data/config/locales/spotlight-resources-iiif.en.yml +11 -0
- data/lib/spotlight/resources/iiif.rb +9 -0
- data/lib/spotlight/resources/iiif/engine.rb +12 -0
- data/lib/spotlight/resources/iiif/version.rb +7 -0
- data/spotlight-resources-iiif.gemspec +42 -0
- metadata +276 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 2fbc962270af9f8879ad88cb7518450028149e9d
|
4
|
+
data.tar.gz: d1e148ef76b96e482b7813d066880ed914d667b9
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: c0d8eb4a499d156fbce45138f8766e73840859ec380e0dcb6f18e66573f448d39caa9de0b2756104e146aa570317c4899f9d5ed53a13cb56cacf1b3623af5141
|
7
|
+
data.tar.gz: 4941537eb392d728e53e34c74bf98054ad984a7519c16af5b890f276fde927cdf2d47675a06f4989e0aa35d1817fe68ad98d6b07f74cbcab1a57273a03af750b
|
data/.coveralls.yml
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
service_name: travis-ci
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.rubocop.yml
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
inherit_from: .rubocop_todo.yml
|
2
|
+
|
3
|
+
require: rubocop-rspec
|
4
|
+
|
5
|
+
AllCops:
|
6
|
+
Exclude:
|
7
|
+
- 'Gemfile'
|
8
|
+
- 'bin/**/*'
|
9
|
+
- 'db/**/*'
|
10
|
+
- 'config/**/*'
|
11
|
+
- '.internal_test_app/**/*'
|
12
|
+
- 'spec/test_app_templates/**/*'
|
13
|
+
- 'spec/spec_helper.rb'
|
14
|
+
- 'vendor/**/*'
|
data/.rubocop_todo.yml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
# This configuration was generated by
|
2
|
+
# `rubocop --auto-gen-config`
|
3
|
+
# on 2015-11-20 13:22:45 -0800 using RuboCop version 0.35.1.
|
4
|
+
# The point is for the user to remove these configuration records
|
5
|
+
# one by one as the offenses are removed from the code base.
|
6
|
+
# Note that changes in the inspected code, or installation of new
|
7
|
+
# versions of RuboCop, may require this file to be generated again.
|
data/.travis.yml
ADDED
data/Gemfile
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
source 'https://rubygems.org'
|
2
|
+
|
3
|
+
# Specify your gem's dependencies in spotlight-resources-iiif.gemspec
|
4
|
+
gemspec
|
5
|
+
|
6
|
+
# BEGIN ENGINE_CART BLOCK
|
7
|
+
# engine_cart: 0.8.0
|
8
|
+
# engine_cart stanza: 0.8.0
|
9
|
+
# the below comes from engine_cart, a gem used to test this Rails engine gem in the context of a Rails app.
|
10
|
+
file = File.expand_path("Gemfile", ENV['ENGINE_CART_DESTINATION'] || ENV['RAILS_ROOT'] || File.expand_path(".internal_test_app", File.dirname(__FILE__)))
|
11
|
+
if File.exist?(file)
|
12
|
+
begin
|
13
|
+
eval_gemfile file
|
14
|
+
rescue Bundler::GemfileError => e
|
15
|
+
Bundler.ui.warn '[EngineCart] Skipping Rails application dependencies:'
|
16
|
+
Bundler.ui.warn e.message
|
17
|
+
end
|
18
|
+
else
|
19
|
+
Bundler.ui.warn "[EngineCart] Unable to find test application dependencies in #{file}, using placeholder dependencies"
|
20
|
+
|
21
|
+
gem 'rails', ENV['RAILS_VERSION'] if ENV['RAILS_VERSION']
|
22
|
+
|
23
|
+
if ENV['RAILS_VERSION'].nil? || ENV['RAILS_VERSION'] =~ /^4.2/
|
24
|
+
gem 'responders', "~> 2.0"
|
25
|
+
gem 'sass-rails', ">= 5.0"
|
26
|
+
else
|
27
|
+
gem 'sass-rails', "< 5.0"
|
28
|
+
end
|
29
|
+
end
|
30
|
+
# END ENGINE_CART BLOCK
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
Copyright 2015 The Board of Trustees of the Leland Stanford Junior University.
|
2
|
+
|
3
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
you may not use this file except in compliance with the License.
|
5
|
+
You may obtain a copy of the License at
|
6
|
+
|
7
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
|
9
|
+
Unless required by applicable law or agreed to in writing, software
|
10
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
+
See the License for the specific language governing permissions and
|
13
|
+
limitations under the License.
|
data/README.md
ADDED
@@ -0,0 +1,41 @@
|
|
1
|
+
[](https://travis-ci.org/sul-dlss/spotlight-resources-iiif) [](https://coveralls.io/github/sul-dlss/spotlight-resources-iiif?branch=master) [](https://gemnasium.com/sul-dlss/spotlight-resources-iiif) [](http://badge.fury.io/rb/spotlight-resources-iiif)
|
2
|
+
|
3
|
+
# Spotlight::Resources::Iiif
|
4
|
+
|
5
|
+
Spotlight Resource Indexer for IIIF manifests or collections. A Rails engine gem for use in the blacklight-spotlight Rails engine gem.
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your blacklight-spotlight Rails application's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'spotlight-resources-iiif'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install spotlight-resources-iiif
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
This is a Rails engine gem to be used along with blacklight-spotlight, another Rails engine gem used to build exhibits sites while leveraging the blacklight Rails engine gem.
|
26
|
+
|
27
|
+
This gem adds a new "Repository Item" form to your Spotlight application. This form allows curators to input one or more URLs to a IIIF Manifest or collection, and the contents of the feed will be harvested as new items in the Spotlight exhibit.
|
28
|
+
|
29
|
+
## Contributing
|
30
|
+
|
31
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/sul-dlss/spotlight-resources-iiif.
|
32
|
+
|
33
|
+
## Contributing
|
34
|
+
|
35
|
+
1. Fork it (https://help.github.com/articles/fork-a-repo/)
|
36
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
37
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
38
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
39
|
+
5. Create a new Pull Request (https://help.github.com/articles/using-pull-requests/)
|
40
|
+
|
41
|
+
|
data/Rakefile
ADDED
@@ -0,0 +1,77 @@
|
|
1
|
+
require 'bundler/setup'
|
2
|
+
begin
|
3
|
+
Bundler.setup(:default, :development)
|
4
|
+
rescue Bundler::BundlerError => e
|
5
|
+
$stderr.puts e.message
|
6
|
+
$stderr.puts "Run `bundle install` to install missing gems"
|
7
|
+
exit e.status_code
|
8
|
+
end
|
9
|
+
|
10
|
+
require "bundler/gem_tasks"
|
11
|
+
|
12
|
+
require 'rspec/core/rake_task'
|
13
|
+
RSpec::Core::RakeTask.new(:spec)
|
14
|
+
|
15
|
+
require 'rubocop/rake_task'
|
16
|
+
RuboCop::RakeTask.new(:rubocop) do |task|
|
17
|
+
task.options = ['-l'] # run lint cops only
|
18
|
+
end
|
19
|
+
|
20
|
+
ZIP_URL = "https://github.com/projectblacklight/blacklight-jetty/archive/v4.10.4.zip"
|
21
|
+
require 'jettywrapper'
|
22
|
+
|
23
|
+
require 'engine_cart/rake_task'
|
24
|
+
EngineCart.fingerprint_proc = EngineCart.rails_fingerprint_proc
|
25
|
+
|
26
|
+
require 'exhibits_solr_conf'
|
27
|
+
|
28
|
+
desc 'Run tests in generated test Rails app with generated Solr instance running'
|
29
|
+
task ci: ['engine_cart:generate', 'jetty:clean', 'exhibits:configure_solr'] do
|
30
|
+
ENV['environment'] = 'test'
|
31
|
+
jetty_params = Jettywrapper.load_config
|
32
|
+
jetty_params[:startup_wait] = 60
|
33
|
+
|
34
|
+
Jettywrapper.wrap(jetty_params) do
|
35
|
+
# run the tests
|
36
|
+
Rake::Task['spec'].invoke
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
task default: [:ci, :rubocop]
|
41
|
+
|
42
|
+
desc 'Run generated test Rails app with generated Solr instance running'
|
43
|
+
task :server do
|
44
|
+
Rake::Task['engine_cart:generate'].invoke
|
45
|
+
|
46
|
+
unless File.exist? 'jetty'
|
47
|
+
Rake::Task['jetty:clean'].invoke
|
48
|
+
Rake::Task['exhibits:configure_solr'].invoke
|
49
|
+
end
|
50
|
+
|
51
|
+
jetty_params = Jettywrapper.load_config
|
52
|
+
jetty_params[:startup_wait]= 30
|
53
|
+
|
54
|
+
Jettywrapper.wrap(jetty_params) do
|
55
|
+
within_test_app do
|
56
|
+
system "bundle exec rails s"
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
60
|
+
|
61
|
+
require 'yard'
|
62
|
+
require 'yard/rake/yardoc_task'
|
63
|
+
begin
|
64
|
+
project_root = File.expand_path(File.dirname(__FILE__))
|
65
|
+
doc_dest_dir = File.join(project_root, 'doc')
|
66
|
+
|
67
|
+
YARD::Rake::YardocTask.new(:doc) do |yt|
|
68
|
+
yt.files = Dir.glob(File.join(project_root, 'lib', '**', '*.rb')) +
|
69
|
+
[File.join(project_root, 'README.md')]
|
70
|
+
yt.options = ['--output-dir', doc_dest_dir, '--readme', 'README.md', '--title', 'Stanford-Mods Documentation']
|
71
|
+
end
|
72
|
+
rescue LoadError
|
73
|
+
desc "Generate YARD Documentation"
|
74
|
+
task :doc do
|
75
|
+
abort "Please install the YARD gem to generate rdoc."
|
76
|
+
end
|
77
|
+
end
|
@@ -0,0 +1,9 @@
|
|
1
|
+
<%= bootstrap_form_for([current_exhibit, @resource], layout: :horizontal, label_col: 'col-md-2', control_col: 'col-sm-6 col-md-6', html: { class: 'item-upload-form', multipart: true } ) do |f| %>
|
2
|
+
<%= f.text_field :url, help: t('.url-field.help'), label: t('.manifest') %>
|
3
|
+
<div class="form-actions">
|
4
|
+
<div class="primary-actions">
|
5
|
+
<%= cancel_link @resource, :back, class: 'btn btn-default' %>
|
6
|
+
<%= f.submit t('.add_item'), class: 'btn btn-primary' %>
|
7
|
+
</div>
|
8
|
+
</div>
|
9
|
+
<% end %>
|
@@ -0,0 +1,18 @@
|
|
1
|
+
<div role="tabpanel" class="item-upload-tabs">
|
2
|
+
<ul class="nav nav-tabs" role="tablist">
|
3
|
+
<% Spotlight::Resources::Iiif::Engine.config.resource_partials.each_with_index do |p, i| %>
|
4
|
+
<% name = p.split('/').last %>
|
5
|
+
<li role="presentation" class="<%= "active" if i ==0 %>">
|
6
|
+
<%= link_to t(".#{name}"), "##{name}", role: 'tab', 'data-toggle' => 'tab', 'aria-controls' => 'single' %>
|
7
|
+
</li>
|
8
|
+
<% end %>
|
9
|
+
</ul>
|
10
|
+
<div class="tab-content">
|
11
|
+
<% Spotlight::Resources::Iiif::Engine.config.resource_partials.each_with_index do |p, i| %>
|
12
|
+
<% name = p.split('/').last %>
|
13
|
+
<%= content_tag :div, id: name, role: 'tabpanel', class: "tab-pane #{"active" if i == 0}" do %>
|
14
|
+
<%= render p %>
|
15
|
+
<% end %>
|
16
|
+
<% end %>
|
17
|
+
</div>
|
18
|
+
</div>
|
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "spotlight/resources/iiif"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start
|
data/bin/setup
ADDED
data/config/jetty.yml
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
require 'spotlight/engine'
|
2
|
+
|
3
|
+
module Spotlight::Resources::Iiif
|
4
|
+
class Engine < ::Rails::Engine
|
5
|
+
Spotlight::Resources::Iiif::Engine.config.resource_partials = ['spotlight/resources/iiif/manifest']
|
6
|
+
initializer 'spotlight.resources.iiif.initialize' do
|
7
|
+
Spotlight::Engine.config.resource_providers << Spotlight::Resources::IiifHarvester
|
8
|
+
Spotlight::Engine.config.new_resource_partials ||= []
|
9
|
+
Spotlight::Engine.config.new_resource_partials << 'spotlight/resources/iiif/tabbed_form'
|
10
|
+
end
|
11
|
+
end
|
12
|
+
end
|
@@ -0,0 +1,42 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'spotlight/resources/iiif/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "spotlight-resources-iiif"
|
8
|
+
spec.version = Spotlight::Resources::Iiif::VERSION
|
9
|
+
spec.authors = ["Naomi Dushay"]
|
10
|
+
spec.email = ["ndushay@stanford.edu"]
|
11
|
+
|
12
|
+
spec.summary = 'Spotlight Resource Indexer for IIIF manifests or collections.'
|
13
|
+
spec.homepage = "https://github.com/sul-dlss/spotlight-resources-iiif"
|
14
|
+
spec.license = 'Apache-2.0'
|
15
|
+
|
16
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(spec|features)/}) }
|
17
|
+
spec.bindir = "exe"
|
18
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_dependency "blacklight-spotlight"
|
22
|
+
|
23
|
+
spec.add_development_dependency "bundler", "~> 1.10"
|
24
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
25
|
+
spec.add_development_dependency "rspec-rails"
|
26
|
+
spec.add_development_dependency 'capybara'
|
27
|
+
spec.add_development_dependency 'factory_girl', '~> 4.5'
|
28
|
+
spec.add_development_dependency 'database_cleaner', '~> 1.3'
|
29
|
+
# spec.add_development_dependency 'poltergeist', '>= 1.5.0' # for js testing using phantomjs
|
30
|
+
spec.add_development_dependency "coveralls"
|
31
|
+
spec.add_development_dependency "rubocop"
|
32
|
+
spec.add_development_dependency "rubocop-rspec"
|
33
|
+
spec.add_development_dependency "yard"
|
34
|
+
spec.add_development_dependency "engine_cart"
|
35
|
+
spec.add_development_dependency "jettywrapper"
|
36
|
+
spec.add_development_dependency 'exhibits_solr_conf'
|
37
|
+
# FIXME: we shouldn't need explicit sitemap_generator dependency here as it should come with spotlight
|
38
|
+
# but travis fails without it (though tests run fine locally)
|
39
|
+
# cbeer: "we’re injecting the dependency into the host app. maybe we’re just
|
40
|
+
# missing a `bundle install` somewhere to fix that up"
|
41
|
+
spec.add_development_dependency 'sitemap_generator'
|
42
|
+
end
|
metadata
ADDED
@@ -0,0 +1,276 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: spotlight-resources-iiif
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Naomi Dushay
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-11-25 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: blacklight-spotlight
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.10'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.10'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rake
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '10.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '10.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rspec-rails
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: capybara
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: factory_girl
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '4.5'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '4.5'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: database_cleaner
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - "~>"
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '1.3'
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - "~>"
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '1.3'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: coveralls
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - ">="
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '0'
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - ">="
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '0'
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: rubocop
|
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'
|
139
|
+
- !ruby/object:Gem::Dependency
|
140
|
+
name: rubocop-rspec
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
142
|
+
requirements:
|
143
|
+
- - ">="
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: '0'
|
146
|
+
type: :development
|
147
|
+
prerelease: false
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
149
|
+
requirements:
|
150
|
+
- - ">="
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: '0'
|
153
|
+
- !ruby/object:Gem::Dependency
|
154
|
+
name: yard
|
155
|
+
requirement: !ruby/object:Gem::Requirement
|
156
|
+
requirements:
|
157
|
+
- - ">="
|
158
|
+
- !ruby/object:Gem::Version
|
159
|
+
version: '0'
|
160
|
+
type: :development
|
161
|
+
prerelease: false
|
162
|
+
version_requirements: !ruby/object:Gem::Requirement
|
163
|
+
requirements:
|
164
|
+
- - ">="
|
165
|
+
- !ruby/object:Gem::Version
|
166
|
+
version: '0'
|
167
|
+
- !ruby/object:Gem::Dependency
|
168
|
+
name: engine_cart
|
169
|
+
requirement: !ruby/object:Gem::Requirement
|
170
|
+
requirements:
|
171
|
+
- - ">="
|
172
|
+
- !ruby/object:Gem::Version
|
173
|
+
version: '0'
|
174
|
+
type: :development
|
175
|
+
prerelease: false
|
176
|
+
version_requirements: !ruby/object:Gem::Requirement
|
177
|
+
requirements:
|
178
|
+
- - ">="
|
179
|
+
- !ruby/object:Gem::Version
|
180
|
+
version: '0'
|
181
|
+
- !ruby/object:Gem::Dependency
|
182
|
+
name: jettywrapper
|
183
|
+
requirement: !ruby/object:Gem::Requirement
|
184
|
+
requirements:
|
185
|
+
- - ">="
|
186
|
+
- !ruby/object:Gem::Version
|
187
|
+
version: '0'
|
188
|
+
type: :development
|
189
|
+
prerelease: false
|
190
|
+
version_requirements: !ruby/object:Gem::Requirement
|
191
|
+
requirements:
|
192
|
+
- - ">="
|
193
|
+
- !ruby/object:Gem::Version
|
194
|
+
version: '0'
|
195
|
+
- !ruby/object:Gem::Dependency
|
196
|
+
name: exhibits_solr_conf
|
197
|
+
requirement: !ruby/object:Gem::Requirement
|
198
|
+
requirements:
|
199
|
+
- - ">="
|
200
|
+
- !ruby/object:Gem::Version
|
201
|
+
version: '0'
|
202
|
+
type: :development
|
203
|
+
prerelease: false
|
204
|
+
version_requirements: !ruby/object:Gem::Requirement
|
205
|
+
requirements:
|
206
|
+
- - ">="
|
207
|
+
- !ruby/object:Gem::Version
|
208
|
+
version: '0'
|
209
|
+
- !ruby/object:Gem::Dependency
|
210
|
+
name: sitemap_generator
|
211
|
+
requirement: !ruby/object:Gem::Requirement
|
212
|
+
requirements:
|
213
|
+
- - ">="
|
214
|
+
- !ruby/object:Gem::Version
|
215
|
+
version: '0'
|
216
|
+
type: :development
|
217
|
+
prerelease: false
|
218
|
+
version_requirements: !ruby/object:Gem::Requirement
|
219
|
+
requirements:
|
220
|
+
- - ">="
|
221
|
+
- !ruby/object:Gem::Version
|
222
|
+
version: '0'
|
223
|
+
description:
|
224
|
+
email:
|
225
|
+
- ndushay@stanford.edu
|
226
|
+
executables: []
|
227
|
+
extensions: []
|
228
|
+
extra_rdoc_files: []
|
229
|
+
files:
|
230
|
+
- ".coveralls.yml"
|
231
|
+
- ".gitignore"
|
232
|
+
- ".rspec"
|
233
|
+
- ".rubocop.yml"
|
234
|
+
- ".rubocop_todo.yml"
|
235
|
+
- ".travis.yml"
|
236
|
+
- Gemfile
|
237
|
+
- LICENSE.txt
|
238
|
+
- README.md
|
239
|
+
- Rakefile
|
240
|
+
- app/models/spotlight/resources/iiif_harvester.rb
|
241
|
+
- app/views/spotlight/resources/iiif/_manifest.html.erb
|
242
|
+
- app/views/spotlight/resources/iiif/_tabbed_form.html.erb
|
243
|
+
- bin/console
|
244
|
+
- bin/setup
|
245
|
+
- config/jetty.yml
|
246
|
+
- config/locales/spotlight-resources-iiif.en.yml
|
247
|
+
- lib/spotlight/resources/iiif.rb
|
248
|
+
- lib/spotlight/resources/iiif/engine.rb
|
249
|
+
- lib/spotlight/resources/iiif/version.rb
|
250
|
+
- spotlight-resources-iiif.gemspec
|
251
|
+
homepage: https://github.com/sul-dlss/spotlight-resources-iiif
|
252
|
+
licenses:
|
253
|
+
- Apache-2.0
|
254
|
+
metadata: {}
|
255
|
+
post_install_message:
|
256
|
+
rdoc_options: []
|
257
|
+
require_paths:
|
258
|
+
- lib
|
259
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
260
|
+
requirements:
|
261
|
+
- - ">="
|
262
|
+
- !ruby/object:Gem::Version
|
263
|
+
version: '0'
|
264
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
265
|
+
requirements:
|
266
|
+
- - ">="
|
267
|
+
- !ruby/object:Gem::Version
|
268
|
+
version: '0'
|
269
|
+
requirements: []
|
270
|
+
rubyforge_project:
|
271
|
+
rubygems_version: 2.4.5.1
|
272
|
+
signing_key:
|
273
|
+
specification_version: 4
|
274
|
+
summary: Spotlight Resource Indexer for IIIF manifests or collections.
|
275
|
+
test_files: []
|
276
|
+
has_rdoc:
|