sequel 0.0.6 → 0.0.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/CHANGELOG +4 -0
  2. data/Rakefile +1 -1
  3. data/lib/sequel/schema.rb +1 -1
  4. metadata +7 -6
data/CHANGELOG CHANGED
@@ -1,3 +1,7 @@
1
+ *0.0.7*
2
+
3
+ * Fixed bug in Model.schema, duh!
4
+
1
5
  *0.0.6*
2
6
 
3
7
  * Added Dataset#sql as alias to Dataset#select_sql.
data/Rakefile CHANGED
@@ -6,7 +6,7 @@ require 'fileutils'
6
6
  include FileUtils
7
7
 
8
8
  NAME = "sequel"
9
- VERS = "0.0.6"
9
+ VERS = "0.0.7"
10
10
  CLEAN.include ['**/.*.sw?', 'pkg/*', '.config', 'doc/*', 'coverage/*']
11
11
  RDOC_OPTS = ['--quiet', '--title', "Sequel: Concise ORM for Ruby",
12
12
  "--opname", "index.html",
@@ -83,7 +83,7 @@ module Sequel
83
83
  class Generator
84
84
  attr_reader :table_name
85
85
 
86
- def initialize(table_name, auto_primary_key, &block)
86
+ def initialize(table_name, auto_primary_key = nil, &block)
87
87
  @table_name = table_name
88
88
  @primary_key = auto_primary_key
89
89
  @columns = []
metadata CHANGED
@@ -1,9 +1,9 @@
1
1
  --- !ruby/object:Gem::Specification
2
- rubygems_version: 0.9.2
2
+ rubygems_version: 0.9.0
3
3
  specification_version: 1
4
4
  name: sequel
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.0.6
6
+ version: 0.0.7
7
7
  date: 2007-03-22 00:00:00 +02:00
8
8
  summary: Concise ORM for Ruby.
9
9
  require_paths:
@@ -33,17 +33,18 @@ files:
33
33
  - README
34
34
  - Rakefile
35
35
  - bin/sequel
36
+ - doc/rdoc
36
37
  - lib/sequel
37
38
  - lib/sequel.rb
39
+ - lib/sequel/connection_pool.rb
40
+ - lib/sequel/core_ext.rb
41
+ - lib/sequel/database.rb
38
42
  - lib/sequel/dataset.rb
39
43
  - lib/sequel/model.rb
44
+ - lib/sequel/mysql.rb
40
45
  - lib/sequel/postgres.rb
41
46
  - lib/sequel/schema.rb
42
47
  - lib/sequel/sqlite.rb
43
- - lib/sequel/connection_pool.rb
44
- - lib/sequel/database.rb
45
- - lib/sequel/core_ext.rb
46
- - lib/sequel/mysql.rb
47
48
  - CHANGELOG
48
49
  test_files: []
49
50