wci 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -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.
@@ -0,0 +1,8 @@
1
+ #!/bin/bash
2
+
3
+ gem build wci.gemspec
4
+
5
+ TARGET_GEM=`ls -1 *.gem`
6
+
7
+ mkdir -p dist
8
+ mv -v *.gem dist/
@@ -0,0 +1,5 @@
1
+ #!/bin/bash
2
+
3
+ TARGET_GEM=`ls -1 dist/*.gem | sort | tail -n 1`
4
+
5
+ sudo gem install ${TARGET_GEM}
@@ -0,0 +1,5 @@
1
+ #!/bin/bash
2
+
3
+ TARGET_GEM=`ls -1 dist/*.gem | sort | tail -n 1`
4
+
5
+ gem push "${TARGET_GEM}"
@@ -0,0 +1,8 @@
1
+ module Wci ; end
2
+
3
+ ### libs
4
+ require 'fileutils'
5
+ require "logger"
6
+
7
+ ### wci libs
8
+ require "wci/*.rb"
@@ -0,0 +1,4 @@
1
+ module Wci::Core ; end
2
+
3
+ ### wci libs
4
+ require "core/*.rb"
@@ -0,0 +1,4 @@
1
+ module Wci::Wks::Threads ; end
2
+
3
+ ### wci libs
4
+ require "threads/*.rb"
@@ -0,0 +1,6 @@
1
+
2
+ class Wci::Core::Threads::Thread_Queue
3
+
4
+
5
+
6
+ end
@@ -0,0 +1,4 @@
1
+ module Wci::Wks ; end
2
+
3
+ ### wci libs
4
+ require "wks/*.rb"
@@ -0,0 +1,5 @@
1
+
2
+ module Wci::Wks::Git_Tools ; end
3
+
4
+ ### wci libs
5
+ require "git_tools/*.rb"
@@ -0,0 +1,6 @@
1
+
2
+ class Wci::Wks::Git_Tools::Core
3
+
4
+
5
+
6
+ end
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: []