-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathatomic.gemspec
More file actions
24 lines (22 loc) · 809 Bytes
/
atomic.gemspec
File metadata and controls
24 lines (22 loc) · 809 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# -*- 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.16"
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/headius/ruby-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 += `git ls-files`.lines.map(&:chomp)
end