ensured_schema 0.1.3 → 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -31,7 +31,6 @@ module ActiveRecord
31
31
  column_names.each do |name|
32
32
  column_def = build_column_definition(name, column_type, options)
33
33
  def_options = column_def.members.inject({}){|h, k| h[k.to_sym] = column_def[k]; h;}
34
- #debugger
35
34
  column(name, column_type.to_sym, def_options)
36
35
  end
37
36
  end
@@ -1,3 +1,3 @@
1
1
  module EnsuredSchema
2
- VERSION = "0.1.3"
2
+ VERSION = "0.1.4"
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ensured_schema
3
3
  version: !ruby/object:Gem::Version
4
- hash: 29
4
+ hash: 19
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 3
10
- version: 0.1.3
9
+ - 4
10
+ version: 0.1.4
11
11
  platform: ruby
12
12
  authors:
13
13
  - Chris Conley
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2010-12-10 00:00:00 -05:00
18
+ date: 2010-12-15 00:00:00 -05:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -69,7 +69,6 @@ files:
69
69
  - lib/ensured_schema/column.rb
70
70
  - lib/ensured_schema/ensured_table.rb
71
71
  - lib/ensured_schema/mysql_column.rb
72
- - lib/ensured_schema/schema.rb
73
72
  - lib/ensured_schema/schema_statements.rb
74
73
  - lib/ensured_schema/table.rb
75
74
  - lib/ensured_schema/version.rb
@@ -1,7 +0,0 @@
1
- module ActiveRecord
2
- class Schema
3
- def self.ensure(options={}, &block)
4
- self.define(options, &block)
5
- end
6
- end
7
- end