mayo 0.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (6) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +13 -0
  3. data/README.md +9 -0
  4. data/lib/mayo.rb +2 -0
  5. data/mayo.gemspec +11 -0
  6. metadata +47 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 4a2edf3998b559efe9a031a5a07b31c05f3c2771
4
+ data.tar.gz: '08aaca36a707e5a28b8b3e6378578cf07d82ce05'
5
+ SHA512:
6
+ metadata.gz: 119a2ee10a33a3474222f854e721b2bca2d5278157ef895c8e4da34a20caec62e1688728e98a186a2e6183141d9c2165bd4ede29de196e6096050815e797df8f
7
+ data.tar.gz: 3feb7c7a895f4562dbf799975a38b756a7def1608ca16135c37fbfc9642125a08d19b615a784e131ecf52cb732fd426e0f2f4a75961ed7cce8fd454653ea6f91
data/LICENSE ADDED
@@ -0,0 +1,13 @@
1
+ Copyright (c) 2017 Richard Bishop
2
+
3
+ Licensed under the Apache License, Version 2.0 (the "License");
4
+ you may not use this file except in compliance with the License.
5
+ You may obtain a copy of the License at
6
+
7
+ http://www.apache.org/licenses/LICENSE-2.0
8
+
9
+ Unless required by applicable law or agreed to in writing, software
10
+ distributed under the License is distributed on an "AS IS" BASIS,
11
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ See the License for the specific language governing permissions and
13
+ limitations under the License.
data/README.md ADDED
@@ -0,0 +1,9 @@
1
+ # Mayo
2
+
3
+ ## Why
4
+
5
+ ## Design
6
+
7
+ ### Back-Ends
8
+
9
+ ### Front-Ends
data/lib/mayo.rb ADDED
@@ -0,0 +1,2 @@
1
+ module Mayo
2
+ end
data/mayo.gemspec ADDED
@@ -0,0 +1,11 @@
1
+ Gem::Specification.new do |s|
2
+ s.name = "mayo"
3
+ s.version = "0.0.0"
4
+ s.summary = "Adapter for asynchronous I/O"
5
+ s.description = "Mayo provides an interface for connecting async I/O implementations with applications"
6
+ s.authors = ["Richard Bishop"]
7
+ s.email = "richard@rubiquity.com"
8
+ s.files = `git ls-files`.split($/)
9
+ s.homepage = "https://github.com/rbishop/mayo"
10
+ s.require_paths = ["lib"]
11
+ end
metadata ADDED
@@ -0,0 +1,47 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: mayo
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Richard Bishop
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-03-26 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Mayo provides an interface for connecting async I/O implementations with
14
+ applications
15
+ email: richard@rubiquity.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - LICENSE
21
+ - README.md
22
+ - lib/mayo.rb
23
+ - mayo.gemspec
24
+ homepage: https://github.com/rbishop/mayo
25
+ licenses: []
26
+ metadata: {}
27
+ post_install_message:
28
+ rdoc_options: []
29
+ require_paths:
30
+ - lib
31
+ required_ruby_version: !ruby/object:Gem::Requirement
32
+ requirements:
33
+ - - ">="
34
+ - !ruby/object:Gem::Version
35
+ version: '0'
36
+ required_rubygems_version: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ requirements: []
42
+ rubyforge_project:
43
+ rubygems_version: 2.6.8
44
+ signing_key:
45
+ specification_version: 4
46
+ summary: Adapter for asynchronous I/O
47
+ test_files: []