markaby 0.6.6 → 0.6.7

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.
data/.gitignore CHANGED
@@ -1,4 +1,5 @@
1
1
  doc
2
2
  coverage
3
3
  .garlic
4
- pkg
4
+ pkg
5
+ _site
data/CHANGELOG.rdoc CHANGED
@@ -1,4 +1,9 @@
1
- = 0.6.6
1
+ = 0.6.7 (2010-06-02)
2
+
3
+ * Add rails support for 2.3.5 - 2.3.8
4
+ * Improved rails documentation
5
+
6
+ = 0.6.6 (2010-06-01)
2
7
 
3
8
  * ruby 1.9.1 support. Closes Github Issues #10 & #11.
4
9
  * Removed Tilt deprecation warnings
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.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://joho.github.com/markaby/}
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://joho.github.com/markaby/"
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.6
1
+ 0.6.7
data/lib/markaby/rails.rb CHANGED
@@ -31,7 +31,11 @@ module Markaby
31
31
  "2.3.2.1",
32
32
  "2.3.3",
33
33
  "2.3.3.1",
34
- "2.3.4"
34
+ "2.3.4",
35
+ "2.3.5",
36
+ "2.3.6",
37
+ "2.3.7",
38
+ "2.3.8"
35
39
  ]
36
40
 
37
41
  SUPPORTED_RAILS_VERSIONS = DEPRECATED_RAILS_VERSIONS + FULLY_SUPPORTED_RAILS_VERSIONS
@@ -7,6 +7,8 @@ module Markaby
7
7
  end
8
8
  end
9
9
 
10
+ alias_method :safe_concat, :concat
11
+
10
12
  # This is used for the block variable given to form_for. Typically, an erb template looks as so:
11
13
  #
12
14
  # <% form_for :foo do |f|
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: 11
4
+ hash: 9
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 6
9
- - 6
10
- version: 0.6.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://joho.github.com/markaby/
104
+ homepage: http://markaby.github.com/markaby/
105
105
  licenses: []
106
106
 
107
107
  post_install_message: