christiank-turntable 1.0.2 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/{lib/dictionary.rb → dictionary.rb} +0 -0
- data/turntable.rb +2 -4
- metadata +4 -5
File without changes
|
data/turntable.rb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
#
|
2
|
-
# Turntable v1.0
|
2
|
+
# Turntable v1.1.0
|
3
3
|
# Christian Koch <ckoch002@student.ucr.edu>
|
4
4
|
#
|
5
5
|
# Turntable is an alternative relational database for Ruby. A Turntable object
|
@@ -8,14 +8,12 @@
|
|
8
8
|
# external file.
|
9
9
|
#
|
10
10
|
|
11
|
-
|
12
|
-
$:.unshift File.join(File.dirname(__FILE__), 'lib')
|
13
11
|
require 'dictionary'
|
14
12
|
require 'ostruct'
|
15
13
|
|
16
14
|
class Turntable
|
17
15
|
|
18
|
-
VERSION = 'v1.0
|
16
|
+
VERSION = 'v1.1.0'
|
19
17
|
|
20
18
|
include Enumerable
|
21
19
|
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
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Christian Koch
|
@@ -23,15 +23,14 @@ extra_rdoc_files: []
|
|
23
23
|
|
24
24
|
files:
|
25
25
|
- turntable.rb
|
26
|
-
-
|
26
|
+
- dictionary.rb
|
27
27
|
has_rdoc: false
|
28
28
|
homepage: http://github.com/christiank/Turntable
|
29
29
|
post_install_message:
|
30
30
|
rdoc_options: []
|
31
31
|
|
32
32
|
require_paths:
|
33
|
-
-
|
34
|
-
- .
|
33
|
+
- .
|
35
34
|
required_ruby_version: !ruby/object:Gem::Requirement
|
36
35
|
requirements:
|
37
36
|
- - ">="
|
@@ -50,6 +49,6 @@ rubyforge_project:
|
|
50
49
|
rubygems_version: 1.2.0
|
51
50
|
signing_key:
|
52
51
|
specification_version: 2
|
53
|
-
summary: Turntable is an alternative
|
52
|
+
summary: Turntable is an alternative relational database for Ruby.
|
54
53
|
test_files: []
|
55
54
|
|