Skip to content

Commit 78e83db

Browse files
committed
Updated README; removed warning when not installing native code.
1 parent 8f15a3e commit 78e83db

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,9 @@ This gem adheres to the rules of [semantic versioning](http://semver.org/).
7474
### Supported Ruby versions
7575

7676
MRI 1.9.3, 2.0, 2.1, JRuby (1.9 mode), and Rubinius 2.x.
77-
This library is pure Ruby and has no gem dependencies.
78-
It should be fully compatible with any interpreter that is compliant with Ruby 1.9.3 or newer.
77+
Although native code is used for performance optimizations on some platforms, all functionality
78+
is available in pure Ruby. This gem should be fully compatible with any interpreter that is
79+
compliant with Ruby 1.9.3 or newer.
7980

8081
### Examples
8182

lib/concurrent/atomic.rb

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

2626
require "concurrent/atomic_reference/#{ruby_engine}"
2727
rescue LoadError
28-
warn 'Compiled extensions not installed, pure Ruby Atomic will be used.'
28+
#warn 'Compiled extensions not installed, pure Ruby Atomic will be used.'
2929
end
3030

3131
if defined? Concurrent::JavaAtomic

0 commit comments

Comments
 (0)