Sha256: 9d34961367ffd6eb09425fb2657a8647f97ade9df107a9a898c8437ff21bc934
Contents?: true
Size: 1.98 KB
Versions: 12
Compression:
Stored size: 1.98 KB
Contents
# frozen_string_literal: true lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'cocina/models/version' Gem::Specification.new do |spec| spec.name = 'cocina-models' spec.version = Cocina::Models::VERSION spec.authors = ['Justin Coyne'] spec.email = ['jcoyne@justincoyne.com'] spec.summary = 'Data models for the SDR' spec.description = 'SDR data models that can be validated' spec.homepage = 'https://github.com/sul-dlss/cocina-models' # Specify which files should be added to the gem when it is released. # The `git ls-files -z` loads the files in the RubyGem that have been added into git. spec.files = Dir.chdir(File.expand_path(__dir__)) do `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } end spec.bindir = 'exe' spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.required_ruby_version = '>= 2.7' spec.add_dependency 'activesupport' spec.add_dependency 'deprecation' spec.add_dependency 'dry-struct', '~> 1.0' spec.add_dependency 'dry-types', '~> 1.1' spec.add_dependency 'openapi3_parser' # Parsing openapi doc # Match these version requirements to what committee wants, # so that our client (non-committee) users have the same dependencies. spec.add_dependency 'openapi_parser', '>= 0.11.1', '< 1.0' spec.add_dependency 'super_diff' spec.add_dependency 'thor' spec.add_dependency 'zeitwerk', '~> 2.1' spec.add_development_dependency 'bundler', '~> 2.0' spec.add_development_dependency 'committee' spec.add_development_dependency 'rake', '~> 13.0' spec.add_development_dependency 'rspec', '~> 3.0' spec.add_development_dependency 'rubocop', '~> 1.24' spec.add_development_dependency 'rubocop-rake' spec.add_development_dependency 'rubocop-rspec', '~> 2.1' spec.add_development_dependency 'simplecov' spec.metadata['rubygems_mfa_required'] = 'true' end
Version data entries
12 entries across 12 versions & 1 rubygems