Sha256: 7f655957f1b7461a36adcde3cf4d60f7f30c77ef9b10821986bbeff459638991

Contents?: true

Size: 1.19 KB

Versions: 1

Compression:

Stored size: 1.19 KB

Contents

# frozen_string_literal: true

require_relative 'lib/simple_injector/version'

Gem::Specification.new do |spec|
  spec.name = 'simple_injector'
  spec.version = SimpleInjector::VERSION
  spec.authors = ['Leon Cruz']
  spec.email = ['leon.cruz.teixeira@gmail.com']

  spec.summary = 'A gem to handle dependency injection on ruby applications'
  spec.description = 'A gem to handle dependency injection on ruby applications'
  spec.license = 'MIT'
  spec.required_ruby_version = '>= 2.7.0'

  # 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 do |f|
      (f == __FILE__) || f.match(%r{\A(?:(?:test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
    end
  end
  spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
  spec.require_paths = ['lib']

  # Uncomment to register a new dependency of your gem

  # For more information and examples about making a new gem, check out our
  # guide at: https://bundler.io/guides/creating_gem.html
  spec.metadata['rubygems_mfa_required'] = 'true'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
simple_injector-0.0.2 simple_injector.gemspec