forked from immutable-ruby/immutable-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimmutable-ruby.gemspec
More file actions
32 lines (28 loc) · 1.33 KB
/
Copy pathimmutable-ruby.gemspec
File metadata and controls
32 lines (28 loc) · 1.33 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
# coding: utf-8
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "immutable/version"
Gem::Specification.new do |spec|
spec.name = "immutable-ruby"
spec.version = Immutable::VERSION
spec.authors = ["Alex Dowad", "Dov Murik", "Xavier Shay", "Simon Harris"]
spec.summary = %q{Efficient, immutable, thread-safe collection classes for Ruby}
spec.description = spec.summary
spec.homepage = "https://github.com/immutable-ruby/immutable-ruby"
spec.license = "MIT"
spec.date = Time.now.strftime("%Y-%m-%d")
spec.platform = Gem::Platform::RUBY
spec.required_ruby_version = ">= 2.2.2" # as of Nov 2017, JRuby is compatible with 2.2.2
spec.files = Dir["lib/**/*"]
spec.test_files = Dir["spec/**/*"]
spec.require_paths = ["lib"]
spec.add_runtime_dependency "concurrent-ruby", "~> 1.0.0"
spec.add_development_dependency "bundler", "~> 1.15"
spec.add_development_dependency "rspec", "~> 3.7"
spec.add_development_dependency "rake", "~> 12.2"
spec.add_development_dependency "yard", "~> 0.9"
spec.add_development_dependency "pry", "~> 0.11"
spec.add_development_dependency "pry-doc", "~> 0.11"
spec.add_development_dependency "benchmark-ips", "~> 2.7"
end