livetext 0.5.2 → 0.5.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/livetext +20 -0
- data/lib/bookish.rb +212 -0
- data/lib/calibre.rb +24 -0
- data/lib/liveblog.rb +195 -0
- data/lib/livemagick.rb +131 -0
- data/lib/livetext.rb +605 -0
- data/lib/markdown.rb +30 -0
- data/lib/pyggish.rb +194 -0
- data/lib/tutorial.rb +89 -0
- data/livetext-0.5.2.gem +0 -0
- data/livetext.gemspec +99 -4
- data/test/cleanup +1 -0
- data/test/newtest +10 -0
- data/test/rawtext.inc +4 -0
- data/test/simple_mixin.rb +3 -0
- data/test/simplefile.inc +2 -0
- data/test/test.rb +77 -0
- data/test/testfiles/basic_formatting/expected-error.txt +0 -0
- data/test/testfiles/basic_formatting/expected-output.txt +10 -0
- data/test/testfiles/basic_formatting/source.ltx +8 -0
- data/test/testfiles/block_comment/expected-error.txt +0 -0
- data/test/testfiles/block_comment/expected-output.txt +5 -0
- data/test/testfiles/block_comment/source.ltx +19 -0
- data/test/testfiles/comments_ignored_1/expected-error.txt +0 -0
- data/test/testfiles/comments_ignored_1/expected-output.txt +4 -0
- data/test/testfiles/comments_ignored_1/source.ltx +7 -0
- data/test/testfiles/copy_is_raw/expected-error.txt +0 -0
- data/test/testfiles/copy_is_raw/expected-output.txt +7 -0
- data/test/testfiles/copy_is_raw/source.ltx +4 -0
- data/test/testfiles/def_method/expected-error.txt +2 -0
- data/test/testfiles/def_method/expected-output.txt +5 -0
- data/test/testfiles/def_method/source.ltx +10 -0
- data/test/testfiles/example_alpha/expected-error.txt +0 -0
- data/test/testfiles/example_alpha/expected-output.txt +23 -0
- data/test/testfiles/example_alpha/source.ltx +17 -0
- data/test/testfiles/example_alpha2/expected-error.txt +0 -0
- data/test/testfiles/example_alpha2/expected-output.txt +12 -0
- data/test/testfiles/example_alpha2/source.ltx +24 -0
- data/test/testfiles/fixit +6 -0
- data/test/testfiles/functions/expected-error.txt +0 -0
- data/test/testfiles/functions/expected-output.txt +8 -0
- data/test/testfiles/functions/source.ltx +11 -0
- data/test/testfiles/hello_world/expected-error.txt +0 -0
- data/test/testfiles/hello_world/expected-output.txt +2 -0
- data/test/testfiles/hello_world/source.ltx +2 -0
- data/test/testfiles/more_complex_vars/expected-error.txt +0 -0
- data/test/testfiles/more_complex_vars/expected-output.txt +4 -0
- data/test/testfiles/more_complex_vars/source.ltx +5 -0
- data/test/testfiles/raw_text_block/expected-error.txt +0 -0
- data/test/testfiles/raw_text_block/expected-output.txt +14 -0
- data/test/testfiles/raw_text_block/source.ltx +16 -0
- data/test/testfiles/sigil_can_change/expected-error.txt +0 -0
- data/test/testfiles/sigil_can_change/expected-output.txt +6 -0
- data/test/testfiles/sigil_can_change/source.ltx +11 -0
- data/test/testfiles/simple_copy/expected-error.txt +0 -0
- data/test/testfiles/simple_copy/expected-output.txt +7 -0
- data/test/testfiles/simple_copy/source.ltx +6 -0
- data/test/testfiles/simple_include/expected-error.txt +0 -0
- data/test/testfiles/simple_include/expected-output.txt +7 -0
- data/test/testfiles/simple_include/source.ltx +6 -0
- data/test/testfiles/simple_mixin/expected-error.txt +0 -0
- data/test/testfiles/simple_mixin/expected-output.txt +5 -0
- data/test/testfiles/simple_mixin/source.ltx +6 -0
- data/test/testfiles/simple_vars/expected-error.txt +0 -0
- data/test/testfiles/simple_vars/expected-output.txt +6 -0
- data/test/testfiles/simple_vars/source.ltx +7 -0
- data/test/testfiles/single_raw_line/expected-error.txt +0 -0
- data/test/testfiles/single_raw_line/expected-output.txt +10 -0
- data/test/testfiles/single_raw_line/source.ltx +8 -0
- metadata +76 -9
- data/dlt +0 -1
File without changes
|
File without changes
|
File without changes
|
metadata
CHANGED
@@ -1,27 +1,94 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: livetext
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Hal Fulton
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-02-
|
11
|
+
date: 2017-02-05 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
|
-
description: A smart processor
|
13
|
+
description: A smart text processor extensible in Ruby
|
14
14
|
email: rubyhacker@gmail.com
|
15
15
|
executables: []
|
16
16
|
extensions: []
|
17
17
|
extra_rdoc_files: []
|
18
18
|
files:
|
19
|
-
- README.html
|
20
|
-
- README.ltx
|
21
|
-
- README.md
|
22
|
-
-
|
23
|
-
-
|
24
|
-
-
|
19
|
+
- "./README.html"
|
20
|
+
- "./README.ltx"
|
21
|
+
- "./README.md"
|
22
|
+
- "./bin/livetext"
|
23
|
+
- "./lib/bookish.rb"
|
24
|
+
- "./lib/calibre.rb"
|
25
|
+
- "./lib/liveblog.rb"
|
26
|
+
- "./lib/livemagick.rb"
|
27
|
+
- "./lib/livetext.rb"
|
28
|
+
- "./lib/markdown.rb"
|
29
|
+
- "./lib/pyggish.rb"
|
30
|
+
- "./lib/tutorial.rb"
|
31
|
+
- "./livetext-0.5.2.gem"
|
32
|
+
- "./livetext.gemspec"
|
33
|
+
- "./notes.txt"
|
34
|
+
- "./test/cleanup"
|
35
|
+
- "./test/newtest"
|
36
|
+
- "./test/rawtext.inc"
|
37
|
+
- "./test/simple_mixin.rb"
|
38
|
+
- "./test/simplefile.inc"
|
39
|
+
- "./test/test.rb"
|
40
|
+
- "./test/testfiles/basic_formatting/expected-error.txt"
|
41
|
+
- "./test/testfiles/basic_formatting/expected-output.txt"
|
42
|
+
- "./test/testfiles/basic_formatting/source.ltx"
|
43
|
+
- "./test/testfiles/block_comment/expected-error.txt"
|
44
|
+
- "./test/testfiles/block_comment/expected-output.txt"
|
45
|
+
- "./test/testfiles/block_comment/source.ltx"
|
46
|
+
- "./test/testfiles/comments_ignored_1/expected-error.txt"
|
47
|
+
- "./test/testfiles/comments_ignored_1/expected-output.txt"
|
48
|
+
- "./test/testfiles/comments_ignored_1/source.ltx"
|
49
|
+
- "./test/testfiles/copy_is_raw/expected-error.txt"
|
50
|
+
- "./test/testfiles/copy_is_raw/expected-output.txt"
|
51
|
+
- "./test/testfiles/copy_is_raw/source.ltx"
|
52
|
+
- "./test/testfiles/def_method/expected-error.txt"
|
53
|
+
- "./test/testfiles/def_method/expected-output.txt"
|
54
|
+
- "./test/testfiles/def_method/source.ltx"
|
55
|
+
- "./test/testfiles/example_alpha/expected-error.txt"
|
56
|
+
- "./test/testfiles/example_alpha/expected-output.txt"
|
57
|
+
- "./test/testfiles/example_alpha/source.ltx"
|
58
|
+
- "./test/testfiles/example_alpha2/expected-error.txt"
|
59
|
+
- "./test/testfiles/example_alpha2/expected-output.txt"
|
60
|
+
- "./test/testfiles/example_alpha2/source.ltx"
|
61
|
+
- "./test/testfiles/fixit"
|
62
|
+
- "./test/testfiles/functions/expected-error.txt"
|
63
|
+
- "./test/testfiles/functions/expected-output.txt"
|
64
|
+
- "./test/testfiles/functions/source.ltx"
|
65
|
+
- "./test/testfiles/hello_world/expected-error.txt"
|
66
|
+
- "./test/testfiles/hello_world/expected-output.txt"
|
67
|
+
- "./test/testfiles/hello_world/source.ltx"
|
68
|
+
- "./test/testfiles/more_complex_vars/expected-error.txt"
|
69
|
+
- "./test/testfiles/more_complex_vars/expected-output.txt"
|
70
|
+
- "./test/testfiles/more_complex_vars/source.ltx"
|
71
|
+
- "./test/testfiles/raw_text_block/expected-error.txt"
|
72
|
+
- "./test/testfiles/raw_text_block/expected-output.txt"
|
73
|
+
- "./test/testfiles/raw_text_block/source.ltx"
|
74
|
+
- "./test/testfiles/sigil_can_change/expected-error.txt"
|
75
|
+
- "./test/testfiles/sigil_can_change/expected-output.txt"
|
76
|
+
- "./test/testfiles/sigil_can_change/source.ltx"
|
77
|
+
- "./test/testfiles/simple_copy/expected-error.txt"
|
78
|
+
- "./test/testfiles/simple_copy/expected-output.txt"
|
79
|
+
- "./test/testfiles/simple_copy/source.ltx"
|
80
|
+
- "./test/testfiles/simple_include/expected-error.txt"
|
81
|
+
- "./test/testfiles/simple_include/expected-output.txt"
|
82
|
+
- "./test/testfiles/simple_include/source.ltx"
|
83
|
+
- "./test/testfiles/simple_mixin/expected-error.txt"
|
84
|
+
- "./test/testfiles/simple_mixin/expected-output.txt"
|
85
|
+
- "./test/testfiles/simple_mixin/source.ltx"
|
86
|
+
- "./test/testfiles/simple_vars/expected-error.txt"
|
87
|
+
- "./test/testfiles/simple_vars/expected-output.txt"
|
88
|
+
- "./test/testfiles/simple_vars/source.ltx"
|
89
|
+
- "./test/testfiles/single_raw_line/expected-error.txt"
|
90
|
+
- "./test/testfiles/single_raw_line/expected-output.txt"
|
91
|
+
- "./test/testfiles/single_raw_line/source.ltx"
|
25
92
|
homepage: https://github.com/Hal9000/livetext
|
26
93
|
licenses:
|
27
94
|
- Ruby's
|