Sha256: 47efd825f636cfb417b2c33968b21586715030cfcff7f8632389038100301ffc
Contents?: true
Size: 1009 Bytes
Versions: 1
Compression:
Stored size: 1009 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.1" 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 "climate_control" spec.add_development_dependency "publishing_platform_rubocop" spec.add_development_dependency "simplecov" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
publishing_platform_schemas-0.1.1 | publishing_platform_schemas.gemspec |