atomic 1.1.99-java → 1.1.101-java
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/atomic.gemspec +2 -2
- metadata +14 -12
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 80a20b0d0c996695ea4911506621a8302417b719
|
4
|
+
data.tar.gz: 0ef287171339b708bb1bfa8dc1568cb643fa3068
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dc0850a86133a586070e2ef6c5854293ba63af3cfb5662087c0a384ad45733128fd1107fd824f012c016fe8bf974dafc2938082b05ba740dfa2137a709704be5
|
7
|
+
data.tar.gz: cb494573a6d38dee2ec2717d282d8118dae786cc63f718c62365032d4025b01923065c1dbeb097f66e78eded4f5f44bbfe865f3c5adcb242e6daebdbc7fa9961
|
data/README.md
CHANGED
@@ -7,7 +7,7 @@ An atomic reference implementation for JRuby, Rubinius, and MRI.
|
|
7
7
|
# Deprecated!
|
8
8
|
|
9
9
|
*This gem has been deprecated in lieu of [Concurrent Ruby](http://www.concurrent-ruby.com).
|
10
|
-
This gem will be retained in
|
10
|
+
This gem will be retained in GitHub and Rubygems.org indefinitely but no new development
|
11
11
|
will occur, including updates to support new versions of Ruby, JRuby, and Java. All users
|
12
12
|
of this gem are encouraged to update their projects to use `concurrent-ruby` instead.*
|
13
13
|
|
data/atomic.gemspec
CHANGED
@@ -4,13 +4,13 @@
|
|
4
4
|
|
5
5
|
Gem::Specification.new do |s|
|
6
6
|
s.name = %q{atomic}
|
7
|
-
s.version = "1.1.
|
7
|
+
s.version = "1.1.101"
|
8
8
|
s.authors = ["Charles Oliver Nutter", "MenTaLguY", "Sokolov Yura"]
|
9
9
|
s.date = Time.now.strftime('%Y-%m-%d')
|
10
10
|
s.summary = "An atomic reference implementation for JRuby, Rubinius, and MRI"
|
11
11
|
s.description = s.summary
|
12
12
|
s.email = ["headius@headius.com", "mental@rydia.net", "funny.falcon@gmail.com"]
|
13
|
-
s.homepage = "http://github.com/ruby-concurrency/
|
13
|
+
s.homepage = "http://github.com/ruby-concurrency/atomic"
|
14
14
|
s.require_paths = ["lib"]
|
15
15
|
s.licenses = ["Apache-2.0"]
|
16
16
|
s.test_files = Dir["test/test*.rb"]
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: atomic
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.101
|
5
5
|
platform: java
|
6
6
|
authors:
|
7
7
|
- Charles Oliver Nutter
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date:
|
13
|
+
date: 2018-05-10 00:00:00.000000000 Z
|
14
14
|
dependencies: []
|
15
15
|
description: An atomic reference implementation for JRuby, Rubinius, and MRI
|
16
16
|
email:
|
@@ -21,11 +21,9 @@ executables: []
|
|
21
21
|
extensions: []
|
22
22
|
extra_rdoc_files: []
|
23
23
|
files:
|
24
|
-
-
|
25
|
-
-
|
26
|
-
- .
|
27
|
-
- .gitignore
|
28
|
-
- .travis.yml
|
24
|
+
- ".coveralls.yml"
|
25
|
+
- ".gitignore"
|
26
|
+
- ".travis.yml"
|
29
27
|
- Gemfile
|
30
28
|
- LICENSE
|
31
29
|
- README.md
|
@@ -48,29 +46,33 @@ files:
|
|
48
46
|
- lib/atomic/numeric_cas_wrapper.rb
|
49
47
|
- lib/atomic/rbx.rb
|
50
48
|
- lib/atomic/ruby.rb
|
51
|
-
|
49
|
+
- lib/atomic_reference.jar
|
50
|
+
- test/test_atomic.rb
|
51
|
+
homepage: http://github.com/ruby-concurrency/atomic
|
52
52
|
licenses:
|
53
53
|
- Apache-2.0
|
54
54
|
metadata: {}
|
55
|
-
post_install_message: This gem has been deprecated and merged into Concurrent Ruby
|
55
|
+
post_install_message: This gem has been deprecated and merged into Concurrent Ruby
|
56
|
+
(http://concurrent-ruby.com).
|
56
57
|
rdoc_options: []
|
57
58
|
require_paths:
|
58
59
|
- lib
|
59
60
|
required_ruby_version: !ruby/object:Gem::Requirement
|
60
61
|
requirements:
|
61
|
-
- -
|
62
|
+
- - ">="
|
62
63
|
- !ruby/object:Gem::Version
|
63
64
|
version: '0'
|
64
65
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
65
66
|
requirements:
|
66
|
-
- -
|
67
|
+
- - ">="
|
67
68
|
- !ruby/object:Gem::Version
|
68
69
|
version: '0'
|
69
70
|
requirements: []
|
70
71
|
rubyforge_project:
|
71
|
-
rubygems_version: 2.1
|
72
|
+
rubygems_version: 2.6.14.1
|
72
73
|
signing_key:
|
73
74
|
specification_version: 4
|
74
75
|
summary: An atomic reference implementation for JRuby, Rubinius, and MRI
|
75
76
|
test_files:
|
76
77
|
- test/test_atomic.rb
|
78
|
+
has_rdoc:
|