Sha256: 01fbd0d6fa8c99e367aaeb63b38c1c635132b716383c5bf3a65434ee90adb1c1

Contents?: true

Size: 911 Bytes

Versions: 1

Compression:

Stored size: 911 Bytes

Contents

# frozen_string_literal: true

require_relative "lib/publishing_platform_schemas/version"

Gem::Specification.new do |spec|
  spec.name = "publishing_platform_schemas"
  spec.version = PublishingPlatformSchemas::VERSION
  spec.authors = ["Publishing Platform"]

  spec.summary = "Gem to work with the Publishing Platform content schemas"
  spec.description = "Gem to work with the Publishing Platform content schemas"
  spec.license = "MIT"
  spec.required_ruby_version = ">= 3.0"

  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  spec.bindir = "exe"
  spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
  spec.require_paths = %w[lib]

  # This should be kept in sync with the json-schema version of publishing-api.
  spec.add_dependency "json-schema", ">= 2.8", "< 4.4"

  spec.add_development_dependency "publishing_platform_rubocop"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
publishing_platform_schemas-0.1.0 publishing_platform_schemas.gemspec