wbzyl-sinatra-rdiscount 0.1.4 → 0.1.5
Sign up to get free protection for your applications and to get access to all the features.
- data/README.markdown +0 -3
- data/VERSION.yml +2 -2
- data/examples/app.rb +2 -2
- data/examples/config.ru +1 -4
- data/examples/mapp.rb +1 -1
- data/examples/views/hello.rdiscount +2 -2
- data/lib/sinatra/rdiscount.rb +1 -1
- data/sinatra-rdiscount.gemspec +3 -3
- metadata +2 -2
data/README.markdown
CHANGED
@@ -30,9 +30,6 @@ Another example could be find in the *examples* directory. Run it with:
|
|
30
30
|
|
31
31
|
rackup -p 4567 config.ru
|
32
32
|
|
33
|
-
and visit *http://localhost:4567/hello2* to contemplate the sheer
|
34
|
-
beauty of the rendered "Hello RDiscount".
|
35
|
-
|
36
33
|
|
37
34
|
## Template Languages (*update to The Sinatra Book*)
|
38
35
|
|
data/VERSION.yml
CHANGED
data/examples/app.rb
CHANGED
@@ -4,12 +4,12 @@ require 'sinatra'
|
|
4
4
|
gem 'wbzyl-sinatra-rdiscount', '>=0.1.2'
|
5
5
|
require 'sinatra/rdiscount'
|
6
6
|
|
7
|
-
get "
|
7
|
+
get "/?" do
|
8
8
|
@name = "RDiscount"
|
9
9
|
rdiscount :hello, :layout => false
|
10
10
|
end
|
11
11
|
|
12
|
-
get "/
|
12
|
+
get "/2" do
|
13
13
|
@name = "RDiscount"
|
14
14
|
rdiscount :hello2, :layout => :layout2
|
15
15
|
end
|
data/examples/config.ru
CHANGED
data/examples/mapp.rb
CHANGED
data/lib/sinatra/rdiscount.rb
CHANGED
data/sinatra-rdiscount.gemspec
CHANGED
@@ -2,11 +2,11 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{sinatra-rdiscount}
|
5
|
-
s.version = "0.1.
|
5
|
+
s.version = "0.1.5"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = ["Wlodek Bzyl"]
|
9
|
-
s.date = %q{2009-
|
9
|
+
s.date = %q{2009-06-29}
|
10
10
|
s.description = %q{Sinatra extension providing RDiscount templates for Sinatra application.}
|
11
11
|
s.email = %q{matwb@univ.gda.pl}
|
12
12
|
s.extra_rdoc_files = [
|
@@ -36,7 +36,7 @@ Gem::Specification.new do |s|
|
|
36
36
|
s.homepage = %q{http://github.com/wbzyl/sinatra-rdiscount}
|
37
37
|
s.rdoc_options = ["--charset=UTF-8"]
|
38
38
|
s.require_paths = ["lib"]
|
39
|
-
s.rubygems_version = %q{1.3.
|
39
|
+
s.rubygems_version = %q{1.3.4}
|
40
40
|
s.summary = %q{Sinatra extension providing RDiscount templates for Sinatra application.}
|
41
41
|
s.test_files = [
|
42
42
|
"test/test_helper.rb",
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: wbzyl-sinatra-rdiscount
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Wlodek Bzyl
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-
|
12
|
+
date: 2009-06-29 00:00:00 -07:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|