livetext 0.8.26 → 0.8.27
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/dsl/.calibre.rb.swp +0 -0
- data/dsl/liveblog.rb +3 -3
- data/lib/livetext.rb +1 -2
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 46573c7d57a359d435943e29a5b8b47e32a8ee23
|
|
4
|
+
data.tar.gz: edf1d66f3ce2295b19086adb90be6ea16421921f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0fa0c503251d466fa53ef080ad27b7ec0fe76a33e3ce3a43d1723227ba9fe54fb601df4f29bc33594d9549ba34b5c4b56f501b2ec739ffac837b90e253ce7b33
|
|
7
|
+
data.tar.gz: 4a1f3b91bf747699e72ba7792f8a055eb68bd0423ea5c976c8dd11d1f5256bfc64d4a895387572937b53c5624a86ebe61f6e5afc6fef045e0295eb1723065a31
|
data/dsl/.calibre.rb.swp
ADDED
|
Binary file
|
data/dsl/liveblog.rb
CHANGED
|
@@ -40,18 +40,18 @@ def find_asset(asset)
|
|
|
40
40
|
vdir = @config.viewdir(view)
|
|
41
41
|
post_dir = "#{vdir}#{@meta.slug}/assets/"
|
|
42
42
|
path = post_dir + asset
|
|
43
|
-
STDERR.puts "
|
|
43
|
+
STDERR.puts " Seeking #{path}"
|
|
44
44
|
return path if File.exist?(path)
|
|
45
45
|
end
|
|
46
46
|
views.each do |view|
|
|
47
47
|
dir = @config.viewdir(view) + "/assets/"
|
|
48
48
|
path = dir + asset
|
|
49
|
-
STDERR.puts "
|
|
49
|
+
STDERR.puts " Seeking #{path}"
|
|
50
50
|
return path if File.exist?(path)
|
|
51
51
|
end
|
|
52
52
|
top = @root + "/assets/"
|
|
53
53
|
path = top + asset
|
|
54
|
-
STDERR.puts "
|
|
54
|
+
STDERR.puts " Seeking #{path}"
|
|
55
55
|
return path if File.exist?(path)
|
|
56
56
|
|
|
57
57
|
return nil
|
data/lib/livetext.rb
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
class Livetext
|
|
2
|
-
VERSION = "0.8.
|
|
2
|
+
VERSION = "0.8.27"
|
|
3
3
|
end
|
|
4
4
|
|
|
5
5
|
$Livetext = Livetext
|
|
@@ -56,7 +56,6 @@ class Livetext
|
|
|
56
56
|
def _error!(err, abort=true, trace=false)
|
|
57
57
|
where = @sources.last || @save_location
|
|
58
58
|
STDERR.puts "Error: #{err} (at #{where[1]} line #{where[2]})"
|
|
59
|
-
STDERR.puts err.backtrace
|
|
60
59
|
STDERR.puts err.backtrace if @backtrace && err.respond_to?(:backtrace)
|
|
61
60
|
exit if abort
|
|
62
61
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: livetext
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.8.
|
|
4
|
+
version: 0.8.27
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Hal Fulton
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2018-07-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: A smart text processor extensible in Ruby
|
|
14
14
|
email: rubyhacker@gmail.com
|
|
@@ -20,6 +20,7 @@ files:
|
|
|
20
20
|
- "./README.lt3"
|
|
21
21
|
- "./README.md"
|
|
22
22
|
- bin/livetext
|
|
23
|
+
- dsl/.calibre.rb.swp
|
|
23
24
|
- dsl/bookish.rb
|
|
24
25
|
- dsl/calibre.rb
|
|
25
26
|
- dsl/liveblog.rb
|
|
@@ -148,9 +149,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
148
149
|
version: '0'
|
|
149
150
|
requirements: []
|
|
150
151
|
rubyforge_project:
|
|
151
|
-
rubygems_version: 2.
|
|
152
|
+
rubygems_version: 2.2.2
|
|
152
153
|
signing_key:
|
|
153
154
|
specification_version: 4
|
|
154
155
|
summary: A smart processor for text
|
|
155
156
|
test_files: []
|
|
156
|
-
has_rdoc:
|