atomic 1.0.0 → 1.0.1
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 +4 -4
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
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: atomic
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 21
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 1.0.
|
9
|
+
- 1
|
10
|
+
version: 1.0.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Charles Oliver Nutter
|
@@ -16,7 +16,7 @@ autorequire:
|
|
16
16
|
bindir: bin
|
17
17
|
cert_chain: []
|
18
18
|
|
19
|
-
date: 2012-
|
19
|
+
date: 2012-04-26 00:00:00 Z
|
20
20
|
dependencies: []
|
21
21
|
|
22
22
|
description: An atomic reference implementation for JRuby, Rubinius, and MRI
|