Skip to content

Commit cd2530a

Browse files
committed
Preparation for the 1.0.0.pre1 release.
1 parent 6618ddb commit cd2530a

19 files changed

+27
-168
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747

4848
MRI 1.9.3, 2.0, 2.1, 2.2, JRuby (1.9 mode), and Rubinius 2.x are supported.
4949
This gem should be fully compatible with any interpreter that is compliant with Ruby 1.9.3 or newer.
50-
Java 8 is required for JRuby (Java 7 support is deprecated in version 0.9 and will be removed in 1.0).
50+
Java 8 is preferred for JRuby but every Java version on which JRuby 9000 runs will be supported.
5151

5252
## Features & Documentation
5353

examples/actor_stress_test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env ruby
22

3-
$: << File.expand_path('../../lib', __FILE__)
3+
#$: << File.expand_path('../../lib', __FILE__)
44

55
require 'benchmark'
66
require 'optparse'

examples/at_exit_tester.rb

Lines changed: 0 additions & 29 deletions
This file was deleted.

examples/atomic_example.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env ruby
22

3-
$: << File.expand_path('../../lib', __FILE__)
3+
#$: << File.expand_path('../../lib', __FILE__)
44

55
require 'concurrent/atomics'
66

examples/bench_atomic.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env ruby
22

3-
$: << File.expand_path('../../lib', __FILE__)
3+
#$: << File.expand_path('../../lib', __FILE__)
44

55
require 'benchmark'
66
require 'rbconfig'

examples/bench_atomic_1.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env ruby
22

3-
$: << File.expand_path('../../lib', __FILE__)
3+
#$: << File.expand_path('../../lib', __FILE__)
44

55
require 'optparse'
66
require 'thread'

examples/benchmark_atomic_boolean.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env ruby
22

3-
$: << File.expand_path('../../lib', __FILE__)
3+
#$: << File.expand_path('../../lib', __FILE__)
44

55
require 'concurrent/atomics'
66
require 'benchmark'

examples/benchmark_atomic_fixnum.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env ruby
22

3-
$: << File.expand_path('../../lib', __FILE__)
3+
#$: << File.expand_path('../../lib', __FILE__)
44

55
require 'concurrent/atomics'
66
require 'benchmark'

examples/benchmark_lazy_and_delay.rb

Lines changed: 0 additions & 44 deletions
This file was deleted.

examples/benchmark_read_write_lock.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env ruby
22

3-
$: << File.expand_path('../../lib', __FILE__)
3+
#$: << File.expand_path('../../lib', __FILE__)
44

55
require 'concurrent/atomic/read_write_lock'
66
require 'benchmark'

0 commit comments

Comments
 (0)