Sha256: 367dec0fc1b03db74e617277c1e197183a14a8b2bec9ccfd1ad3b76055175445
Contents?: true
Size: 1.02 KB
Versions: 1
Compression:
Stored size: 1.02 KB
Contents
# frozen_string_literal: true lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'dry/auto_inject/version' Gem::Specification.new do |spec| spec.name = 'dry-auto_inject' spec.version = Dry::AutoInject::VERSION.dup spec.authors = ['Piotr Solnica'] spec.email = ['piotr.solnica@gmail.com'] spec.license = 'MIT' spec.summary = 'Container-agnostic automatic constructor injection' spec.homepage = 'https://github.com/dry-rb/dry-auto_inject' spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = 'exe' spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.required_ruby_version = '>= 2.4.0' spec.add_runtime_dependency 'dry-container', '>= 0.3.4' spec.add_development_dependency 'bundler' spec.add_development_dependency 'rake' spec.add_development_dependency 'rspec', '~> 3.8' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
dry-auto_inject-0.7.0 | dry-auto_inject.gemspec |