markdown_record 0.1.4 → 0.1.5

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
  SHA256:
3
- metadata.gz: 23187950035ecd3722dbca9a0503d3cdfd3c67e20d18748f7ae0bc6b6d5558ba
4
- data.tar.gz: f2f5c597ce31540b3160b33fe58df4d736553d28c1905a09993fbb754fbde397
3
+ metadata.gz: 269413176d8f175aac4611a05b3e877a8f6e35e8d2578693a61b8137ba3e468c
4
+ data.tar.gz: 9bd2e4bbcfd47f25d95bd89cee4fa55ef702ef12c1c02b3ffb3def240210f034
5
5
  SHA512:
6
- metadata.gz: 165e1a938e4f8788a420147682b1b2782176c32efeb792497bbad5b7fbd89281b69d73d52fd48fbb09d9ef647573583ff350d3667b5ed290f56b5b5163a9100b
7
- data.tar.gz: d04f6e42b4ced38d90cfc1e22d6c64d6e2cbad93063987e088de279f390343e895be57009a7bae0cc1a528b1de86e5df2c5daadb3cc93ce73415dd3fa9003cfa
6
+ metadata.gz: cfa28a6d993347abcc68d6a0d28163ea238c67516bb82b0293e4bb1779499db6ac027b508c1c56c9edd88136a6310ee9a3d265226bee2e966e629e8f8e6389c4
7
+ data.tar.gz: 1ffc583808ddd0886ec481997b52f36fabfeb457bb3c7447c58e3dabd40558111141ec3372634ae5da8a334ce2caec650b2ef7319dfc4334538215dc6c247d19
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Welcome to MarkdownRecord. This project is still in BETA stage, and as such is subject to rapid change. There are many things that still need improving, so bear that in mind. That said, please feel free to test this project out and provide feedback in the form of GitHub issues! Thank you.
4
4
 
5
- You can find the complete usage guide [here](https://markdown-record-docs.herokuapp.com/mdr/content/home).
5
+ You can find the complete usage guide [here](https://markdown-record-docs.herokuapp.com/).
6
6
 
7
7
  MarkdownRecord is a Rails engine that allows you to write markdown with embedded json like this:
8
8
 
@@ -214,7 +214,7 @@ rendered: /markdown_record/rendered/content/custom_models_and_associations.html
214
214
 
215
215
  Congratulations! You have installed MarkdownRecord. If you are not viewing this from the host application already, go ahead and start your Rails server with `rails s` and navigate to http://localhost:3000/mdr/content/home to continue following this guide.
216
216
 
217
- Alternatively, you can find the complete usage guide [here](https://markdown-record-docs.herokuapp.com/mdr/content/home).
217
+ Alternatively, you can find the complete usage guide [here](https://markdown-record-docs.herokuapp.com/).
218
218
 
219
219
  ## Contributing
220
220
 
@@ -3,7 +3,7 @@ module MarkdownRecord
3
3
  class DateSorter < MarkdownRecord::FileSorting::Base
4
4
  def initialize(sort_regex = /^(\d\d\d\d?_\d\d?_\d\d?)/, date_pattern = "%Y_%m_%d")
5
5
  super(sort_regex)
6
- @date_pattern = options[:date_pattern] || "%Y_%m_%d"
6
+ @date_pattern = date_pattern || "%Y_%m_%d"
7
7
  end
8
8
 
9
9
  def to_sort_value(value)
@@ -1,3 +1,3 @@
1
1
  module MarkdownRecord
2
- VERSION = "0.1.4"
2
+ VERSION = "0.1.5"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: markdown_record
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bryant Morrill