Sha256: b7128e6bdc1869658e1de6955f3d82d91b39c3bc46f13be3ca029c5f44e57b81
Contents?: true
Size: 1.7 KB
Versions: 2
Compression:
Stored size: 1.7 KB
Contents
# coding: utf-8 # frozen_string_literal: true lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'symbiont/version' Gem::Specification.new do |spec| spec.required_ruby_version = '>= 2.3.8' spec.name = 'symbiont-ruby' spec.version = Symbiont::VERSION spec.author = 'Rustam Ibragimov' spec.email = 'iamdaiver@icloud.com' spec.summary = 'Evaluate proc-objects in many contexts simultaneously' spec.description = 'Symbiont is a cool implementation of proc-objects execution algorithm: ' \ 'in the context of other object, but with the preservation of ' \ 'the closed environment of the proc object and with the ability of ' \ 'control the method dispatch inside it. A proc object is executed in ' \ 'three contexts: in the context of required object, in the context of '\ 'a closed proc\'s environment and in the global (Kernel) context.' spec.homepage = 'https://github.com/0exp/symbiont-ruby' spec.license = 'MIT' spec.bindir = 'bin' spec.require_paths = ['lib'] spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(spec|features)/}) end spec.add_development_dependency 'rspec', '~> 3.8' spec.add_development_dependency 'simplecov', '~> 0.16' spec.add_development_dependency 'coveralls', '~> 0.8' spec.add_development_dependency 'armitage-rubocop', '~> 0.24' spec.add_development_dependency 'pry' spec.add_development_dependency 'rake' spec.add_development_dependency 'bundler' spec.add_development_dependency 'yard' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
symbiont-ruby-0.6.0 | symbiont-ruby.gemspec |
symbiont-ruby-0.5.0 | symbiont-ruby.gemspec |