diff options
author | hsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-07-25 12:28:17 +0000 |
---|---|---|
committer | hsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-07-25 12:28:17 +0000 |
commit | 8d884d94aa4f0b8e7b23fb420fc43580b3cfc8b8 (patch) | |
tree | 57d45a3fa10e78fd8e1863c7b6ab3b3459c28bf1 /lib/mutex_m.rb | |
parent | 27785eec15e684e28f5f296bf282901c0d1d8d80 (diff) | |
download | ruby-8d884d94aa4f0b8e7b23fb420fc43580b3cfc8b8.tar.gz |
Promote Mutex_m to Default gems.
* lib/mutex_m.gemspec: Added initial gemspec.
* lib/mutex_m.rb: Added Mutex_m::VERSION for gemspec.
* tool/sync_default_gems.rb: Support Mutex_m.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64048 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/mutex_m.rb')
-rw-r--r-- | lib/mutex_m.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/mutex_m.rb b/lib/mutex_m.rb index 592e3842c8..19fe85b81c 100644 --- a/lib/mutex_m.rb +++ b/lib/mutex_m.rb @@ -35,6 +35,9 @@ # # this obj can be handled like Mutex # module Mutex_m + + VERSION = "0.1.0" + def Mutex_m.define_aliases(cl) # :nodoc: cl.module_eval %q{ alias locked? mu_locked? |