iiif_manifest 0.1.1 → 0.1.2

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,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 88c6b8d06071766ed4d4262930ef10a2048bba3e
4
- data.tar.gz: 1ea451895f0d4641fed19734bcff48c943423e28
3
+ metadata.gz: dd0ace3d2763245f7b980eccd31a46ad853a8421
4
+ data.tar.gz: 3e0d2068f905eb71744a1bb64602bf5087b9713b
5
5
  SHA512:
6
- metadata.gz: caebebe7d46ecdeeb5e3bd6ea660a38e0fe676ad931414f2f65014d6feac17f3d8426f20e7eb9141a24b91db89a989cb00d24eb8dc3d581cfe7763c3dc55bf16
7
- data.tar.gz: d4d34223aff51e1434406e271da4372c246333c02acb9977aa93b6a5892bc1660420fa4eb2c08b3583001503c8e3ccaf03a47d25ec37ace42bfa1593bf63c449
6
+ metadata.gz: fb4d47a53e4cd1de1e460ecc46a50a23f28191381e29429717c0e4726b041b34a8d69a7bd1e193a6a7a837415536396998bb37c9d710554de7a19df1a388a130
7
+ data.tar.gz: e14cdf870bb6c24fd38c8be3e4cba31557322814d689a6989509c6060f9a35a7123906ed0257b22c3d0c2527b314b3157c92d969d0071f497a213b171e0b4938
@@ -1,3 +1,3 @@
1
1
  module IIIFManifest
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
data/lib/iiif_manifest.rb CHANGED
@@ -9,7 +9,6 @@ module IIIFManifest
9
9
  autoload :ManifestBuilder
10
10
  autoload :ManifestFactory
11
11
  autoload :ManifestServiceLocator
12
- autoload :ManifestHelper
13
12
  autoload :DisplayImage
14
13
  autoload :IIIFCollection
15
14
  autoload :IIIFEndpoint
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: iiif_manifest
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Coyne
@@ -118,7 +118,6 @@ files:
118
118
  - lib/iiif_manifest/manifest_builder/resource_builder.rb
119
119
  - lib/iiif_manifest/manifest_builder/sequence_builder.rb
120
120
  - lib/iiif_manifest/manifest_factory.rb
121
- - lib/iiif_manifest/manifest_helper.rb
122
121
  - lib/iiif_manifest/manifest_service_locator.rb
123
122
  - lib/iiif_manifest/version.rb
124
123
  homepage: http://github.com/projecthydra-labs/iiif_manifest
@@ -1,15 +0,0 @@
1
- module IIIFManifest
2
- class ManifestHelper
3
- include Rails.application.routes.url_helpers
4
- include ActionDispatch::Routing::PolymorphicRoutes
5
-
6
- def polymorphic_url(record, opts = {})
7
- opts[:host] ||= host
8
- super(record, opts)
9
- end
10
-
11
- def host
12
- Rails.application.config.action_mailer.default_url_options[:host]
13
- end
14
- end
15
- end