atomic 1.0.0-java → 1.0.1-java
Sign up to get free protection for your applications and to get access to all the features.
- data/atomic.gemspec +1 -1
- data/lib/atomic.rb +1 -1
- metadata +3 -3
data/atomic.gemspec
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{atomic}
|
5
|
-
s.version = "1.0.
|
5
|
+
s.version = "1.0.1"
|
6
6
|
s.authors = ["Charles Oliver Nutter", "MenTaLguY"]
|
7
7
|
s.date = Time.now.strftime('%Y-%m-%d')
|
8
8
|
s.description = "An atomic reference implementation for JRuby, Rubinius, and MRI"
|
data/lib/atomic.rb
CHANGED
@@ -65,7 +65,7 @@ begin
|
|
65
65
|
raise LoadError
|
66
66
|
end
|
67
67
|
rescue LoadError
|
68
|
-
warn 'unsupported Ruby engine, using less-efficient Atomic impl'
|
68
|
+
warn 'unsupported Ruby engine, using less-efficient Atomic impl' if $VERBOSE
|
69
69
|
# Portable/generic (but not very memory or scheduling-efficient) fallback
|
70
70
|
class Atomic::InternalReference #:nodoc: all
|
71
71
|
def initialize(value)
|
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: atomic
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 1.0.
|
5
|
+
version: 1.0.1
|
6
6
|
platform: java
|
7
7
|
authors:
|
8
8
|
- Charles Oliver Nutter
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2012-
|
13
|
+
date: 2012-04-26 00:00:00.000000000 Z
|
14
14
|
dependencies: []
|
15
15
|
description: An atomic reference implementation for JRuby, Rubinius, and MRI
|
16
16
|
email:
|
@@ -60,7 +60,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
60
60
|
none: false
|
61
61
|
requirements: []
|
62
62
|
rubyforge_project:
|
63
|
-
rubygems_version: 1.8.
|
63
|
+
rubygems_version: 1.8.23
|
64
64
|
signing_key:
|
65
65
|
specification_version: 3
|
66
66
|
summary: An atomic reference implementation for JRuby, Rubinius, and MRI
|