rails_sql_views 0.1.0 → 0.2.0

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.
@@ -0,0 +1,11 @@
1
+ # This is required for 1.1.6 support
2
+ class Module
3
+ def alias_method_chain(target, feature)
4
+ # Strip out punctuation on predicates or bang methods since
5
+ # e.g. target?_without_feature is not a valid method name.
6
+ aliased_target, punctuation = target.to_s.sub(/([?!=])$/, ''), $1
7
+ yield(aliased_target, punctuation) if block_given?
8
+ alias_method "#{aliased_target}_without_#{feature}#{punctuation}", target
9
+ alias_method target, "#{aliased_target}_with_#{feature}#{punctuation}"
10
+ end
11
+ end
@@ -1,7 +1,7 @@
1
1
  module RailsSqlViews
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
- MINOR = 1
4
+ MINOR = 2
5
5
  TINY = 0
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
@@ -34,6 +34,8 @@ unless defined?(ActiveRecord)
34
34
  end
35
35
  end
36
36
 
37
+ require 'core_ext/module'
38
+
37
39
  require 'rails_sql_views/connection_adapters/abstract/schema_definitions'
38
40
  require 'rails_sql_views/connection_adapters/abstract/schema_statements'
39
41
  require 'rails_sql_views/connection_adapters/mysql_adapter'
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.0
3
3
  specification_version: 1
4
4
  name: rails_sql_views
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.1.0
7
- date: 2006-12-27 00:00:00 -05:00
6
+ version: 0.2.0
7
+ date: 2006-12-28 00:00:00 -05:00
8
8
  summary: Adds SQL Views to Rails.
9
9
  require_paths:
10
10
  - lib
@@ -32,8 +32,10 @@ files:
32
32
  - CHANGELOG
33
33
  - README
34
34
  - Rakefile
35
+ - lib/core_ext
35
36
  - lib/rails_sql_views
36
37
  - lib/rails_sql_views.rb
38
+ - lib/core_ext/module.rb
37
39
  - lib/rails_sql_views/connection_adapters
38
40
  - lib/rails_sql_views/schema_dumper.rb
39
41
  - lib/rails_sql_views/version.rb