Sha256: e10fe319e3ac2292e6f9f2d2c176221f15737bcad287c2c78771dae4f9176915

Contents?: true

Size: 1.6 KB

Versions: 4

Compression:

Stored size: 1.6 KB

Contents

lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'pushmi_pullyu/version'

Gem::Specification.new do |spec|
  spec.name          = 'pushmi_pullyu'
  spec.version       = PushmiPullyu::VERSION
  spec.authors       = ['Shane Murnaghan', 'Omar Rodriguez-Arenas']
  spec.email         = ['murnagha@ualberta.ca', 'orodrigu@ualberta.ca']

  spec.summary       = 'Ruby application to manage flow of content from Jupiter into Swift for preservation'
  spec.homepage      = 'https://github.com/ualbertalib/pushmi_pullyu'
  spec.license       = 'MIT'

  spec.files         = `git ls-files -z`.split("\x0").reject do |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_runtime_dependency 'activesupport', '>= 5', '< 8'
  spec.add_runtime_dependency 'bagit', '~> 0.4'
  spec.add_runtime_dependency 'connection_pool', '~> 2.2'
  spec.add_runtime_dependency 'daemons', '~> 1.2', '>= 1.2.4'
  spec.add_runtime_dependency 'minitar', '~> 0.7'
  spec.add_runtime_dependency 'openstack', '~> 3.3', '>= 3.3.10'
  spec.add_runtime_dependency 'rdf', '>= 1.99', '< 4.0'
  spec.add_runtime_dependency 'rdf-n3', '>= 1.99', '< 4.0'
  spec.add_runtime_dependency 'redis', '>= 3.3', '< 6.0'
  spec.add_runtime_dependency 'rest-client', '>= 1.8', '< 3.0'
  spec.add_runtime_dependency 'rollbar', '>= 2.18', '< 4.0'
  spec.add_runtime_dependency 'uuid', '~> 2.3.9'

  spec.metadata = {
    'rubygems_mfa_required' => 'true'
  }
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
pushmi_pullyu-2.1.3 pushmi_pullyu.gemspec
pushmi_pullyu-2.1.2 pushmi_pullyu.gemspec
pushmi_pullyu-2.1.1 pushmi_pullyu.gemspec
pushmi_pullyu-2.0.7 pushmi_pullyu.gemspec