vimwiki_markdown 0.2.4 → 0.2.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
  SHA1:
3
- metadata.gz: 5514b5493582d943801eb948380bc711d4b0f9de
4
- data.tar.gz: 2e5ad2aa5650926176153d4b802a61de731a07e7
3
+ metadata.gz: aced79dd558ad5f073dc4e57fb727e95f7341dc5
4
+ data.tar.gz: 49fc383b31e5def606eb2d08de02fe56549f1861
5
5
  SHA512:
6
- metadata.gz: 861f56b1a07d2d2a2b87a63d0d4a63931f5506d5134f81821d3f8813e4190f92f80e666522b843bcf5d503caedfd82694bdb085b232c8ce245c674c80f6b32df
7
- data.tar.gz: d59361faa0a8a087484de556253a2d9deaef53545463800de7dca4ced42a95335cf31edb337ec67d412745a9ef6e8c8415fe0ebde9c575e73ddfd53b43e55b74
6
+ metadata.gz: b01693f8c5149f6c712335a64bd27bad5ac843705a6ac8b5a81b077326e250acf5974ce352c624a2f8be266d96732738cfe401d3140ae1211e131dd2fce94ec2
7
+ data.tar.gz: 520c570ee5a4748672f9506d8b5e53d6ebc37554e681cd9c9eae50409f771d4b2734a0759d864ee9716b42da809a5271818af21906c768f17e0fd4bcf5334897
@@ -0,0 +1,3 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.3.1
data/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  # VimwikiMarkdown
2
- [![Code Climate](https://codeclimate.com/github/patrickdavey/vimwiki_markdown/badges/gpa.svg)](https://codeclimate.com/github/patrickdavey/vimwiki_markdown)
2
+ [![Code Climate](https://codeclimate.com/github/patrickdavey/vimwiki_markdown/badges/gpa.svg)](https://codeclimate.com/github/patrickdavey/vimwiki_markdown) [![Build Status](https://travis-ci.org/patrickdavey/vimwiki_markdown.svg?branch=master)](https://travis-ci.org/patrickdavey/vimwiki_markdown)
3
3
 
4
4
  This gem allows vimwiki pages written in (github enhanced) markdown
5
5
  to be converted to HTML.
@@ -53,7 +53,7 @@ module VimwikiMarkdown
53
53
  @template_default = arguments[TEMPLATE_DEFAULT]
54
54
  @template_ext = arguments[TEMPLATE_EXT]
55
55
  @root_path = arguments[ROOT_PATH]
56
- @root_path = "." if @root_path == "-"
56
+ @root_path = "./" if @root_path == "-"
57
57
  raise "Must be markdown" unless syntax == 'markdown'
58
58
  end
59
59
 
@@ -1,3 +1,3 @@
1
1
  module VimwikiMarkdown
2
- VERSION = "0.2.4"
2
+ VERSION = "0.2.5"
3
3
  end
@@ -123,7 +123,7 @@ def wiki_template
123
123
  <link type="text/css" rel="stylesheet" href="./styles/shThemeDefault.css" />
124
124
 
125
125
  <!-- for testing %ROOT_PATH% substitutions -->
126
- <link type="text/css" rel="stylesheet" href="%root_path%/rootStyle.css" />
126
+ <link type="text/css" rel="stylesheet" href="%root_path%rootStyle.css" />
127
127
 
128
128
  <script type="text/javascript" src="./scripts/shCore.js"></script>
129
129
  <script type="text/javascript" src="./scripts/shBrushRuby.js"></script>
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vimwiki_markdown
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.4
4
+ version: 0.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Patrick Davey
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-01-03 00:00:00.000000000 Z
11
+ date: 2017-01-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -203,6 +203,7 @@ extra_rdoc_files: []
203
203
  files:
204
204
  - ".gitignore"
205
205
  - ".rspec"
206
+ - ".travis.yml"
206
207
  - Gemfile
207
208
  - Guardfile
208
209
  - LICENSE.txt
@@ -244,7 +245,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
244
245
  version: '0'
245
246
  requirements: []
246
247
  rubyforge_project:
247
- rubygems_version: 2.5.1
248
+ rubygems_version: 2.4.8
248
249
  signing_key:
249
250
  specification_version: 4
250
251
  summary: Converts a github flavoured markdown vimwiki file into html.
@@ -254,4 +255,3 @@ test_files:
254
255
  - spec/lib/vimwiki_markdown/vimwiki_link_spec.rb
255
256
  - spec/lib/vimwiki_markdown/wiki_body_spec.rb
256
257
  - spec/spec_helper.rb
257
- has_rdoc: