termplot 0.1.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.
- checksums.yaml +7 -0
- data/.gitignore +10 -0
- data/Gemfile +9 -0
- data/LICENSE.txt +21 -0
- data/README.md +131 -0
- data/Rakefile +18 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/bin/termplot +5 -0
- data/doc/cpu.png +0 -0
- data/doc/demo.cast +638 -0
- data/doc/demo.gif +0 -0
- data/doc/memory.png +0 -0
- data/doc/sin.png +0 -0
- data/doc/tcp.png +0 -0
- data/lib/termplot.rb +9 -0
- data/lib/termplot/character_map.rb +55 -0
- data/lib/termplot/cli.rb +59 -0
- data/lib/termplot/colors.rb +55 -0
- data/lib/termplot/consumer.rb +71 -0
- data/lib/termplot/cursors/buffered_console_cursor.rb +70 -0
- data/lib/termplot/cursors/console_cursor.rb +56 -0
- data/lib/termplot/cursors/control_chars.rb +11 -0
- data/lib/termplot/cursors/virtual_cursor.rb +76 -0
- data/lib/termplot/renderer.rb +279 -0
- data/lib/termplot/series.rb +37 -0
- data/lib/termplot/shell.rb +31 -0
- data/lib/termplot/version.rb +3 -0
- data/lib/termplot/window.rb +69 -0
- data/termplot.gemspec +32 -0
- metadata +91 -0
metadata
ADDED
@@ -0,0 +1,91 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: termplot
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Martin Nyaga
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2020-11-04 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: ruby-termios
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.0'
|
27
|
+
description: Plot time series charts in your terminal
|
28
|
+
email:
|
29
|
+
- nyagamartin72@gmail.com
|
30
|
+
executables:
|
31
|
+
- termplot
|
32
|
+
extensions: []
|
33
|
+
extra_rdoc_files: []
|
34
|
+
files:
|
35
|
+
- ".gitignore"
|
36
|
+
- Gemfile
|
37
|
+
- LICENSE.txt
|
38
|
+
- README.md
|
39
|
+
- Rakefile
|
40
|
+
- bin/console
|
41
|
+
- bin/setup
|
42
|
+
- bin/termplot
|
43
|
+
- doc/cpu.png
|
44
|
+
- doc/demo.cast
|
45
|
+
- doc/demo.gif
|
46
|
+
- doc/memory.png
|
47
|
+
- doc/sin.png
|
48
|
+
- doc/tcp.png
|
49
|
+
- lib/termplot.rb
|
50
|
+
- lib/termplot/character_map.rb
|
51
|
+
- lib/termplot/cli.rb
|
52
|
+
- lib/termplot/colors.rb
|
53
|
+
- lib/termplot/consumer.rb
|
54
|
+
- lib/termplot/cursors/buffered_console_cursor.rb
|
55
|
+
- lib/termplot/cursors/console_cursor.rb
|
56
|
+
- lib/termplot/cursors/control_chars.rb
|
57
|
+
- lib/termplot/cursors/virtual_cursor.rb
|
58
|
+
- lib/termplot/renderer.rb
|
59
|
+
- lib/termplot/series.rb
|
60
|
+
- lib/termplot/shell.rb
|
61
|
+
- lib/termplot/version.rb
|
62
|
+
- lib/termplot/window.rb
|
63
|
+
- termplot.gemspec
|
64
|
+
homepage: https://github.com/Martin-Nyaga/termplot
|
65
|
+
licenses:
|
66
|
+
- MIT
|
67
|
+
metadata:
|
68
|
+
homepage_uri: https://github.com/Martin-Nyaga/termplot
|
69
|
+
source_code_uri: https://github.com/Martin-Nyaga/termplot
|
70
|
+
changelog_uri: https://github.com/Martin-Nyaga/termplot
|
71
|
+
post_install_message:
|
72
|
+
rdoc_options: []
|
73
|
+
require_paths:
|
74
|
+
- lib
|
75
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
76
|
+
requirements:
|
77
|
+
- - ">="
|
78
|
+
- !ruby/object:Gem::Version
|
79
|
+
version: 2.3.0
|
80
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
81
|
+
requirements:
|
82
|
+
- - ">="
|
83
|
+
- !ruby/object:Gem::Version
|
84
|
+
version: '0'
|
85
|
+
requirements: []
|
86
|
+
rubyforge_project:
|
87
|
+
rubygems_version: 2.7.3
|
88
|
+
signing_key:
|
89
|
+
specification_version: 4
|
90
|
+
summary: Plot time series charts in your terminal
|
91
|
+
test_files: []
|