Sha256: 6de0d632c61ecf49d211756405e4e18cb9d76e739a7e8eac37790f050056c94b
Contents?: true
Size: 1.41 KB
Versions: 5
Compression:
Stored size: 1.41 KB
Contents
lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'dry/core/version' Gem::Specification.new do |spec| spec.name = 'dry-core' spec.version = Dry::Core::VERSION spec.authors = ['Nikita Shilnikov'] spec.email = ['fg@flashgordon.ru'] spec.summary = 'A toolset of small support modules used throughout the dry-rb ecosystem.' spec.description = spec.summary spec.homepage = 'https://github.com/dry-rb/dry-code' spec.license = 'MIT' # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host' # to allow pushing to a single host or delete this section to allow pushing to any host. if spec.respond_to?(:metadata) spec.metadata['allowed_push_host'] = 'https://rubygems.org' else raise 'RubyGems 2.0 or newer is required to protect against public gem pushes.' end spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features|bin)/}) } 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 'concurrent-ruby', '~> 1.0' spec.add_development_dependency 'bundler', '~> 1.12' spec.add_development_dependency 'rake', '~> 10.0' spec.add_development_dependency 'rspec', '~> 3.0' end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
dry-core-0.2.4 | dry-core.gemspec |
dry-core-0.2.3 | dry-core.gemspec |
dry-core-0.2.2 | dry-core.gemspec |
dry-core-0.2.1 | dry-core.gemspec |
dry-core-0.2.0 | dry-core.gemspec |