gabteles/lieutenant

View on GitHub
lieutenant.gemspec

Summary

Maintainability
Test Coverage
# frozen_string_literal: true

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

Gem::Specification.new do |spec|
  spec.name          = 'lieutenant'
  spec.version       = "#{Lieutenant::VERSION}#{ENV['GEM_VERSION_SUFFIX']}"
  spec.authors       = ['Gabriel Teles']
  spec.email         = ['gab.teles@hotmail.com']

  spec.summary       = 'CQRS/ES Toolkit to command them all'
  spec.homepage      = 'https://github.com/gabteles/lieutenant'

  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.add_dependency 'activemodel'
end