rbhex-layouts 1.1.0.alpha4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +20 -0
- data/.ruby-gemset +1 -0
- data/.ruby-version +1 -0
- data/LICENSE +56 -0
- data/README.md +26 -0
- data/lib/rbhex/layouts/monitor.rb +1205 -0
- data/lib/rbhex/layouts/version.rb +5 -0
- data/lib/rbhex/layouts.rb +1 -0
- data/rbhex-layouts.gemspec +26 -0
- metadata +68 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: d2c2555b6a877cb8fe1c56e80e0a0cda0e131dd3
|
4
|
+
data.tar.gz: 998e068d840940f4a4b9eb6da1284b0de10e122d
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: fd12078fafadc47a5ab177ac7abec70a1a3e0371508436d6823e65ed86fa2c2e2c10989b4fee38aff370cd63163f76fb39946e441cd54943d839b69e2b96b098
|
7
|
+
data.tar.gz: 85402fa96b49bc31d4e43ae2011430d4d9ab8ead41cf46f5dfd13d8371ee20c8373cfcb4f37dffb2d4456b4a07516ce0bce5d9065044b9b8fc63639f4a895fd5
|
data/.gitignore
ADDED
data/.ruby-gemset
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
rbhex-layouts
|
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
ruby-2.0.0
|
data/LICENSE
ADDED
@@ -0,0 +1,56 @@
|
|
1
|
+
rbhex is a continuation of rbcurse, (c) rkumar, 2008-2013.
|
2
|
+
You may redistribute and/or modify this software under either the terms of the
|
3
|
+
2-clause BSDL or the conditions below:
|
4
|
+
|
5
|
+
1. You may make and give away verbatim copies of the source form of the
|
6
|
+
software without restriction, provided that you duplicate all of the
|
7
|
+
original copyright notices and associated disclaimers.
|
8
|
+
|
9
|
+
2. You may modify your copy of the software in any way, provided that
|
10
|
+
you do at least ONE of the following:
|
11
|
+
|
12
|
+
a) place your modifications in the Public Domain or otherwise
|
13
|
+
make them Freely Available, such as by posting said
|
14
|
+
modifications to Usenet or an equivalent medium, or by allowing
|
15
|
+
the author to include your modifications in the software.
|
16
|
+
|
17
|
+
b) use the modified software only within your corporation or
|
18
|
+
organization.
|
19
|
+
|
20
|
+
c) give non-standard binaries non-standard names, with
|
21
|
+
instructions on where to get the original software distribution.
|
22
|
+
|
23
|
+
d) make other distribution arrangements with the author.
|
24
|
+
|
25
|
+
3. You may distribute the software in object code or binary form,
|
26
|
+
provided that you do at least ONE of the following:
|
27
|
+
|
28
|
+
a) distribute the binaries and library files of the software,
|
29
|
+
together with instructions (in the manual page or equivalent)
|
30
|
+
on where to get the original distribution.
|
31
|
+
|
32
|
+
b) accompany the distribution with the machine-readable source of
|
33
|
+
the software.
|
34
|
+
|
35
|
+
c) give non-standard binaries non-standard names, with
|
36
|
+
instructions on where to get the original software distribution.
|
37
|
+
|
38
|
+
d) make other distribution arrangements with the author.
|
39
|
+
|
40
|
+
4. You may modify and include the part of the software into any other
|
41
|
+
software (possibly commercial). But some files in the distribution
|
42
|
+
are not written by the author, so that they are not under these terms.
|
43
|
+
|
44
|
+
For the list of those files and their copying conditions, see the
|
45
|
+
file LEGAL.
|
46
|
+
|
47
|
+
5. The scripts and library files supplied as input to or produced as
|
48
|
+
output from the software do not automatically fall under the
|
49
|
+
copyright of the software, but belong to whomever generated them,
|
50
|
+
and may be sold commercially, and may be aggregated with this
|
51
|
+
software.
|
52
|
+
|
53
|
+
6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
|
54
|
+
IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
|
55
|
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
56
|
+
PURPOSE.
|
data/README.md
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
# rbhex-layouts
|
2
|
+
|
3
|
+
[![Gem Version](https://badge.fury.io/rb/rbhex-layouts.svg)](http://badge.fury.io/rb/rbhex-layouts)
|
4
|
+
|
5
|
+
Contains pre-made templates to bootstrap new [rbhex][1] applications. Rbhex helps to easily build ncurses
|
6
|
+
applications for text terminals.
|
7
|
+
|
8
|
+
## Install
|
9
|
+
|
10
|
+
This gem is a part of the larger meta-gem for rbhex.
|
11
|
+
|
12
|
+
`gem install rbhex`
|
13
|
+
|
14
|
+
But if for some odd circumstance you only need these layouts:
|
15
|
+
|
16
|
+
`gem install rbhex-layouts`
|
17
|
+
|
18
|
+
## Contributing
|
19
|
+
|
20
|
+
1. Fork it ( https://github.com/ChrisArcand/rbhex-layouts/fork )
|
21
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
22
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
23
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
24
|
+
5. Create a new Pull Request
|
25
|
+
|
26
|
+
[1]: https://github.com/ChrisArcand/rbhex
|