Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/goyox86/list
Single Linked List
https://github.com/goyox86/list
Last synced: about 2 months ago
JSON representation
Single Linked List
- Host: GitHub
- URL: https://github.com/goyox86/list
- Owner: goyox86
- Created: 2013-06-23T05:20:35.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-07-23T19:15:14.000Z (over 11 years ago)
- Last Synced: 2023-03-12T08:24:53.556Z (almost 2 years ago)
- Language: Ruby
- Size: 105 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 .
```