File: atomic.gemspec

package info (click to toggle)
ruby-atomic 1.1.101-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 204 kB
  • sloc: ruby: 463; java: 139; ansic: 91; makefile: 4
file content (25 lines) | stat: -rw-r--r-- 947 bytes parent folder | download
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
# -*- encoding: utf-8 -*-

# Update these to get proper version and commit history

Gem::Specification.new do |s|
  s.name = %q{atomic}
  s.version = "1.1.101"
  s.authors = ["Charles Oliver Nutter", "MenTaLguY", "Sokolov Yura"]
  s.date = Time.now.strftime('%Y-%m-%d')
  s.summary = "An atomic reference implementation for JRuby, Rubinius, and MRI"
  s.description = s.summary
  s.email = ["headius@headius.com", "mental@rydia.net", "funny.falcon@gmail.com"]
  s.homepage = "http://github.com/ruby-concurrency/atomic"
  s.require_paths = ["lib"]
  s.licenses = ["Apache-2.0"]
  s.test_files = Dir["test/test*.rb"]
  if defined?(JRUBY_VERSION)
    s.files = Dir['lib/atomic_reference.jar']
    s.platform = 'java'
  else
    s.extensions = 'ext/extconf.rb'
  end
  s.files += Dir.glob('**/*').reject { |f| f =~ /^debian/ }
  s.post_install_message = 'This gem has been deprecated and merged into Concurrent Ruby (http://concurrent-ruby.com).'
end