gfm_live_preview 0.9.2 → 0.9.4

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: 13eecc48523a67417d51daebfd7ca86a59fc106c
4
- data.tar.gz: 44ff7433fcb8c1eec698260a290dce7708f716a0
3
+ metadata.gz: aa51acfa553985a4b92fd9ffc1b3978354ef3ce6
4
+ data.tar.gz: 3f25dcbb69dd97dc886c55cf660af7836298e598
5
5
  SHA512:
6
- metadata.gz: 2c8f295d98a81e6b4232d99f50576e9bc2b370c0139da305d1a4e3597bf40702818177d0fff421d8756ce5d1d4b08ab3e5a4c2088c5f02e5e078be82522bbbfd
7
- data.tar.gz: cd0ad570607a1ceef801d6a6d7baf05de3455f3aa1bbe1a1bf6df33b803a013f26832d004cdce02b97ef9f930a2d4068533d2ebbc4071465d4efb3e5890c2847
6
+ metadata.gz: 77a0187c5a2709b1f7cdeff4e04efa7d114be60ebafc6306f72dec4f46a14facfffc1588d7e1f47c9e16693721b587e75110a41c84e80148c71f0d4b60ba8025
7
+ data.tar.gz: 5fa45d5c9bca67bd625670c06065244d08987e7c3ea6dd1af17c84717050952cd4d915288fb53c1a65ccdbd6648787867d91f7b5a83b504248b4b0ca63140f3e
data/README.md CHANGED
@@ -20,6 +20,10 @@ Or install it yourself as:
20
20
 
21
21
  GfmLivePreview.run! "/path/to/my/README.md"
22
22
 
23
+ Or, if you want to run it from the command line:
24
+
25
+ $ gfm_live_preview "/path/to/my/README.md"
26
+
23
27
  Now, sinatra should be serving up your README on port 31337.
24
28
 
25
29
 
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env ruby -rubygems
2
+
3
+ require 'gfm_live_preview'
4
+
5
+ GfmLivePreview.run! ARGV.shift
@@ -1,3 +1,3 @@
1
1
  module GfmLivePreview
2
- VERSION = "0.9.2"
2
+ VERSION = "0.9.4"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gfm_live_preview
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.2
4
+ version: 0.9.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - ntl
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-10-26 00:00:00.000000000 Z
11
+ date: 2013-10-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -111,7 +111,8 @@ dependencies:
111
111
  description: Live preview your github flavored markdown file (with syntax highlighting!).
112
112
  email:
113
113
  - nathanladd+github@gmail.com
114
- executables: []
114
+ executables:
115
+ - gfm_live_preview
115
116
  extensions: []
116
117
  extra_rdoc_files: []
117
118
  files:
@@ -121,6 +122,7 @@ files:
121
122
  - LICENSE.txt
122
123
  - README.md
123
124
  - Rakefile
125
+ - bin/gfm_live_preview
124
126
  - gfm_live_preview.gemspec
125
127
  - lib/gfm_live_preview.rb
126
128
  - lib/gfm_live_preview/server.rb