howl 0.5.2 → 0.5.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/VERSION +1 -1
  2. data/howl.gemspec +1 -1
  3. data/lib/howl/template.rb +7 -3
  4. metadata +2 -2
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.5.2
1
+ 0.5.3
data/howl.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{howl}
8
- s.version = "0.5.2"
8
+ s.version = "0.5.3"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Clinton R. Nixon"]
data/lib/howl/template.rb CHANGED
@@ -8,7 +8,7 @@ module Howl
8
8
  viewables.push(*viewables)
9
9
  end
10
10
 
11
- attr_accessor :view, :content, :site, :path, :relative_path, :extension
11
+ attr_accessor :view, :view_data, :content, :site, :path, :relative_path, :extension
12
12
 
13
13
  def initialize(path, site)
14
14
  @site = site
@@ -63,7 +63,7 @@ module Howl
63
63
  private
64
64
 
65
65
  def find_template(template_name)
66
- @site.templates[template_name] ||
66
+ @site.templates[template_name] ||
67
67
  @site.templates[template_name + extension] ||
68
68
  @site.templates[template_name + converter.extension]
69
69
  end
@@ -74,10 +74,14 @@ module Howl
74
74
 
75
75
  def load_file
76
76
  content = @path.read
77
- view, _, content = content.rpartition("\n\n")
77
+ view, content = content.split("\n\n", 2)
78
+
79
+ view ||= ""
80
+ content ||= ""
78
81
 
79
82
  if test_for_yaml(view)
80
83
  @content = content
84
+ @view_data = view
81
85
  view = YAML.load(view)
82
86
  else
83
87
  @content = "#{view}\n\n#{content}".strip
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 5
8
- - 2
9
- version: 0.5.2
8
+ - 3
9
+ version: 0.5.3
10
10
  platform: ruby
11
11
  authors:
12
12
  - Clinton R. Nixon