tp 0.6.2pre1 → 0.6.2pre2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/WELCOME +26 -0
- data/lib/tp/version.rb +1 -1
- data/tp.gemspec +1 -9
- metadata +25 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: af59d30cb8b75ad840302119215fa08f39d9b757
|
4
|
+
data.tar.gz: a0169b6fa30ce9a30f9746211a26aea13348e9c4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f486849605ece813e659c6e8f9525f9d8f3a683430610c2ce6daeafea8252af0dfb195b3eab43d331d0d318adf38a6f467ab51c73e1688a79f1af626822c220b
|
7
|
+
data.tar.gz: 476e60af54b4710368dc4b1c0ad60b902286919d76b856fed309b5503ed674d26d12f93c13098281505060924fd0d4f2459f23e433549b51f2ff59b13847adc9
|
data/WELCOME
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
|
2
|
+
Thanks for installing tp! Please don't hesitate to report bugs and feature
|
3
|
+
requests at:
|
4
|
+
|
5
|
+
https://github.com/justincampbell/tp/issues
|
6
|
+
|
7
|
+
To get started, create a Markdown file with your slides. Each # is a new
|
8
|
+
slide:
|
9
|
+
|
10
|
+
# Slide Title
|
11
|
+
|
12
|
+
Some Text
|
13
|
+
|
14
|
+
# Another Slide
|
15
|
+
|
16
|
+
* Some
|
17
|
+
* Bullets
|
18
|
+
|
19
|
+
For more examples, take a look at:
|
20
|
+
|
21
|
+
https://raw.github.com/justincampbell/tp/master/slides.md
|
22
|
+
|
23
|
+
You can now play a slideshow with:
|
24
|
+
|
25
|
+
tp slides.md
|
26
|
+
|
data/lib/tp/version.rb
CHANGED
data/tp.gemspec
CHANGED
@@ -14,15 +14,7 @@ Gem::Specification.new do |gem|
|
|
14
14
|
gem.description = "Presents Markdown slides in your terminal"
|
15
15
|
gem.homepage = "https://github.com/justincampbell/tp"
|
16
16
|
|
17
|
-
gem.post_install_message =
|
18
|
-
Thanks for installing tp! Please don't hesitate to report bugs and feature
|
19
|
-
requests at https://github.com/justincampbell/tp
|
20
|
-
|
21
|
-
You can now play a slideshow with:
|
22
|
-
|
23
|
-
tp slides.md
|
24
|
-
|
25
|
-
MESSAGE
|
17
|
+
gem.post_install_message = File.read('WELCOME')
|
26
18
|
|
27
19
|
gem.files = `git ls-files`.split $/
|
28
20
|
gem.executables = gem.files.grep(%r{^bin/}).map { |file| File.basename file }
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tp
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.2pre2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Justin Campbell
|
@@ -167,6 +167,7 @@ files:
|
|
167
167
|
- LICENSE.txt
|
168
168
|
- Rakefile
|
169
169
|
- Readme.md
|
170
|
+
- WELCOME
|
170
171
|
- bin/tp
|
171
172
|
- lib/coderay/prawn_encoder.rb
|
172
173
|
- lib/keyboard.rb
|
@@ -208,12 +209,31 @@ homepage: https://github.com/justincampbell/tp
|
|
208
209
|
licenses: []
|
209
210
|
metadata: {}
|
210
211
|
post_install_message: |2+
|
211
|
-
Thanks for installing tp! Please don't hesitate to report bugs and feature
|
212
|
-
requests at https://github.com/justincampbell/tp
|
213
212
|
|
214
|
-
|
213
|
+
Thanks for installing tp! Please don't hesitate to report bugs and feature
|
214
|
+
requests at:
|
215
215
|
|
216
|
-
|
216
|
+
https://github.com/justincampbell/tp/issues
|
217
|
+
|
218
|
+
To get started, create a Markdown file with your slides. Each # is a new
|
219
|
+
slide:
|
220
|
+
|
221
|
+
# Slide Title
|
222
|
+
|
223
|
+
Some Text
|
224
|
+
|
225
|
+
# Another Slide
|
226
|
+
|
227
|
+
* Some
|
228
|
+
* Bullets
|
229
|
+
|
230
|
+
For more examples, take a look at:
|
231
|
+
|
232
|
+
https://raw.github.com/justincampbell/tp/master/slides.md
|
233
|
+
|
234
|
+
You can now play a slideshow with:
|
235
|
+
|
236
|
+
tp slides.md
|
217
237
|
|
218
238
|
rdoc_options: []
|
219
239
|
require_paths:
|