concurrent-ruby 0.0.1

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: 23428b19ba9bf0dbfb21cc1262c8607bd5b40b8d
4
+ data.tar.gz: 7757f144dfef3b8823d5dacc6e3b3db6a220a9aa
5
+ SHA512:
6
+ metadata.gz: 445c8a14988adb216f4314453381dcc56d27f399444d8cc15f4086151699208a15c7fc14a54abeeccf69bd83440ff3a7d8a7ccf240b1c845d2612d567889ebe4
7
+ data.tar.gz: f6ddc0ec2cf80080fafc79be80d7c6d5f7e220685266ff0ccc6964a06b70f54ca3f0ac4b721266510c356c580089dc892efd6a27698b39a3921fd92169a835ee
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ Copyright (c) Jerry D'Antonio -- released under the MIT license.
2
+
3
+ http://www.opensource.org/licenses/mit-license.php
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,4 @@
1
+ # Concurrent Ruby
2
+
3
+ This gem does nothing. It's a placeholder into which I plan to move the concurrency
4
+ features of my [functional-ruby](https://github.com/jdantonio/functional-ruby) gem.
data/lib/concurrent.rb ADDED
@@ -0,0 +1 @@
1
+ require 'concurrent/version'
@@ -0,0 +1,3 @@
1
+ module Concurrent
2
+ VERSION = '0.0.1'
3
+ end
@@ -0,0 +1,17 @@
1
+ require 'concurrent'
2
+
3
+ # import all the support files
4
+ Dir[File.join(File.dirname(__FILE__), 'support/**/*.rb')].each { |f| require File.expand_path(f) }
5
+
6
+ RSpec.configure do |config|
7
+
8
+ config.before(:suite) do
9
+ end
10
+
11
+ config.before(:each) do
12
+ end
13
+
14
+ config.after(:each) do
15
+ end
16
+
17
+ end
metadata ADDED
@@ -0,0 +1,66 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: concurrent-ruby
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Jerry D'Antonio
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-07-23 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: '0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '>='
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ description: |2
28
+ This gem does nothing. It is a placeholder for a gem I plan to build.
29
+ email: jerry.dantonio@gmail.com
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files:
33
+ - README.md
34
+ - LICENSE
35
+ files:
36
+ - README.md
37
+ - LICENSE
38
+ - lib/concurrent/version.rb
39
+ - lib/concurrent.rb
40
+ - spec/spec_helper.rb
41
+ homepage: https://github.com/jdantonio/concurrent-ruby/
42
+ licenses:
43
+ - MIT
44
+ metadata: {}
45
+ post_install_message:
46
+ rdoc_options: []
47
+ require_paths:
48
+ - lib
49
+ required_ruby_version: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - '>='
52
+ - !ruby/object:Gem::Version
53
+ version: 1.9.2
54
+ required_rubygems_version: !ruby/object:Gem::Requirement
55
+ requirements:
56
+ - - '>='
57
+ - !ruby/object:Gem::Version
58
+ version: '0'
59
+ requirements: []
60
+ rubyforge_project:
61
+ rubygems_version: 2.0.3
62
+ signing_key:
63
+ specification_version: 4
64
+ summary: This gem does nothing. It is a placeholder for a gem I plan to build.
65
+ test_files:
66
+ - spec/spec_helper.rb