diff --git a/.gitignore b/.gitignore old mode 100644 new mode 100755 diff --git a/.rspec b/.rspec old mode 100644 new mode 100755 diff --git a/.travis.yml b/.travis.yml old mode 100644 new mode 100755 diff --git a/.yardopts b/.yardopts old mode 100644 new mode 100755 diff --git a/Gemfile b/Gemfile old mode 100644 new mode 100755 diff --git a/Guardfile b/Guardfile old mode 100644 new mode 100755 diff --git a/LICENSE.txt b/LICENSE.txt old mode 100644 new mode 100755 diff --git a/README.md b/README.md old mode 100644 new mode 100755 diff --git a/Rakefile b/Rakefile old mode 100644 new mode 100755 diff --git a/TODO.md b/TODO.md old mode 100644 new mode 100755 diff --git a/iiif_s3.gemspec b/iiif_s3.gemspec old mode 100644 new mode 100755 index b935feb..7077acd --- a/iiif_s3.gemspec +++ b/iiif_s3.gemspec @@ -31,6 +31,6 @@ Gem::Specification.new do |spec| spec.add_runtime_dependency "aws-sdk", "~> 2.1" spec.add_runtime_dependency "mini_magick", "~> 4.2" spec.add_runtime_dependency "rmagick", "~> 2.15" - spec.add_runtime_dependency "json-ld", "~> 1.1" + spec.add_runtime_dependency "json-ld", "~> 2.1" spec.add_runtime_dependency "jsonlint", "~> 0.1" end diff --git a/lib/iiif_s3.rb b/lib/iiif_s3.rb old mode 100644 new mode 100755 diff --git a/lib/iiif_s3/amazon_s3.rb b/lib/iiif_s3/amazon_s3.rb old mode 100644 new mode 100755 diff --git a/lib/iiif_s3/base_properties.rb b/lib/iiif_s3/base_properties.rb old mode 100644 new mode 100755 diff --git a/lib/iiif_s3/builder.rb b/lib/iiif_s3/builder.rb old mode 100644 new mode 100755 diff --git a/lib/iiif_s3/collection.rb b/lib/iiif_s3/collection.rb old mode 100644 new mode 100755 diff --git a/lib/iiif_s3/config.rb b/lib/iiif_s3/config.rb old mode 100644 new mode 100755 diff --git a/lib/iiif_s3/errors.rb b/lib/iiif_s3/errors.rb old mode 100644 new mode 100755 diff --git a/lib/iiif_s3/full_image.rb b/lib/iiif_s3/full_image.rb old mode 100644 new mode 100755 diff --git a/lib/iiif_s3/image_info.rb b/lib/iiif_s3/image_info.rb old mode 100644 new mode 100755 diff --git a/lib/iiif_s3/image_record.rb b/lib/iiif_s3/image_record.rb old mode 100644 new mode 100755 diff --git a/lib/iiif_s3/image_tile.rb b/lib/iiif_s3/image_tile.rb old mode 100644 new mode 100755 diff --git a/lib/iiif_s3/image_variant.rb b/lib/iiif_s3/image_variant.rb old mode 100644 new mode 100755 diff --git a/lib/iiif_s3/manifest.rb b/lib/iiif_s3/manifest.rb old mode 100644 new mode 100755 diff --git a/lib/iiif_s3/thumbnail.rb b/lib/iiif_s3/thumbnail.rb old mode 100644 new mode 100755 diff --git a/lib/iiif_s3/utilities.rb b/lib/iiif_s3/utilities.rb old mode 100644 new mode 100755 diff --git a/lib/iiif_s3/utilities/helpers.rb b/lib/iiif_s3/utilities/helpers.rb old mode 100644 new mode 100755 diff --git a/lib/iiif_s3/utilities/pdf_splitter.rb b/lib/iiif_s3/utilities/pdf_splitter.rb old mode 100644 new mode 100755 diff --git a/lib/iiif_s3/version.rb b/lib/iiif_s3/version.rb old mode 100644 new mode 100755 diff --git a/spec/base_properties_spec.rb b/spec/base_properties_spec.rb old mode 100644 new mode 100755 diff --git a/spec/data/blank.csv b/spec/data/blank.csv old mode 100644 new mode 100755 diff --git a/spec/data/invalid.csv b/spec/data/invalid.csv old mode 100644 new mode 100755 diff --git a/spec/data/no_header.csv b/spec/data/no_header.csv old mode 100644 new mode 100755 diff --git a/spec/data/test.csv b/spec/data/test.csv old mode 100644 new mode 100755 diff --git a/spec/data/test.jpg b/spec/data/test.jpg old mode 100644 new mode 100755 diff --git a/spec/data/test.pdf b/spec/data/test.pdf old mode 100644 new mode 100755 diff --git a/spec/iiif_s3/amazon_s3_spec.rb b/spec/iiif_s3/amazon_s3_spec.rb old mode 100644 new mode 100755 diff --git a/spec/iiif_s3/builder_spec.rb b/spec/iiif_s3/builder_spec.rb old mode 100644 new mode 100755 diff --git a/spec/iiif_s3/collection_spec.rb b/spec/iiif_s3/collection_spec.rb old mode 100644 new mode 100755 diff --git a/spec/iiif_s3/config_spec.rb b/spec/iiif_s3/config_spec.rb old mode 100644 new mode 100755 diff --git a/spec/iiif_s3/image_info_spec.rb b/spec/iiif_s3/image_info_spec.rb old mode 100644 new mode 100755 diff --git a/spec/iiif_s3/image_record_spec.rb b/spec/iiif_s3/image_record_spec.rb old mode 100644 new mode 100755 diff --git a/spec/iiif_s3/image_variant_spec.rb b/spec/iiif_s3/image_variant_spec.rb old mode 100644 new mode 100755 diff --git a/spec/iiif_s3/manifest_spec.rb b/spec/iiif_s3/manifest_spec.rb old mode 100644 new mode 100755 diff --git a/spec/iiif_s3/utilities/pdf_splitter_spec.rb b/spec/iiif_s3/utilities/pdf_splitter_spec.rb old mode 100644 new mode 100755 diff --git a/spec/iiif_s3_spec.rb b/spec/iiif_s3_spec.rb old mode 100644 new mode 100755 diff --git a/spec/shared_contexts.rb b/spec/shared_contexts.rb old mode 100644 new mode 100755 diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb old mode 100644 new mode 100755 diff --git a/test.rb b/test.rb old mode 100644 new mode 100755