rdd Installation gem install rdd Usage create a spec/readme_spec.rb spec file require 'rdd/rspec' describe_readme(File.expand_path('../../../README.md', __FILE__)) run the spec rspec -cfn spec/readme_spec.rb Example Usages Example: First example p 1 + 1 # => 2 Example: Second example a = 6 b = 7 p a + b # => 13 p a * b # => 42