wci 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE +21 -0
- data/bin/build_gem +8 -0
- data/bin/install_gem +5 -0
- data/bin/publish_gem +5 -0
- data/lib/wci.rb +8 -0
- data/lib/wci/core.rb +4 -0
- data/lib/wci/core/threads.rb +4 -0
- data/lib/wci/core/threads/thread_queue.rb +6 -0
- data/lib/wci/wks.rb +4 -0
- data/lib/wci/wks/git_tools.rb +5 -0
- data/lib/wci/wks/git_tools/core.rb +6 -0
- metadata +54 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: f371da3595ae64d3f708a78993b0716612eb80be
|
4
|
+
data.tar.gz: 0d39751fd6ee3a2d9b040d95caa3bd891d03b3e5
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 91119304f5a3f5cc74fc6b4f69482f80b02e9392db909c66797c27a216029bae2abdc6605ca47a1e9763dae04c80409141b853df0ff4504d5943a7a02aca67c3
|
7
|
+
data.tar.gz: b3b5392d818e0656f0e2f109b8006a7c524c3e5f161b4408d3f43e85d0b4e10269f23f66c225777695cd3f47a141bb1413c30f78dd0857dd9f5ca8cf68297ba0
|
data/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2018 wibblecity
|
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 all
|
13
|
+
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 THE
|
21
|
+
SOFTWARE.
|
data/bin/build_gem
ADDED
data/bin/install_gem
ADDED
data/bin/publish_gem
ADDED
data/lib/wci.rb
ADDED
data/lib/wci/core.rb
ADDED
data/lib/wci/wks.rb
ADDED
metadata
ADDED
@@ -0,0 +1,54 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: wci
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.2
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- WibbleCity
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2018-11-22 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: WibbleCity Libs
|
14
|
+
email: ruby@42x1.com
|
15
|
+
executables: []
|
16
|
+
extensions: []
|
17
|
+
extra_rdoc_files: []
|
18
|
+
files:
|
19
|
+
- LICENSE
|
20
|
+
- bin/build_gem
|
21
|
+
- bin/install_gem
|
22
|
+
- bin/publish_gem
|
23
|
+
- lib/wci.rb
|
24
|
+
- lib/wci/core.rb
|
25
|
+
- lib/wci/core/threads.rb
|
26
|
+
- lib/wci/core/threads/thread_queue.rb
|
27
|
+
- lib/wci/wks.rb
|
28
|
+
- lib/wci/wks/git_tools.rb
|
29
|
+
- lib/wci/wks/git_tools/core.rb
|
30
|
+
homepage: http://wibbly.city
|
31
|
+
licenses:
|
32
|
+
- MIT
|
33
|
+
metadata: {}
|
34
|
+
post_install_message:
|
35
|
+
rdoc_options: []
|
36
|
+
require_paths:
|
37
|
+
- lib
|
38
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
39
|
+
requirements:
|
40
|
+
- - ">="
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
version: '0'
|
43
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
requirements: []
|
49
|
+
rubyforge_project:
|
50
|
+
rubygems_version: 2.5.2.3
|
51
|
+
signing_key:
|
52
|
+
specification_version: 4
|
53
|
+
summary: WibbleCity Libs
|
54
|
+
test_files: []
|