rdata 0.2.0 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile.lock +1 -1
- data/README.md +4 -0
- data/lib/rdata/version.rb +1 -1
- data/rdata.gemspec +1 -1
- metadata +4 -4
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
# RData
|
2
2
|
[![Code Climate](https://codeclimate.com/badge.png)](https://codeclimate.com/github/samdunne/rdata)
|
3
3
|
[![Build Status](https://secure.travis-ci.org/samdunne/rdata.png?branch=master)](https://travis-ci.org/samdunne/rdata)
|
4
|
+
[![Dependency Status](https://gemnasium.com/samdunne/rdata.png)](https://gemnasium.com/samdunne/rdata)
|
4
5
|
|
5
6
|
## Installation
|
6
7
|
```ruby
|
@@ -34,3 +35,6 @@ require 'rdata'
|
|
34
35
|
@stack.top # => Returns 'top'
|
35
36
|
@stack.is_empty? # => Returns true/false
|
36
37
|
```
|
38
|
+
|
39
|
+
### More on Stacks
|
40
|
+
[Stacks - Wiki Link](https://github.com/samdunne/rdata/wiki/Stacks)
|
data/lib/rdata/version.rb
CHANGED
data/rdata.gemspec
CHANGED
@@ -12,7 +12,7 @@ Gem::Specification.new do |s|
|
|
12
12
|
s.date = '2012-11-28'
|
13
13
|
s.homepage = 'https://github.com/samdunne/rdata'
|
14
14
|
s.summary = "Common Datastructures in Ruby"
|
15
|
-
s.description = "A datastructures library for
|
15
|
+
s.description = "A datastructures library for Ruby (Nothing to do with the R language)"
|
16
16
|
|
17
17
|
|
18
18
|
s.files = `git ls-files`.split("\n")
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rdata
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -43,7 +43,7 @@ dependencies:
|
|
43
43
|
- - ! '>='
|
44
44
|
- !ruby/object:Gem::Version
|
45
45
|
version: '0'
|
46
|
-
description: A datastructures library for
|
46
|
+
description: A datastructures library for Ruby (Nothing to do with the R language)
|
47
47
|
email:
|
48
48
|
- sam@sam-dunne.com
|
49
49
|
executables: []
|
@@ -80,7 +80,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
80
80
|
version: '0'
|
81
81
|
segments:
|
82
82
|
- 0
|
83
|
-
hash:
|
83
|
+
hash: 3129404638174026827
|
84
84
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
85
85
|
none: false
|
86
86
|
requirements:
|
@@ -89,7 +89,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
89
89
|
version: '0'
|
90
90
|
segments:
|
91
91
|
- 0
|
92
|
-
hash:
|
92
|
+
hash: 3129404638174026827
|
93
93
|
requirements: []
|
94
94
|
rubyforge_project:
|
95
95
|
rubygems_version: 1.8.24
|