slimdown 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 99a65e627b32af057b6afd23ba46f179a83f13c3
4
- data.tar.gz: 1bca068db40e686d978591b1baf0c6d0f691dccf
3
+ metadata.gz: 821906b4f1541b173b0f19354d5bdebd2eb50b1e
4
+ data.tar.gz: f0d15a6d6242c5b6c6d25a1eb544fdba74cfa308
5
5
  SHA512:
6
- metadata.gz: da694a3a8b51df6fd091874824a0ed535f190ece601f1d30a92fff905a35544e2a440bd00e72c0c9a1074020162dc26eee5017903ae62b9b620821d5799c2f79
7
- data.tar.gz: 96e7084ae9b8c43972b94edfa185f2d9ec2e1a77400574fafa6711118978f1324cb4fd3adc72a188e4b49092c0b107c58e2d5926c35f59140bc5b4e0d945f9b0
6
+ metadata.gz: f1c986b659811c0da2f8505d9de29154da51d2d684d6bab002ece6a4d7fa58ff8424459137d5ae4d0824724a60a04c5076b11c46dc118e0e2fcee78f129993f8
7
+ data.tar.gz: 107ce9126d1a2fd9817af239dc7c803ecf05c9df3203ea6c7ba469743a1d7003fe244cdfd5ba98eb9bfa024f27e9535013c3949a4bc868529e51ab10ecc20ddd
data/README.md CHANGED
@@ -64,6 +64,33 @@ to your pages.
64
64
  c.location = Rails.root.join('lib/pages')
65
65
  end
66
66
 
67
+ ## Testing
68
+
69
+ Testing using a controller spec is not possible because you are testing for an
70
+ arbitrary url. You can do a feature test with Capybara or friends. However,
71
+ given that you are just returning content, you can use a request spec. For
72
+ example, you have an about.md in your remote repo or lib/pages then in your
73
+ spec/requests/slimdown_request_spec.rb. Additionally, you can override the page
74
+ path for the test, allowing you to use a fixture directory.
75
+
76
+ ```ruby
77
+ RSpec.describe "Static Pages", type: :request do
78
+ before :each do
79
+ Slimdown.config do |c|
80
+ c.location = Rails.root.join '/spec/fixtures/test_pages'
81
+ end
82
+ end
83
+
84
+ describe "GET /" do
85
+ it "#show" do
86
+ get "/about"
87
+ expect(response).to render_template(:show)
88
+ expect(response.status).to be(200)
89
+ end
90
+ end
91
+ end
92
+ ```
93
+
67
94
 
68
95
  ## General notes
69
96
 
@@ -21,7 +21,10 @@ module Slimdown
21
21
  #
22
22
  # @return [Hash] document headers
23
23
  def headers
24
- YAML.load @header_text
24
+ head = {}
25
+ head = YAML.load @header_text unless @header_text == ''
26
+
27
+ head
25
28
  end
26
29
 
27
30
  # The parsed markdown document body.
@@ -48,7 +51,7 @@ module Slimdown
48
51
  part = :body
49
52
  elsif part == :header
50
53
  @header_text += line
51
- elsif part == :body
54
+ elsif part == :body || part == nil
52
55
  @body_text += line
53
56
  end
54
57
  end
@@ -1,4 +1,4 @@
1
1
  module Slimdown
2
2
  # The slimdown version
3
- VERSION = '1.0.0'
3
+ VERSION = '1.0.1'
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: slimdown
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - William Johnston
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2015-06-23 00:00:00.000000000 Z
11
+ date: 2015-07-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: kramdown
@@ -154,7 +154,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
154
154
  version: '0'
155
155
  requirements: []
156
156
  rubyforge_project:
157
- rubygems_version: 2.4.5
157
+ rubygems_version: 2.4.8
158
158
  signing_key:
159
159
  specification_version: 4
160
160
  summary: A system for using static Markdown for pages.