shellplay 0.0.13 → 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 +4 -4
- data/.coveralls.yml +1 -0
- data/.travis.yml +6 -0
- data/CHANGELOG.md +6 -2
- data/README.md +8 -0
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e02d4dbe489e3e9de59a3a09253b8e39a594a36b
|
4
|
+
data.tar.gz: c23c4d33901443037398e9282b9c9b9b88d466af
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 314022691921f9f2d835cd2f06c75d255319d71812d3c9db875cd80978c79397507daee0df8c2bd0313f85a210d4c14460a5f5a49e9f942d792a745562d8bd69
|
7
|
+
data.tar.gz: 5810ed0efd1511414facbbd44ed7a435c9fd6aacbae4866cd08a972b89d5e2bdab06a2f9d3da0dfe1df50ccff2624e5beae4ccda769f05045f287d287129a11b
|
data/.coveralls.yml
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
repo_token: y4Ilhpfq4C9uDNSo8R57qvglprtSdFUPl
|
data/.travis.yml
ADDED
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,10 @@
|
|
1
1
|
Shellplay Changelog
|
2
2
|
=========================
|
3
3
|
|
4
|
+
v0.1.0 - 2014-08-17
|
5
|
+
----------------------
|
6
|
+
- first version seems ok, it's running and has been used on the field
|
7
|
+
|
4
8
|
v0.0.13 - 2014-08-15
|
5
9
|
-----------------
|
6
10
|
- add a `x` command in recorder to cancel a record
|
@@ -11,7 +15,7 @@ v0.0.13 - 2014-08-15
|
|
11
15
|
v0.0.12 - 2014-08-15
|
12
16
|
-----------------
|
13
17
|
- fix recorder to take account of `cd` properly
|
14
|
-
- fix recorder
|
18
|
+
- fix recorder command execution
|
15
19
|
|
16
20
|
v0.0.11 - 2014-08-14
|
17
21
|
------------------
|
@@ -32,7 +36,7 @@ v0.0.8 - 2014-08-13
|
|
32
36
|
|
33
37
|
v0.0.7 - 2014-08-13
|
34
38
|
-------------------
|
35
|
-
- fix exec of
|
39
|
+
- fix exec of commands in shellplay
|
36
40
|
- implement a `p` command in play mode for switching to previous screen
|
37
41
|
- added management of bash escape char for colorization in output texts
|
38
42
|
|
data/README.md
CHANGED
@@ -1,6 +1,14 @@
|
|
1
1
|
Shellplay
|
2
2
|
==================
|
3
3
|
|
4
|
+
[](http://rubygems.org/gems/shellplay)
|
5
|
+
[](https://travis-ci.org/mose/shellplay)
|
6
|
+
[](https://coveralls.io/r/mose/shellplay?branch=master)
|
7
|
+
[](https://gemnasium.com/mose/shellplay)
|
8
|
+
[](https://codeclimate.com/github/mose/shellplay)
|
9
|
+
|
10
|
+
----
|
11
|
+
|
4
12
|
This is a CLI tool for recording and presenting step by step operations from the console. It is targeted at presentations that would simulate live coding, without the random murphy factor of it.
|
5
13
|
|
6
14
|
It can record a session and playback from it, so if internet fails in your conference room you are safe.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: shellplay
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 0.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- mose
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-08-
|
11
|
+
date: 2014-08-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: paint
|
@@ -119,8 +119,10 @@ executables:
|
|
119
119
|
extensions: []
|
120
120
|
extra_rdoc_files: []
|
121
121
|
files:
|
122
|
+
- ".coveralls.yml"
|
122
123
|
- ".gitignore"
|
123
124
|
- ".ruby-version"
|
125
|
+
- ".travis.yml"
|
124
126
|
- CHANGELOG.md
|
125
127
|
- Gemfile
|
126
128
|
- LICENSE.txt
|