showterm 0.1.1 → 0.2
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.
- data/bin/showterm +1 -3
- data/ext/Makefile +34 -0
- data/ext/README +27 -0
- data/ext/extconf.rb +0 -0
- data/ext/io.c +161 -0
- data/ext/io.h +13 -0
- data/ext/ttyplay.1 +62 -0
- data/ext/ttyplay.c +312 -0
- data/ext/ttyrec.1 +76 -0
- data/ext/ttyrec.c +483 -0
- data/ext/ttyrec.h +12 -0
- data/ext/ttytime.1 +27 -0
- data/ext/ttytime.c +70 -0
- data/lib/showterm.rb +69 -23
- data/showterm.gemspec +2 -1
- metadata +17 -3
data/showterm.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = "showterm"
|
3
|
-
s.version = "0.
|
3
|
+
s.version = "0.2"
|
4
4
|
s.platform = Gem::Platform::RUBY
|
5
5
|
s.author = "Conrad Irwin"
|
6
6
|
s.email = "conrad.irwin@gmail.com"
|
@@ -9,5 +9,6 @@ Gem::Specification.new do |s|
|
|
9
9
|
s.description = "Integrates with showterm.io for awesome sharability."
|
10
10
|
s.files = `git ls-files`.split("\n")
|
11
11
|
s.require_path = "lib"
|
12
|
+
s.extensions = "ext/extconf.rb"
|
12
13
|
s.executables << 'showterm'
|
13
14
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: showterm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: '0.2'
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,18 +9,31 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-10-
|
12
|
+
date: 2012-10-09 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
14
|
description: Integrates with showterm.io for awesome sharability.
|
15
15
|
email: conrad.irwin@gmail.com
|
16
16
|
executables:
|
17
17
|
- showterm
|
18
|
-
extensions:
|
18
|
+
extensions:
|
19
|
+
- ext/extconf.rb
|
19
20
|
extra_rdoc_files: []
|
20
21
|
files:
|
21
22
|
- LICENSE.MIT
|
22
23
|
- README.md
|
23
24
|
- bin/showterm
|
25
|
+
- ext/Makefile
|
26
|
+
- ext/README
|
27
|
+
- ext/extconf.rb
|
28
|
+
- ext/io.c
|
29
|
+
- ext/io.h
|
30
|
+
- ext/ttyplay.1
|
31
|
+
- ext/ttyplay.c
|
32
|
+
- ext/ttyrec.1
|
33
|
+
- ext/ttyrec.c
|
34
|
+
- ext/ttyrec.h
|
35
|
+
- ext/ttytime.1
|
36
|
+
- ext/ttytime.c
|
24
37
|
- lib/showterm.rb
|
25
38
|
- showterm.gemspec
|
26
39
|
homepage: http://github.com/Conradirwin/showterm
|
@@ -48,3 +61,4 @@ signing_key:
|
|
48
61
|
specification_version: 3
|
49
62
|
summary: Allows you to make screen casts of your terminal really easily
|
50
63
|
test_files: []
|
64
|
+
has_rdoc:
|