datastructures 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.md +15 -5
- data/lib/datastructures/version.rb +1 -1
- data/test/test_datastructures.rb +2 -0
- metadata +17 -1
data/README.md
CHANGED
@@ -3,15 +3,25 @@ datastructures
|
|
3
3
|
|
4
4
|
A collection of data structures in Ruby, made for my [data structures challenge](http://blahah.net/2013/08/18/algorithm-challenge)
|
5
5
|
|
6
|
+
[][gem]
|
7
|
+
[][travis]
|
8
|
+
[][gemnasium]
|
9
|
+
[][codeclimate]
|
10
|
+
[][coveralls]
|
11
|
+
|
12
|
+
[gem]: https://badge.fury.io/rb/datastructures
|
13
|
+
[travis]: https://travis-ci.org/Blahah/datastructures
|
14
|
+
[gemnasium]: https://gemnasium.com/Blahah/datastructures
|
15
|
+
[codeclimate]: https://codeclimate.com/github/Blahah/datastructures
|
16
|
+
[coveralls]: https://coveralls.io/repo/Blahah/datastructures
|
17
|
+
|
6
18
|
## Installation
|
7
19
|
|
8
|
-
|
9
|
-
gem install datastructures
|
10
|
-
```
|
20
|
+
`gem install datastructures`
|
11
21
|
|
12
22
|
## Day 1: Queue
|
13
23
|
|
14
|
-
```
|
24
|
+
```ruby
|
15
25
|
require 'datastructure'
|
16
26
|
queue = DataStructures::Queue.new
|
17
27
|
queue.enqueue('first')
|
@@ -23,4 +33,4 @@ queue.back # => 'second'
|
|
23
33
|
queue.dequeue # => 'first'
|
24
34
|
queue.dequeue # => 'second'
|
25
35
|
queue.dequeue # => RuntimeError, "Queue underflow: nothing to dequeue"
|
26
|
-
```
|
36
|
+
```
|
data/test/test_datastructures.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: datastructures
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -11,6 +11,22 @@ bindir: bin
|
|
11
11
|
cert_chain: []
|
12
12
|
date: 2013-08-19 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: rake
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '0'
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ! '>='
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0'
|
14
30
|
- !ruby/object:Gem::Dependency
|
15
31
|
name: coveralls
|
16
32
|
requirement: !ruby/object:Gem::Requirement
|