-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsymbiont-ruby.gemspec
More file actions
43 lines (36 loc) · 1.82 KB
/
Copy pathsymbiont-ruby.gemspec
File metadata and controls
43 lines (36 loc) · 1.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# 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