File: ref.gemspec

package info (click to toggle)
ruby-ref 2.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 268 kB
  • sloc: ruby: 1,262; java: 92; makefile: 5
file content (28 lines) | stat: -rw-r--r-- 1,121 bytes parent folder | download | duplicates (3)
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
$:.push File.join(File.dirname(__FILE__), 'lib')

require 'ref/version'

Gem::Specification.new do |s|
  s.name        = 'ref'
  s.version     = Ref::VERSION
  s.authors     = ['Brian Durand', 'The Ruby Concurrency Team']
  s.email       = ['bbdurand@gmail.com', 'concurrent-ruby@googlegroups.com']
  s.homepage    = "http://github.com/ruby-concurrency/ref"
  s.summary     = "Library that implements weak, soft, and strong references in Ruby."
  s.description = "Library that implements weak, soft, and strong references in Ruby that work across multiple runtimes (MRI,Jruby and Rubinius). Also includes implementation of maps/hashes that use references and a reference queue."
  s.license     = "MIT"
  s.date        = Time.now.strftime('%Y-%m-%d')

  s.files         = ['README.md', 'MIT_LICENSE']
  s.files        += Dir['lib/**/*.*']
  s.files        += Dir['ext/**/*.*']
  s.files        += Dir['test/**/*.*']

  s.require_paths = ['lib']

  s.has_rdoc         = true
  s.rdoc_options     = ["--charset=UTF-8", "--main", "README.md"]
  s.extra_rdoc_files = ["README.md"]

  s.required_ruby_version = '>= 1.9.3'
end