Skip to content

Commit

Permalink
Merge pull request #3 from Tonkpils/master
Browse files Browse the repository at this point in the history
Added purpose to README
  • Loading branch information
samdunne committed Dec 4, 2012
2 parents 2f8cef8 + ece1dbe commit 6477faf
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
13 changes: 11 additions & 2 deletions README.md
Expand Up @@ -3,6 +3,14 @@
[![Build Status](https://secure.travis-ci.org/samdunne/rdata.png?branch=master)](https://travis-ci.org/samdunne/rdata)
[![Dependency Status](https://gemnasium.com/samdunne/rdata.png)](https://gemnasium.com/samdunne/rdata)

## Purpose

Project goal is to provide a very clear and concise library of datastructures and algorithms in Ruby.

## Data Structures

* [Stacks](#stacks)

## Installation
```ruby
gem install rdata
Expand All @@ -19,7 +27,7 @@ gem 'rdata'
require 'rdata'
```

## Stacks
##<a name='stacks'>Stacks</a>

### Initialization

Expand All @@ -37,4 +45,5 @@ require 'rdata'
```

### More on Stacks
[Stacks - Wiki Link](https://github.com/samdunne/rdata/wiki/Stacks)
[Stacks - Wiki Link](https://github.com/samdunne/rdata/wiki/Stacks)

4 changes: 3 additions & 1 deletion spec/rdata_spec.rb
@@ -1,6 +1,6 @@
require 'spec_helper'

describe RData do
describe RData::Stack do

let(:stack) { RData.Stack }

Expand Down Expand Up @@ -44,3 +44,5 @@
end

end


0 comments on commit 6477faf

Please sign in to comment.