Sha256: 4ce96658b3636fd9a3bc6fce1a12d9045e1908c5835dfb47b30a8fc06b090f95

Contents?: true

Size: 1.06 KB

Versions: 1

Compression:

Stored size: 1.06 KB

Contents

h1. Redcloth::Formatters::Rdoc

A RedCloth formatter that enables to convert @.textile@ files to @.rdoc@ files. This is useful for compiling a @README.textile@ into a @README.rdoc@ file and use it as the main index file in the corresponding RDoc documentation.

h2. Installation

Add this line to your application's Gemfile:

bc.. gem 'redcloth-formatters-rdoc'

p. And then execute:

bc.. $ bundle

p. Or install it yourself as:

bc.. $ gem install redcloth-formatters-rdoc

h2. Usage

bc.. # Compile the readme to the rdoc format
readme_textile = File.open('README.textile', 'r+'){ |file| file.read }
readme_rdoc = RedCloth.new(readme_textile).to_rdoc  
File.open('README.rdoc', 'w+'){ |file| file.write(readme_rdoc) }

# Create rdoc with the readme as main file
`rdoc --main README.rdoc`

# Clean up the rdoc file
File.delete("README.rdoc")

h2. Contributing

1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Added some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
redcloth-formatters-rdoc-0.0.1 README.textile