christiank-turntable 1.0.1 → 1.0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/turntable.rb +6 -4
- metadata +3 -2
data/turntable.rb
CHANGED
@@ -1,19 +1,21 @@
|
|
1
1
|
#
|
2
|
-
# Turntable v1.0.
|
2
|
+
# Turntable v1.0.2
|
3
3
|
# Christian Koch <ckoch002@student.ucr.edu>
|
4
4
|
#
|
5
5
|
# Turntable is an alternative relational database for Ruby. A Turntable object
|
6
|
-
# is actually a dictionary of row objects (which in turn are
|
7
|
-
# which adhere to the row/column model and are marshalled to an
|
6
|
+
# is actually a dictionary of row objects (which in turn are based on
|
7
|
+
# dictionaries) which adhere to the row/column model and are marshalled to an
|
8
|
+
# external file.
|
8
9
|
#
|
9
10
|
|
11
|
+
|
10
12
|
$:.unshift File.join(File.dirname(__FILE__), 'lib')
|
11
13
|
require 'dictionary'
|
12
14
|
require 'ostruct'
|
13
15
|
|
14
16
|
class Turntable
|
15
17
|
|
16
|
-
VERSION = 'v1.0.
|
18
|
+
VERSION = 'v1.0.2'
|
17
19
|
|
18
20
|
include Enumerable
|
19
21
|
def each
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: christiank-turntable
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.1
|
4
|
+
version: 1.0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Christian Koch
|
@@ -30,7 +30,8 @@ post_install_message:
|
|
30
30
|
rdoc_options: []
|
31
31
|
|
32
32
|
require_paths:
|
33
|
-
- lib
|
33
|
+
- - lib
|
34
|
+
- .
|
34
35
|
required_ruby_version: !ruby/object:Gem::Requirement
|
35
36
|
requirements:
|
36
37
|
- - ">="
|