jcnetdev-auto_migrations 1.1.20080704 → 1.2.20080704

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.
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'auto_migrations'
3
- s.version = '1.1.20080704'
3
+ s.version = '1.2.20080704'
4
4
  s.date = '2008-07-04'
5
5
 
6
6
  s.summary = "Allows migrations to be run automatically based on updating the schema.rb"
@@ -39,7 +39,8 @@ module AutoMigrations
39
39
  class << base
40
40
  cattr_accessor :tables_in_schema, :indexes_in_schema
41
41
  self.tables_in_schema, self.indexes_in_schema = [], []
42
- alias_method_chain :method_missing, :auto_migration
42
+
43
+ alias_method_chain :method_missing, :auto_migration unless instance_methods.include?('method_missing_without_auto_migration')
43
44
  end
44
45
  end
45
46
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jcnetdev-auto_migrations
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.20080704
4
+ version: 1.2.20080704
5
5
  platform: ruby
6
6
  authors:
7
7
  - PJ Hyett