markaby 0.6.6 → 0.6.7
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +2 -1
- data/CHANGELOG.rdoc +6 -1
- data/Markaby.gemspec +2 -2
- data/README.rdoc +14 -1
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/lib/markaby/rails.rb +5 -1
- data/lib/markaby/rails/rails_builder.rb +2 -0
- metadata +4 -4
data/.gitignore
CHANGED
data/CHANGELOG.rdoc
CHANGED
data/Markaby.gemspec
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{markaby}
|
8
|
-
s.version = "0.6.
|
8
|
+
s.version = "0.6.7"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["_why", "Tim Fletcher", "John Barton", "spox", "smtlaissezfaire"]
|
@@ -70,7 +70,7 @@ Gem::Specification.new do |s|
|
|
70
70
|
"spec/spec.opts",
|
71
71
|
"spec/spec_helper.rb"
|
72
72
|
]
|
73
|
-
s.homepage = %q{http://
|
73
|
+
s.homepage = %q{http://markaby.github.com/markaby/}
|
74
74
|
s.rdoc_options = ["--charset=UTF-8"]
|
75
75
|
s.require_paths = ["lib"]
|
76
76
|
s.rubygems_version = %q{1.3.7}
|
data/README.rdoc
CHANGED
@@ -26,7 +26,20 @@ Markaby supports many versions of rails:
|
|
26
26
|
|
27
27
|
1.2.2, 1.2.3, 1.2.4, 1.2.5, 1.2.6, 2.2.0,
|
28
28
|
2.2.1, 2.2.2, 2.2.3, 2.3.1, 2.3.2, 2.3.2.1,
|
29
|
-
2.3.3, 2.3.3.1, 2.3.4
|
29
|
+
2.3.3, 2.3.3.1, 2.3.4, 2.3.5, 2.3.6, 2.3.7,
|
30
|
+
2.3.8
|
31
|
+
|
32
|
+
Install it as a plugin:
|
33
|
+
|
34
|
+
script/plugin install git://github.com/markaby/markaby.git
|
35
|
+
|
36
|
+
If you are loading it in a different way (from a gem), make sure it's on the LOAD_PATH, and add the following (in environment.rb):
|
37
|
+
|
38
|
+
require 'markaby'
|
39
|
+
require 'markaby/rails'
|
40
|
+
|
41
|
+
Markaby::Rails.load
|
42
|
+
|
30
43
|
|
31
44
|
== Using Markaby as a Ruby class
|
32
45
|
|
data/Rakefile
CHANGED
@@ -30,7 +30,7 @@ begin
|
|
30
30
|
gemspec.summary = "Markup as Ruby, write HTML in your native Ruby tongue"
|
31
31
|
gemspec.description = "Tim Fletcher and _why's ruby driven HTML templating system"
|
32
32
|
gemspec.email = "scott@railsnewbie.com"
|
33
|
-
gemspec.homepage = "http://
|
33
|
+
gemspec.homepage = "http://markaby.github.com/markaby/"
|
34
34
|
gemspec.authors = ["_why", "Tim Fletcher", "John Barton", "spox", "smtlaissezfaire"]
|
35
35
|
gemspec.add_dependency 'builder', '>=2.0.0'
|
36
36
|
end
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.6.
|
1
|
+
0.6.7
|
data/lib/markaby/rails.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: markaby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 9
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 6
|
9
|
-
-
|
10
|
-
version: 0.6.
|
9
|
+
- 7
|
10
|
+
version: 0.6.7
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- _why
|
@@ -101,7 +101,7 @@ files:
|
|
101
101
|
- spec/spec.opts
|
102
102
|
- spec/spec_helper.rb
|
103
103
|
has_rdoc: true
|
104
|
-
homepage: http://
|
104
|
+
homepage: http://markaby.github.com/markaby/
|
105
105
|
licenses: []
|
106
106
|
|
107
107
|
post_install_message:
|