public
Description: Represent ActiveRecord Markdown, Textile, Wiki text, or RDoc columns as Markdown, Textile, Wikitext or RDoc objects using various external libraries to convert to HTML.
Homepage: http://vigetlabs.github.com/acts_as_markup/
Clone URL: git://github.com/vigetlabs/acts_as_markup.git
acts_as_markup / CHANGELOG
100644 35 lines (21 sloc) 0.988 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
== 1.2.0 / 2008-09-10
* Allow all objects to have a to_html method that defaults as to_s instead just doing this for strings. (idea from crnixon[http://github.com/crnixon/])
* Add string methods to all markup objects via the StringLike mixin. (crnixon[http://github.com/crnixon/])
* Other Minor bug fixes
 
== 1.1.2 / 2008-08-22
* Make sure all markup objects properly respond to the .blank? method call.
 
== 1.1.0 / 2008-08-12
 
* Use a default for markup language column name when the variable options is used.
 
== 1.0.0 / 2008-08-11
 
* Add support for Maruku Markdown Library.
 
== 0.4.0 / 2008-08-11
 
* Add support for RDoc.
 
== 0.3.0 / 2008-08-08
 
* Add support for wikitext.
 
== 0.2.0 / 2008-08-07
 
* Add support for a variable markup language option.
 
== 0.1.0 / 2008-08-05
 
* Initial Release
  * Support for Markdown and Textile markup languages.
  * `acts_as_markdown` and `acts_as_textile` convenience methods
  * Support for BlueCloth, RDiscount and Ruby PEG markdown processors.