Sha256: d1a885f32eee66c589d19495fa6824ad1233cd14469052cae712adf9a16c4d06

Contents?: true

Size: 1.82 KB

Versions: 1

Compression:

Stored size: 1.82 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.10'
  spec.add_development_dependency 'simplecov',        '~> 0.21'
  spec.add_development_dependency 'armitage-rubocop', '~> 1.8'
  spec.add_development_dependency 'rbs',              '~> 1.0'
  spec.add_development_dependency 'typeprof',         '~> 0.12'
  spec.add_development_dependency 'steep',            '~> 0.40'

  spec.add_development_dependency 'pry'
  spec.add_development_dependency 'rake'
  spec.add_development_dependency 'bundler'
  spec.add_development_dependency 'yard'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
symbiont-ruby-0.7.0 symbiont-ruby.gemspec