rubysl-mutex_m 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 6145f23fe011debee488b2ac0de35f7ce5e6dafc
4
+ data.tar.gz: 44b34c816144b234351ec4b4adeb3bde6c258318
5
+ SHA512:
6
+ metadata.gz: ae23dc5a70e114d7537750c01f68a70e90388a4cfa6549b6a7399a001e1c54f5d96c9537d71b7b3162d64aa314eee51094b92e7e8d7e5ce939d080c5fb3ceb72
7
+ data.tar.gz: 9cba2c7635215b5d40b96d3e4e8c8dfef3f98cbaa34c559f5ed732c3e90fbf0d2e68f2d5f58c9bd1b618d1b7cc4f6b489c09eababd000aee88c3fbd8a255d0b8
data/.gitignore ADDED
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/.travis.yml ADDED
@@ -0,0 +1,8 @@
1
+ language: ruby
2
+ before_install:
3
+ - gem update --system
4
+ - gem --version
5
+ - gem install rubysl-bundler
6
+ script: bundle exec mspec spec
7
+ rvm:
8
+ - rbx-nightly-18mode
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in rubysl-mutex_m.gemspec
4
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,25 @@
1
+ Copyright (c) 2013, Brian Shirai
2
+ All rights reserved.
3
+
4
+ Redistribution and use in source and binary forms, with or without
5
+ modification, are permitted provided that the following conditions are met:
6
+
7
+ 1. Redistributions of source code must retain the above copyright notice, this
8
+ list of conditions and the following disclaimer.
9
+ 2. Redistributions in binary form must reproduce the above copyright notice,
10
+ this list of conditions and the following disclaimer in the documentation
11
+ and/or other materials provided with the distribution.
12
+ 3. Neither the name of the library nor the names of its contributors may be
13
+ used to endorse or promote products derived from this software without
14
+ specific prior written permission.
15
+
16
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19
+ DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY DIRECT,
20
+ INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
21
+ BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
23
+ OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
24
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
25
+ EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
data/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # Rubysl::MutexM
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'rubysl-mutex_m'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install rubysl-mutex_m
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it
26
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
28
+ 4. Push to the branch (`git push origin my-new-feature`)
29
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
data/lib/mutex_m.rb ADDED
@@ -0,0 +1 @@
1
+ require "rubysl/mutex_m"
@@ -0,0 +1,2 @@
1
+ require "rubysl/mutex_m/mutex_m"
2
+ require "rubysl/mutex_m/version"
@@ -0,0 +1,99 @@
1
+ #--
2
+ # mutex_m.rb -
3
+ # $Release Version: 3.0$
4
+ # $Revision$
5
+ # $Date$
6
+ # Original from mutex.rb
7
+ # by Keiju ISHITSUKA(keiju@ishitsuka.com)
8
+ # modified by matz
9
+ # patched by akira yamada
10
+ # gutted by MenTaLguY
11
+ #++
12
+ #
13
+ # == Usage
14
+ #
15
+ # Extend an object and use it like a Mutex object:
16
+ #
17
+ # require "mutex_m.rb"
18
+ # obj = Object.new
19
+ # obj.extend Mutex_m
20
+ # # ...
21
+ #
22
+ # Or, include Mutex_m in a class to have its instances behave like a Mutex
23
+ # object:
24
+ #
25
+ # class Foo
26
+ # include Mutex_m
27
+ # # ...
28
+ # end
29
+ #
30
+ # obj = Foo.new
31
+
32
+ require 'thread'
33
+
34
+ module Mutex_m
35
+ def Mutex_m.define_aliases(cl)
36
+ cl.module_eval %q{
37
+ alias locked? mu_locked?
38
+ alias lock mu_lock
39
+ alias unlock mu_unlock
40
+ alias try_lock mu_try_lock
41
+ alias synchronize mu_synchronize
42
+ }
43
+ end
44
+
45
+ def Mutex_m.append_features(cl)
46
+ super
47
+ define_aliases(cl) unless cl.instance_of?(Module)
48
+ end
49
+
50
+ def Mutex_m.extend_object(obj)
51
+ super
52
+ obj.mu_extended
53
+ end
54
+
55
+ def mu_extended
56
+ unless (defined? locked? and
57
+ defined? lock and
58
+ defined? unlock and
59
+ defined? try_lock and
60
+ defined? synchronize)
61
+ Mutex_m.define_aliases(class<<self;self;end)
62
+ end
63
+ mu_initialize
64
+ end
65
+
66
+ # locking
67
+ def mu_synchronize
68
+ @mu_mutex.synchronize { yield }
69
+ end
70
+
71
+ def mu_locked?
72
+ @mu_mutex.locked?
73
+ end
74
+
75
+ def mu_try_lock
76
+ @mu_mutex.try_lock
77
+ end
78
+
79
+ def mu_lock
80
+ @mu_mutex.lock
81
+ self
82
+ end
83
+
84
+ def mu_unlock
85
+ @mu_mutex.unlock
86
+ self
87
+ end
88
+
89
+ private
90
+
91
+ def mu_initialize
92
+ @mu_mutex = ::Mutex.new
93
+ end
94
+
95
+ def initialize(*args)
96
+ mu_initialize
97
+ super
98
+ end
99
+ end
@@ -0,0 +1,5 @@
1
+ module RubySL
2
+ module Mutex_m
3
+ VERSION = "1.0.0"
4
+ end
5
+ end
@@ -0,0 +1,23 @@
1
+ # coding: utf-8
2
+ require './lib/rubysl/mutex_m/version'
3
+
4
+ Gem::Specification.new do |spec|
5
+ spec.name = "rubysl-mutex_m"
6
+ spec.version = RubySL::Mutex_m::VERSION
7
+ spec.authors = ["Brian Shirai"]
8
+ spec.email = ["brixen@gmail.com"]
9
+ spec.description = %q{Ruby standard library mutex_m.}
10
+ spec.summary = %q{Ruby standard library mutex_m.}
11
+ spec.homepage = "https://github.com/rubysl/rubysl-mutex_m"
12
+ spec.license = "BSD"
13
+
14
+ spec.files = `git ls-files`.split($/)
15
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
16
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
17
+ spec.require_paths = ["lib"]
18
+
19
+ spec.add_development_dependency "bundler", "~> 1.3"
20
+ spec.add_development_dependency "rake", "~> 10.0"
21
+ spec.add_development_dependency "mspec", "~> 1.5"
22
+ spec.add_development_dependency "rubysl-prettyprint", "~> 1.0"
23
+ end
metadata ADDED
@@ -0,0 +1,111 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rubysl-mutex_m
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Brian Shirai
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-12-26 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: '1.3'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '1.3'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ~>
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: mspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ~>
46
+ - !ruby/object:Gem::Version
47
+ version: '1.5'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ~>
53
+ - !ruby/object:Gem::Version
54
+ version: '1.5'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rubysl-prettyprint
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ~>
60
+ - !ruby/object:Gem::Version
61
+ version: '1.0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ~>
67
+ - !ruby/object:Gem::Version
68
+ version: '1.0'
69
+ description: Ruby standard library mutex_m.
70
+ email:
71
+ - brixen@gmail.com
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - .gitignore
77
+ - .travis.yml
78
+ - Gemfile
79
+ - LICENSE
80
+ - README.md
81
+ - Rakefile
82
+ - lib/mutex_m.rb
83
+ - lib/rubysl/mutex_m.rb
84
+ - lib/rubysl/mutex_m/mutex_m.rb
85
+ - lib/rubysl/mutex_m/version.rb
86
+ - rubysl-mutex_m.gemspec
87
+ homepage: https://github.com/rubysl/rubysl-mutex_m
88
+ licenses:
89
+ - BSD
90
+ metadata: {}
91
+ post_install_message:
92
+ rdoc_options: []
93
+ require_paths:
94
+ - lib
95
+ required_ruby_version: !ruby/object:Gem::Requirement
96
+ requirements:
97
+ - - '>='
98
+ - !ruby/object:Gem::Version
99
+ version: '0'
100
+ required_rubygems_version: !ruby/object:Gem::Requirement
101
+ requirements:
102
+ - - '>='
103
+ - !ruby/object:Gem::Version
104
+ version: '0'
105
+ requirements: []
106
+ rubyforge_project:
107
+ rubygems_version: 2.0.7
108
+ signing_key:
109
+ specification_version: 4
110
+ summary: Ruby standard library mutex_m.
111
+ test_files: []