-
Notifications
You must be signed in to change notification settings - Fork 0
/
ref.gemspec
29 lines (25 loc) · 1.06 KB
/
ref.gemspec
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
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "ref"
s.version = "1.0.5"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Brian Durand"]
s.date = "2013-05-20"
s.description = "Library that implements weak, soft, and strong references in Ruby that work across multiple runtimes (MRI, REE, YARV, Jruby, Rubinius, and IronRuby). Also includes implementation of maps/hashes that use references and a reference queue."
s.email = ["[email protected]"]
s.extra_rdoc_files = ["README.rdoc"]
s.files = ["README.rdoc"]
s.homepage = "http://github.com/bdurand/ref"
s.licenses = ["MIT"]
s.rdoc_options = ["--charset=UTF-8", "--main", "README.rdoc"]
s.require_paths = ["lib"]
s.rubygems_version = "1.8.30"
s.summary = "Library that implements weak, soft, and strong references in Ruby."
if s.respond_to? :specification_version then
s.specification_version = 4
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
else
end
else
end
end