Sha256: 1585dd8e2f8d5cccc59a3178b3d27895a0ef9269e89a2fda593e553ef351848c
Contents?: true
Size: 1.02 KB
Versions: 2
Compression:
Stored size: 1.02 KB
Contents
# coding: utf-8 # 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/dryrb/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.1.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' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
dry-auto_inject-0.5.0 | dry-auto_inject.gemspec |
dry-auto_inject-0.4.6 | dry-auto_inject.gemspec |