glorify 0.3.1 → 0.3.2
Sign up to get free protection for your applications and to get access to all the features.
- data/.travis.yml +15 -0
- data/README.md +2 -0
- data/glorify.gemspec +1 -1
- data/lib/glorify/version.rb +1 -1
- metadata +12 -5
data/.travis.yml
ADDED
data/README.md
CHANGED
@@ -1,5 +1,7 @@
|
|
1
1
|
# Sinatra::Glorify
|
2
2
|
|
3
|
+
[![Build Status](https://travis-ci.org/zzak/glorify.png?branch=master)](https://travis-ci.org/zzak/glorify)
|
4
|
+
|
3
5
|
Sinatra helper to parse markdown with syntax highlighting like the pros
|
4
6
|
|
5
7
|
Renders markdown via redcarpet with syntax highlighting thanks to
|
data/glorify.gemspec
CHANGED
@@ -23,5 +23,5 @@ Gem::Specification.new do |s|
|
|
23
23
|
s.add_development_dependency "rack-test"
|
24
24
|
s.add_development_dependency "rake"
|
25
25
|
s.add_development_dependency "w3c_validators"
|
26
|
-
s.add_development_dependency "rdoc", "4.0.0
|
26
|
+
s.add_development_dependency "rdoc", "4.0.0"
|
27
27
|
end
|
data/lib/glorify/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: glorify
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -11,7 +11,7 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date: 2013-
|
14
|
+
date: 2013-03-18 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: sinatra
|
@@ -148,7 +148,7 @@ dependencies:
|
|
148
148
|
requirements:
|
149
149
|
- - '='
|
150
150
|
- !ruby/object:Gem::Version
|
151
|
-
version: 4.0.0
|
151
|
+
version: 4.0.0
|
152
152
|
type: :development
|
153
153
|
prerelease: false
|
154
154
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -156,7 +156,7 @@ dependencies:
|
|
156
156
|
requirements:
|
157
157
|
- - '='
|
158
158
|
- !ruby/object:Gem::Version
|
159
|
-
version: 4.0.0
|
159
|
+
version: 4.0.0
|
160
160
|
description: Renders markdown via redcarpet with syntax highlighting thanks to pygments.rb.
|
161
161
|
Able to use fenced code blocks like github, and includes a default pygments stylesheet.
|
162
162
|
email:
|
@@ -166,6 +166,7 @@ extensions: []
|
|
166
166
|
extra_rdoc_files: []
|
167
167
|
files:
|
168
168
|
- .gitignore
|
169
|
+
- .travis.yml
|
169
170
|
- Gemfile
|
170
171
|
- README.md
|
171
172
|
- Rakefile
|
@@ -197,15 +198,21 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
197
198
|
- - ! '>='
|
198
199
|
- !ruby/object:Gem::Version
|
199
200
|
version: '0'
|
201
|
+
segments:
|
202
|
+
- 0
|
203
|
+
hash: 3769292332255854767
|
200
204
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
201
205
|
none: false
|
202
206
|
requirements:
|
203
207
|
- - ! '>='
|
204
208
|
- !ruby/object:Gem::Version
|
205
209
|
version: '0'
|
210
|
+
segments:
|
211
|
+
- 0
|
212
|
+
hash: 3769292332255854767
|
206
213
|
requirements: []
|
207
214
|
rubyforge_project:
|
208
|
-
rubygems_version: 1.8.
|
215
|
+
rubygems_version: 1.8.23
|
209
216
|
signing_key:
|
210
217
|
specification_version: 3
|
211
218
|
summary: Sinatra helper to parse markdown with syntax highlighting like the pros
|