atomic 1.1.99 → 1.1.101

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/atomic.gemspec +2 -2
  4. metadata +4 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 74be8bcace0e75690432349244a29e9548ea5aa8
4
- data.tar.gz: a6385906fa8653f0e6a143f19ad82bb719f7972c
3
+ metadata.gz: 6c08c10a0cc51f76364dac183763327ec5771e16
4
+ data.tar.gz: 351e6ec45d8dc3d6823ff7800f8c8262079e4efc
5
5
  SHA512:
6
- metadata.gz: 280de009726fd1d14da63a864b8af3f0cc53ee34ef30fa8af71dca7cff0a118230de25d9c8baa00ae9f0fedf11f85d9f835f1d6affb1d3aabfa2a6dda4111c4e
7
- data.tar.gz: e1c67893f302c75be72a50df552658ac2928011d42d508d4f1ba29135b1183a6a386a887666adf51cbebbc6c2dbd824014ddff8c4638d8482d2088db1bf2f76a
6
+ metadata.gz: 0664e29b96730835a481c350bd2e0ce7395584f8f77c11ba1b37d96c72d76ddd11c4a6c4aac3f617cc30dd9c4311c8736bf836d9bb00915067843898a321892c
7
+ data.tar.gz: 06bb6b18a7e0a15fce940eb38578cc5fc75f4821af350f187a0f4f71519b7d885d3c9ae4b34c6c91f5cdd13a2c555e2b4f6255059e93a63793d08f261e79d534
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 GitHUb and Rubygems.org indefinitely but no new development
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
 
@@ -4,13 +4,13 @@
4
4
 
5
5
  Gem::Specification.new do |s|
6
6
  s.name = %q{atomic}
7
- s.version = "1.1.99"
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
13
- s.homepage = "http://github.com/ruby-concurrency/ruby-atomic"
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.99
4
+ version: 1.1.101
5
5
  platform: ruby
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: 2015-01-26 00:00:00.000000000 Z
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:
@@ -48,7 +48,7 @@ files:
48
48
  - lib/atomic/rbx.rb
49
49
  - lib/atomic/ruby.rb
50
50
  - test/test_atomic.rb
51
- homepage: http://github.com/ruby-concurrency/ruby-atomic
51
+ homepage: http://github.com/ruby-concurrency/atomic
52
52
  licenses:
53
53
  - Apache-2.0
54
54
  metadata: {}
@@ -69,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
69
69
  version: '0'
70
70
  requirements: []
71
71
  rubyforge_project:
72
- rubygems_version: 2.4.5
72
+ rubygems_version: 2.6.14
73
73
  signing_key:
74
74
  specification_version: 4
75
75
  summary: An atomic reference implementation for JRuby, Rubinius, and MRI
OSZAR »