Skip to content

akinomurasame/redpen_ruby

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

50 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RedPenRuby

Gem Version Build Status Coverage Status Code Climate

RedPenRuby is a Ruby wrapper for redpen: a text inspection tool.

Installation

Add this line to your application's Gemfile:

gem 'redpen_ruby'

And then execute:

$ bundle install --path vendor/bundle --binstubs vendor/bundle/bin

Or install it yourself as:

$ gem install redpen_ruby

Usage

Usage CLI:

$ bundle exec redpen_ruby /path/to/config.xml /path/to/target_file

Usage Ruby script:

require 'redpen_ruby'

config_file = './lib/redpen-cli-1.1/conf/redpen-conf-en.xml'
target_file = './lib/redpen-cli-1.1/sample-doc/en/sampledoc-en.md'

redpen = RedpenRuby.check(config_file, target_file)

if redpen.valid?
  puts 'Ok, Valid!'
else
  puts redpen.messages
end

Contributing

  1. Fork it ( https://github.com/[my-github-username]/redpen_ruby/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

About

RedPenRuby is a Ruby wrapper for redpen: a text inspection tool.

Resources

License

Stars

Watchers

Forks

Packages

No packages published