christiank-turntable 0.6.4 → 0.6.4.1
Sign up to get free protection for your applications and to get access to all the features.
- data/bin/sqlite3-to-turntable +1 -1
- data/turntable.rb +2 -2
- metadata +1 -1
data/bin/sqlite3-to-turntable
CHANGED
@@ -32,7 +32,7 @@ end
|
|
32
32
|
sqlite_db_columns.collect! { |column| column.to_sym }
|
33
33
|
|
34
34
|
# Create the new Turntable
|
35
|
-
turntable_db = Turntable.new "#{
|
35
|
+
turntable_db = Turntable.new "#{ARGV[1]}.turn", sqlite_db_columns
|
36
36
|
|
37
37
|
# Fill up the Turntable
|
38
38
|
sqlite_db_rows.each { |row| turntable_db.insert_array row }
|
data/turntable.rb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
#
|
2
|
-
# turntable v0.6.4
|
2
|
+
# turntable v0.6.4.1
|
3
3
|
# Christian Koch <ckoch002@student.ucr.edu>
|
4
4
|
#
|
5
5
|
|
@@ -8,7 +8,7 @@ require 'ostruct'
|
|
8
8
|
|
9
9
|
class Turntable < Array
|
10
10
|
|
11
|
-
@@version = 'v0.6.4'
|
11
|
+
@@version = 'v0.6.4.1'
|
12
12
|
|
13
13
|
@@insert_proc = %q(
|
14
14
|
if args.length != @columns.length
|