Sha256: 11b6e75162e4ecc147bbf6430600e226dcc49f23758ca36d4359f205d30cf73f

Contents?: true

Size: 1.9 KB

Versions: 1

Compression:

Stored size: 1.9 KB

Contents

# frozen_string_literal: true

require_relative 'lib/emasser/version'

Gem::Specification.new do |spec|
  spec.name = 'emasser'
  spec.version = Emasser::VERSION
  spec.authors = ['Amndeep Singh Mann', 'George Dias', 'Kyle Fagan', 'Robert Clark', 'Aaron Lippold']
  spec.email = ['saf@mitre.org']
  spec.licenses = ['Apache-2.0']

  spec.summary = 'Provide an automated capability for invoving eMASS API endpoints'
  spec.description = 'emasser can be used as a gem or used from the command line to access eMASS via thei API.'
  spec.homepage = 'https://saf.mitre.org'
  spec.required_ruby_version = Gem::Requirement.new('~> 2.5')

  # 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{^(emass_client|test|spec|features)/}) }
  end
  spec.bindir = 'exe'
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }

  spec.add_runtime_dependency 'activesupport', '~> 6.1.4'
  spec.add_runtime_dependency 'colorize', '~> 0.8.1'
  spec.add_runtime_dependency 'dotenv', '~> 2.7.6'
  spec.add_runtime_dependency 'rubyzip', '~> 2.3.2'
  spec.add_runtime_dependency 'thor', '~> 1.1.0'
  spec.add_runtime_dependency 'emass_client', '~> 1.0'

  spec.add_development_dependency 'bundler', '~> 2.3'
  spec.add_development_dependency 'bundler-audit', '~> 0.7'
  spec.add_development_dependency 'byebug', '~> 11.1.3'
  spec.add_development_dependency 'rspec', '~> 3.10.0'
  spec.add_development_dependency 'yaml', '~> 0.2.0'
  spec.add_development_dependency 'rake', '~> 13.0'
  spec.add_development_dependency 'rubocop', '~> 1.7'
  spec.add_development_dependency 'rubocop-minitest', '~> 0.10'
  spec.add_development_dependency 'rubocop-performance', '~> 1.11'
  spec.add_development_dependency 'rubocop-rake', '~> 0.5'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
emasser-1.0.3 emasser.gemspec