shellcast 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/VERSION +1 -1
  2. data/shellcast.1 +107 -0
  3. data/shellcast.1.ronn +63 -0
  4. metadata +6 -4
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.1.1
data/shellcast.1 ADDED
@@ -0,0 +1,107 @@
1
+ .\" generated with Ronn/v0.7.3
2
+ .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
+ .
4
+ .TH "SHELLCAST" "1" "January 2011" "" ""
5
+ .
6
+ .SH "NAME"
7
+ \fBshellcast\fR \- screencasting for shell junkies
8
+ .
9
+ .SH "SYNOPSIS"
10
+ \fBshellcast\fR command [id]
11
+ .
12
+ .SH "DESCRIPTION"
13
+ \fBShellcast\fR records terminal output and can replay it
14
+ .
15
+ .SH "COMMANDS"
16
+ .
17
+ .TP
18
+ \fBrecord\fR
19
+ Will record your terminal unless you type \fBexit\fR or Ctrl+D and store it to $HOME/\.local/share/shellcast/
20
+ .
21
+ .TP
22
+ \fBlist\fR
23
+ lists all your shellcasts\.
24
+ .
25
+ .TP
26
+ \fBplay\fR
27
+ plays local or remote shellcast\.
28
+ .
29
+ .TP
30
+ \fBpush\fR
31
+ publish your shellcast
32
+ .
33
+ .SH "EXAMPLES"
34
+ Record your shellcast:
35
+ .
36
+ .IP "" 4
37
+ .
38
+ .nf
39
+
40
+ $ shellcast record
41
+ \.\.\. do something \.\.\.
42
+ $ exit
43
+ .
44
+ .fi
45
+ .
46
+ .IP "" 0
47
+ .
48
+ .P
49
+ List recorded shellcasts:
50
+ .
51
+ .IP "" 4
52
+ .
53
+ .nf
54
+
55
+ $ shellcast list
56
+ .
57
+ .fi
58
+ .
59
+ .IP "" 0
60
+ .
61
+ .P
62
+ Play local shellcast:
63
+ .
64
+ .IP "" 4
65
+ .
66
+ .nf
67
+
68
+ $ shellcast play 1293702847
69
+ .
70
+ .fi
71
+ .
72
+ .IP "" 0
73
+ .
74
+ .P
75
+ Play remote shellcast:
76
+ .
77
+ .IP "" 4
78
+ .
79
+ .nf
80
+
81
+ $ shellcast play http://shell\.heroku\.com/records/4d1f7c3890820d6144000002\.json
82
+ .
83
+ .fi
84
+ .
85
+ .IP "" 0
86
+ .
87
+ .P
88
+ Publish your shellcast:
89
+ .
90
+ .IP "" 4
91
+ .
92
+ .nf
93
+
94
+ $ shellcast push 1293702847
95
+ .
96
+ .fi
97
+ .
98
+ .IP "" 0
99
+ .
100
+ .SH "BUGS"
101
+ \fBshellcast\fR is written in Ruby and depends on \fBscript\fR and \fBscriptreplay\fR, commands libraries that are non\-trivial to install on some systems\.
102
+ .
103
+ .SH "COPYRIGHT"
104
+ Ronn is Copyright (C) 2011 Antono Vasiljev \fIhttp://antono\.info/\fR
105
+ .
106
+ .SH "SEE ALSO"
107
+ script(1), scriptreplay(1)
data/shellcast.1.ronn ADDED
@@ -0,0 +1,63 @@
1
+ shellcast(1) -- screencasting for shell junkies
2
+ ===============================================
3
+
4
+ ## SYNOPSIS
5
+
6
+ `shellcast` command [id]
7
+
8
+ ## DESCRIPTION
9
+
10
+ **Shellcast** records terminal output and can replay it
11
+
12
+ ## COMMANDS
13
+
14
+ * `record`:
15
+ Will record your terminal unless you type `exit` or Ctrl+D and
16
+ store it to $HOME/.local/share/shellcast/
17
+
18
+ * `list`:
19
+ lists all your shellcasts.
20
+
21
+ * `play`:
22
+ plays local or remote shellcast.
23
+
24
+ * `push`:
25
+ publish your shellcast
26
+
27
+ ## EXAMPLES
28
+
29
+ Record your shellcast:
30
+
31
+ $ shellcast record
32
+ ... do something ...
33
+ $ exit
34
+
35
+ List recorded shellcasts:
36
+
37
+ $ shellcast list
38
+
39
+ Play local shellcast:
40
+
41
+ $ shellcast play 1293702847
42
+
43
+ Play remote shellcast:
44
+
45
+ $ shellcast play http://shell.heroku.com/records/4d1f7c3890820d6144000002.json
46
+
47
+ Publish your shellcast:
48
+
49
+ $ shellcast push 1293702847
50
+
51
+
52
+ ## BUGS
53
+
54
+ **shellcast** is written in Ruby and depends on `script` and `scriptreplay`,
55
+ commands libraries that are non-trivial to install on some systems.
56
+
57
+ ## COPYRIGHT
58
+
59
+ Ronn is Copyright (C) 2011 Antono Vasiljev <http://antono.info/>
60
+
61
+ ## SEE ALSO
62
+
63
+ script(1), scriptreplay(1)
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 0
9
- version: 0.1.0
8
+ - 1
9
+ version: 0.1.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Antono Vasiljev
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2011-01-15 00:00:00 +02:00
17
+ date: 2011-01-17 00:00:00 +02:00
18
18
  default_executable: shellcast
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
@@ -133,6 +133,8 @@ files:
133
133
  - lib/shellcast/player.rb
134
134
  - lib/shellcast/publisher.rb
135
135
  - lib/shellcast/recorder.rb
136
+ - shellcast.1
137
+ - shellcast.1.ronn
136
138
  - spec/shellcast/player_spec.rb
137
139
  - spec/shellcast/publisher_spec.rb
138
140
  - spec/shellcast/recorder_spec.rb
@@ -152,7 +154,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
152
154
  requirements:
153
155
  - - ">="
154
156
  - !ruby/object:Gem::Version
155
- hash: -462718573
157
+ hash: -1043002275
156
158
  segments:
157
159
  - 0
158
160
  version: "0"