glorify 0.3.1 → 0.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,15 @@
1
+ ---
2
+ rvm:
3
+ - 1.8.7
4
+ - 1.9.2
5
+ - 1.9.3
6
+ - 2.0.0
7
+ - ruby-head
8
+ - jruby-18mode
9
+ - jruby-19mode
10
+ - jruby-head
11
+ - rbx-18mode
12
+ - rbx-19mode
13
+ notifications:
14
+ recipients:
15
+ - zachary@zacharyscott.net
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
@@ -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.rc.2"
26
+ s.add_development_dependency "rdoc", "4.0.0"
27
27
  end
@@ -1,6 +1,6 @@
1
1
  module Sinatra
2
2
  module Glorify
3
3
  # Current version of Sinatra::Glorify
4
- VERSION = "0.3.1"
4
+ VERSION = "0.3.2"
5
5
  end
6
6
  end
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.1
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-02-06 00:00:00.000000000 Z
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.rc.2
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.rc.2
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.24
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