Skip to content

Latest commit

 

History

History
48 lines (36 loc) · 703 Bytes

README.md

File metadata and controls

48 lines (36 loc) · 703 Bytes

rdd

Build Status Gem Version Dependency Status

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