public
Description: Makes your models act as textiled.
Homepage: http://errtheblog.com/posts/12-actsastextiled
Clone URL: git://github.com/defunkt/acts_as_textiled.git
Search Repo:
yet more rdoc changes
defunkt (author)
Tue Aug 21 15:38:04 -0700 2007
commit  3869d8ea49c7edbcc37685f362838d66966727d9
tree    6bb0b484f8b16a2c5ea48eec1daa8f1508fd6e85
parent  572cc436e2bcf5ead694cc962a5808e1e2456cf0
0
...
48
49
50
51
 
52
53
54
...
75
76
77
78
 
79
80
81
...
85
86
87
88
 
89
90
91
...
117
118
119
120
121
 
...
48
49
50
 
51
52
53
54
...
75
76
77
 
78
79
80
81
...
85
86
87
 
88
89
90
91
...
117
118
119
 
 
120
0
@@ -48,7 +48,7 @@
0
   >> story.description
0
   => "<p>I <em>know</em>!</p>"
0
 
0
-==== Different Modes
0
+==== Different Modes
0
 
0
 RedCloth supports different modes, such as :lite_mode. To use a mode on
0
 a specific attribute simply pass it in as an options hash after any
0
@@ -75,7 +75,7 @@
0
 
0
 Hell no.
0
 
0
-==== form_for
0
+==== form_for
0
 
0
 Are you using form_for? If you are, you don't have to change any code at all.
0
 
0
@@ -85,7 +85,7 @@
0
 
0
 You'll see the Textile plaintext in the text field. It Just Works.
0
 
0
-==== form tags
0
+==== form tags
0
 
0
 If you're being a bit unconvential, no worries. You can still get at your
0
 raw Textile like so:
0
@@ -117,6 +117,5 @@
0
 
0
 Enjoy.
0
 
0
->> Chris Wanstrath
0
-=> chris[at]ozmm[dot]org
0
+* By Chris Wanstrath [ chris[at]ozmm[dot]org ]
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
0
@@ -1 +1,15 @@
0
+require 'rake'
0
+require 'rake/testtask'
0
+require 'rake/rdoctask'
0
+
0
+desc 'Generate RDoc documentation for the acts_as_textiled plugin.'
0
+Rake::RDocTask.new(:rdoc) do |rdoc|
0
+ files = ['README', 'LICENSE', 'lib/**/*.rb']
0
+ rdoc.rdoc_files.add(files)
0
+ rdoc.main = "README" # page to start on
0
+ rdoc.title = "acts_as_textiled"
0
+ rdoc.template = File.exists?(t="/Users/chris/ruby/projects/err/rock/template.rb") ? t : "/var/www/rock/template.rb"
0
+ rdoc.rdoc_dir = 'doc' # rdoc output folder
0
+ rdoc.options << '--inline-source'
0
+end

Comments

    No one has commented yet.