smallvictories 0.0.7 → 0.0.8
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/lib/smallvictories/compiler.rb +4 -4
- data/lib/smallvictories/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6a7e25aa7727dc449bd6efe5156afcaf0576559d
|
|
4
|
+
data.tar.gz: 441ca08a9ed5bda3a971a3fcd68512e0b1fe0764
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fcce25d68ac1b1a2790e2605435068b539594926721673793731216a4a1b7263ed36ef39a153869c3b8bb603d8a33f45a29a39308b3f0d26c49b8fb2dab7e1ef
|
|
7
|
+
data.tar.gz: 0baa3640fd5995a888937819c8c6c5e0621508526c096719c946518b6bf3d234a010ec02385ae5e439f0e8848d21ee75eca4d3730ac0ddd1ec59a96e0088ba58
|
|
@@ -31,7 +31,7 @@ module SmallVictories
|
|
|
31
31
|
layout = Liquid::Template.parse(layout_file)
|
|
32
32
|
end
|
|
33
33
|
rescue => e
|
|
34
|
-
SmallVictories.logger.error "Liquid Error\n#{e}"
|
|
34
|
+
SmallVictories.logger.error "Liquid Error\n#{e}\n#{e.backtrace.first}"
|
|
35
35
|
return
|
|
36
36
|
end
|
|
37
37
|
|
|
@@ -55,7 +55,7 @@ module SmallVictories
|
|
|
55
55
|
File.open(File.join(config.full_destination_path, output_file_name), 'w') { |file| file.write(html) }
|
|
56
56
|
SmallVictories.logger.info "compiled #{config.destination}/#{output_file_name}"
|
|
57
57
|
rescue => e
|
|
58
|
-
SmallVictories.logger.error "#{path}\n#{e}"
|
|
58
|
+
SmallVictories.logger.error "#{path}\n#{e}\n#{e.backtrace.first}"
|
|
59
59
|
end
|
|
60
60
|
end
|
|
61
61
|
end
|
|
@@ -77,7 +77,7 @@ module SmallVictories
|
|
|
77
77
|
SmallVictories.logger.info "compiled #{File.join(config.destination, bundle.last)}"
|
|
78
78
|
end
|
|
79
79
|
rescue => e
|
|
80
|
-
SmallVictories.logger.error "#{bundle}\n#{e}"
|
|
80
|
+
SmallVictories.logger.error "#{bundle.first}\n#{e}\n#{e.backtrace.first}"
|
|
81
81
|
end
|
|
82
82
|
end
|
|
83
83
|
end
|
|
@@ -98,7 +98,7 @@ module SmallVictories
|
|
|
98
98
|
SmallVictories.logger.info "prefixed #{config.destination}/#{config.stylesheets.last}"
|
|
99
99
|
end
|
|
100
100
|
rescue => e
|
|
101
|
-
SmallVictories.logger.error "#{path}\n#{e}"
|
|
101
|
+
SmallVictories.logger.error "#{path}\n#{e}\n#{e.backtrace.first}"
|
|
102
102
|
end
|
|
103
103
|
end
|
|
104
104
|
|