Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/goyox86/list

Single Linked List
https://github.com/goyox86/list

Last synced: about 2 months ago
JSON representation

Single Linked List

Awesome Lists containing this project

README

        

list
====

Single Linked List

== Requisites

=== Ruby

You can easily install it with any Ruby Version Manager for example RVM or rbenv:

- RVM https://rvm.io/
- rbenv https://github.com/sstephenson/rbenv

=== Bundler

After installing Ruby you must be sure of having the 'bundler' gem installed.
You can install it via rubygems:

```bash
$ gem install bundler
```

== Running the test suite:

1) Prepare the bundle:

```bash
$ bundle install
```

2) Run the specs:

```bash
$ bundle exec rspec .
```