schema_plus_compatibility 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: c51b0360654047822db12c34df59a3245af1c1c9
4
+ data.tar.gz: 9721d42c9745f9421bfc38d678963aede3662aa7
5
+ SHA512:
6
+ metadata.gz: 2cc5dd85204a804ae50e3641457a3483ecffaf280927b7206c70a90459bad0d2c0e979db07297581702b4e08095183ef04be463b1c55b9efead1b664d7d0173b
7
+ data.tar.gz: 7473493ad1b85fa40ee585f16247302268b8987273d062822e61ad79bcb3ab50c342652533845f3fb473cfcdeed99ca4dae4a0757e8494128b58239c482fe908
@@ -0,0 +1,9 @@
1
+ /coverage
2
+ /tmp
3
+ /pkg
4
+ /Gemfile.local
5
+
6
+ *.lock
7
+ *.log
8
+ *.sqlite3
9
+ !gemfiles/**/*.sqlite3
@@ -0,0 +1,21 @@
1
+ # This file was auto-generated by the schema_dev tool, based on the data in
2
+ # ./schema_dev.yml
3
+ # Please do not edit this file; any changes will be overwritten next time
4
+ # schema_dev gets run.
5
+ ---
6
+ sudo: false
7
+ rvm:
8
+ - 2.3.1
9
+ gemfile:
10
+ - gemfiles/activerecord-4.2/Gemfile.mysql2
11
+ - gemfiles/activerecord-4.2/Gemfile.postgresql
12
+ - gemfiles/activerecord-4.2/Gemfile.sqlite3
13
+ - gemfiles/activerecord-5.0/Gemfile.mysql2
14
+ - gemfiles/activerecord-5.0/Gemfile.postgresql
15
+ - gemfiles/activerecord-5.0/Gemfile.sqlite3
16
+ env: POSTGRESQL_DB_USER=postgres MYSQL_DB_USER=travis
17
+ addons:
18
+ postgresql: '9.4'
19
+ before_script: bundle exec rake create_databases
20
+ after_script: bundle exec rake drop_databases
21
+ script: bundle exec rake travis
data/Gemfile ADDED
@@ -0,0 +1,5 @@
1
+ source "http://rubygems.org"
2
+
3
+ gemspec
4
+
5
+ File.exist?(gemfile_local = File.expand_path('../Gemfile.local', __FILE__)) and eval File.read(gemfile_local), binding, gemfile_local
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2015 ronen barzel
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,88 @@
1
+ [![Gem Version](https://badge.fury.io/rb/schema_plus_compatibility.svg)](http://badge.fury.io/rb/schema_plus_compatibility)
2
+ [![Build Status](https://secure.travis-ci.org/SchemaPlus/schema_plus_compatibility.svg)](http://travis-ci.org/SchemaPlus/schema_plus_compatibility)
3
+ [![Coverage Status](https://img.shields.io/coveralls/SchemaPlus/schema_plus_compatibility.svg)](https://coveralls.io/r/SchemaPlus/schema_plus_compatibility)
4
+
5
+ # SchemaPlus::Compatibility
6
+
7
+ SchemaPlus::Compatibility provides compatibility support for developing and testing using different versions of ActiveRecord.
8
+
9
+ SchemaPlus::Compatibility is part of the [SchemaPlus](https://github.com/SchemaPlus/) family of Ruby on Rails ActiveRecord extension gems.
10
+
11
+ ## Installation
12
+
13
+ <!-- SCHEMA_DEV: TEMPLATE INSTALLATION - begin -->
14
+ <!-- These lines are auto-inserted from a schema_dev template -->
15
+ As usual:
16
+
17
+ ```ruby
18
+ gem "schema_plus_compatibility" # in a Gemfile
19
+ gem.add_dependency "schema_plus_compatibility" # in a .gemspec
20
+ ```
21
+
22
+ <!-- SCHEMA_DEV: TEMPLATE INSTALLATION - end -->
23
+
24
+ ## Usage
25
+
26
+ SchemaPlus::Compatibility provides the following new methods:
27
+
28
+ * `connection.tables_without_deprecation`
29
+
30
+ In AR 5.0, `connection.tables` is deprecated for some db adapters, and as in AR 4.2 it may actually returns views (if any are defined) as well. This method suppresses the deprecation, and continues to be ill-defined as to whether it returns tables as well as views.
31
+
32
+ * `Migration.latest`
33
+
34
+ In AR 5.0, `ActiveRecord::Migration` is versioned using `[]`; in AR 4.2 it's not versioned. This method returns the latest migration version in both AR 4.2 and AR 5.0
35
+
36
+ Note that the methods provided by SchemaPlus::Compatibility are subject to arbitrary change if/when SchemaPlus supports new versions of AR and/or drops support for old versions. But SchemaPlus::Compatibility will of course follow semantic versioning.
37
+
38
+ ## Compatibility
39
+
40
+ SchemaPlus::Compatibility is tested on:
41
+
42
+ <!-- SCHEMA_DEV: MATRIX - begin -->
43
+ <!-- These lines are auto-generated by schema_dev based on schema_dev.yml -->
44
+ * ruby **2.3.1** with activerecord **4.2**, using **mysql2**, **sqlite3** or **postgresql**
45
+ * ruby **2.3.1** with activerecord **5.0**, using **mysql2**, **sqlite3** or **postgresql**
46
+
47
+ <!-- SCHEMA_DEV: MATRIX - end -->
48
+
49
+ ## History
50
+
51
+ * 0.1.0 - Initial release
52
+
53
+ ## Development & Testing
54
+
55
+ Are you interested in contributing to SchemaPlus::Compatibility? Thanks! Please follow
56
+ the standard protocol: fork, feature branch, develop, push, and issue pull
57
+ request.
58
+
59
+ Some things to know about to help you develop and test:
60
+
61
+ <!-- SCHEMA_DEV: TEMPLATE USES SCHEMA_DEV - begin -->
62
+ <!-- These lines are auto-inserted from a schema_dev template -->
63
+ * **schema_dev**: SchemaPlus::Compatibility uses [schema_dev](https://github.com/SchemaPlus/schema_dev) to
64
+ facilitate running rspec tests on the matrix of ruby, activerecord, and database
65
+ versions that the gem supports, both locally and on
66
+ [travis-ci](http://travis-ci.org/SchemaPlus/schema_plus_compatibility)
67
+
68
+ To to run rspec locally on the full matrix, do:
69
+
70
+ $ schema_dev bundle install
71
+ $ schema_dev rspec
72
+
73
+ You can also run on just one configuration at a time; For info, see `schema_dev --help` or the [schema_dev](https://github.com/SchemaPlus/schema_dev) README.
74
+
75
+ The matrix of configurations is specified in `schema_dev.yml` in
76
+ the project root.
77
+
78
+
79
+ <!-- SCHEMA_DEV: TEMPLATE USES SCHEMA_DEV - end -->
80
+
81
+ <!-- SCHEMA_DEV: TEMPLATE USES SCHEMA_MONKEY - begin -->
82
+ <!-- These lines are auto-inserted from a schema_dev template -->
83
+ * **schema_monkey**: SchemaPlus::Compatibility is implemented as a
84
+ [schema_monkey](https://github.com/SchemaPlus/schema_monkey) client,
85
+ using [schema_monkey](https://github.com/SchemaPlus/schema_monkey)'s
86
+ convention-based protocols for extending ActiveRecord and using middleware stacks.
87
+
88
+ <!-- SCHEMA_DEV: TEMPLATE USES SCHEMA_MONKEY - end -->
@@ -0,0 +1,9 @@
1
+ require 'bundler'
2
+ Bundler::GemHelper.install_tasks
3
+
4
+ require 'schema_dev/tasks'
5
+
6
+ task :default => :spec
7
+
8
+ require 'rspec/core/rake_task'
9
+ RSpec::Core::RakeTask.new(:spec)
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+ gemspec :path => File.expand_path('..', __FILE__)
3
+
4
+ File.exist?(gemfile_local = File.expand_path('../Gemfile.local', __FILE__)) and eval File.read(gemfile_local), binding, gemfile_local
@@ -0,0 +1,3 @@
1
+ eval File.read File.expand_path('../../Gemfile.base', __FILE__)
2
+
3
+ gem "activerecord", "~> 4.2.6"
@@ -0,0 +1,10 @@
1
+ require "pathname"
2
+ eval(Pathname.new(__FILE__).dirname.join("Gemfile.base").read, binding)
3
+
4
+ platform :ruby do
5
+ gem "mysql2", '>= 0.3.18', '< 0.5'
6
+ end
7
+
8
+ platform :jruby do
9
+ gem 'activerecord-jdbcmysql-adapter'
10
+ end
@@ -0,0 +1,10 @@
1
+ require "pathname"
2
+ eval(Pathname.new(__FILE__).dirname.join("Gemfile.base").read, binding)
3
+
4
+ platform :ruby do
5
+ gem "pg"
6
+ end
7
+
8
+ platform :jruby do
9
+ gem 'activerecord-jdbcpostgresql-adapter'
10
+ end
@@ -0,0 +1,10 @@
1
+ require "pathname"
2
+ eval(Pathname.new(__FILE__).dirname.join("Gemfile.base").read, binding)
3
+
4
+ platform :ruby do
5
+ gem "sqlite3"
6
+ end
7
+
8
+ platform :jruby do
9
+ gem 'activerecord-jdbcsqlite3-adapter', '>=1.3.0.beta2'
10
+ end
@@ -0,0 +1,3 @@
1
+ eval File.read File.expand_path('../../Gemfile.base', __FILE__)
2
+
3
+ gem "activerecord", "~> 5.0.0"
@@ -0,0 +1,10 @@
1
+ require "pathname"
2
+ eval(Pathname.new(__FILE__).dirname.join("Gemfile.base").read, binding)
3
+
4
+ platform :ruby do
5
+ gem "mysql2"
6
+ end
7
+
8
+ platform :jruby do
9
+ gem 'activerecord-jdbcmysql-adapter'
10
+ end
@@ -0,0 +1,10 @@
1
+ require "pathname"
2
+ eval(Pathname.new(__FILE__).dirname.join("Gemfile.base").read, binding)
3
+
4
+ platform :ruby do
5
+ gem "pg"
6
+ end
7
+
8
+ platform :jruby do
9
+ gem 'activerecord-jdbcpostgresql-adapter'
10
+ end
@@ -0,0 +1,10 @@
1
+ require "pathname"
2
+ eval(Pathname.new(__FILE__).dirname.join("Gemfile.base").read, binding)
3
+
4
+ platform :ruby do
5
+ gem "sqlite3"
6
+ end
7
+
8
+ platform :jruby do
9
+ gem 'activerecord-jdbcsqlite3-adapter', '>=1.3.0.beta2'
10
+ end
@@ -0,0 +1,7 @@
1
+ require 'schema_monkey'
2
+
3
+ require_relative 'compatibility/version'
4
+ require_relative 'compatibility/active_record/connection_adapters/abstract_adapter'
5
+ require_relative 'compatibility/active_record/migration'
6
+
7
+ SchemaMonkey.register SchemaPlus::Compatibility
@@ -0,0 +1,13 @@
1
+ module SchemaPlus::Compatibility
2
+ module ActiveRecord
3
+ module ConnectionAdapters
4
+ module AbstractAdapter
5
+ def tables_without_deprecation
6
+ ActiveSupport::Deprecation.silence do
7
+ tables
8
+ end
9
+ end
10
+ end
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,15 @@
1
+ module SchemaPlus::Compatibility
2
+ module ActiveRecord
3
+ module Migration
4
+ module ClassMethods
5
+ def latest_version
6
+ begin
7
+ ::ActiveRecord::Migration::Current
8
+ rescue
9
+ self
10
+ end
11
+ end
12
+ end
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,5 @@
1
+ module SchemaPlus
2
+ module Compatibility
3
+ VERSION = "0.1.0"
4
+ end
5
+ end
@@ -0,0 +1 @@
1
+ require_relative 'schema_plus/compatibility'
@@ -0,0 +1,9 @@
1
+ ruby:
2
+ - 2.3.1
3
+ activerecord:
4
+ - 4.2
5
+ - 5.0
6
+ db:
7
+ - mysql2
8
+ - sqlite3
9
+ - postgresql
@@ -0,0 +1,30 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'schema_plus/compatibility/version'
5
+
6
+ Gem::Specification.new do |gem|
7
+ gem.name = "schema_plus_compatibility"
8
+ gem.version = SchemaPlus::Compatibility::VERSION
9
+ gem.authors = ["ronen barzel", "boaz yaniv"]
10
+ gem.email = ["ronen@barzel.org", "boazyan@gmail.com"]
11
+ gem.summary = %q{Compatibility helpers for the SchemaPlus family of gems}
12
+ gem.description = %q{Compatibility helpers for the SchemaPlus family of gems}
13
+ gem.homepage = "https://github.com/SchemaPlus/schema_plus_compatibility"
14
+ gem.license = "MIT"
15
+
16
+ gem.files = `git ls-files -z`.split("\x0")
17
+ gem.executables = gem.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
19
+ gem.require_paths = ["lib"]
20
+
21
+ gem.add_dependency "activerecord", ">= 4.2", "< 5.1"
22
+ gem.add_dependency "schema_monkey", "~> 2.1"
23
+
24
+ gem.add_development_dependency "bundler", "~> 1.7"
25
+ gem.add_development_dependency "rake", "~> 10.0"
26
+ gem.add_development_dependency "rspec", "~> 3.0"
27
+ gem.add_development_dependency "schema_dev", "~> 3.5"
28
+ gem.add_development_dependency "simplecov"
29
+ gem.add_development_dependency "simplecov-gem-profile"
30
+ end
@@ -0,0 +1,32 @@
1
+ # encoding: utf-8
2
+ require 'spec_helper'
3
+
4
+ describe ActiveRecord::ConnectionAdapters::AbstractAdapter do
5
+
6
+ context "tables_without_deprecation" do
7
+
8
+ let(:connection) { ActiveRecord::Base.connection }
9
+
10
+ around(:each) do |example|
11
+ begin
12
+ connection.create_table :t1, force: true
13
+ connection.create_table :t2, force: true
14
+ example.run
15
+ ensure
16
+ connection.drop_table :t1, if_exists: true
17
+ connection.drop_table :t2, if_exists: true
18
+ end
19
+ end
20
+
21
+ it "does not create deprecation" do
22
+ expect_not_deprecated {
23
+ connection.tables_without_deprecation
24
+ }
25
+ end
26
+
27
+ it "lists all tables" do
28
+ expect(connection.tables_without_deprecation).to match_array %w{t1 t2}
29
+ end
30
+ end
31
+ end
32
+
@@ -0,0 +1,31 @@
1
+ # encoding: utf-8
2
+ require 'spec_helper'
3
+
4
+ describe ActiveRecord::Migration do
5
+
6
+ let(:connection) { ActiveRecord::Base.connection }
7
+
8
+ it "does not create deprecation" do
9
+ expect_not_deprecated {
10
+ Class.new ActiveRecord::Migration.latest_version do
11
+ define_method(:up) do
12
+ create_table :foo
13
+ end
14
+ end
15
+ }
16
+ end
17
+
18
+ it "works with the latest migration object version" do
19
+ ActiveRecord::Migration.suppress_messages do
20
+ begin
21
+ migration = Class.new ::ActiveRecord::Migration.latest_version do
22
+ create_table :newtable, :force => true
23
+ end
24
+ migration.migrate(:up)
25
+ expect(connection.tables_without_deprecation).to include 'newtable'
26
+ ensure
27
+ connection.drop_table :newtable, if_exists: true
28
+ end
29
+ end
30
+ end
31
+ end
@@ -0,0 +1,17 @@
1
+ require 'simplecov'
2
+ require 'simplecov-gem-profile'
3
+ SimpleCov.start "gem"
4
+
5
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
6
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
7
+
8
+ require 'rspec'
9
+ require 'active_record'
10
+ require 'schema_plus_compatibility'
11
+ require 'schema_dev/rspec'
12
+
13
+ SchemaDev::Rspec.setup
14
+
15
+ Dir[File.dirname(__FILE__) + "/support/**/*.rb"].each {|f| require f}
16
+
17
+ SimpleCov.command_name "[ruby#{RUBY_VERSION}-activerecord#{::ActiveRecord.version}-#{ActiveRecord::Base.connection.adapter_name}]"
@@ -0,0 +1,9 @@
1
+ def expect_not_deprecated(&block)
2
+ begin
3
+ save_behavior = ActiveSupport::Deprecation.behavior
4
+ ActiveSupport::Deprecation.behavior = :raise
5
+ expect { yield }.not_to raise_error
6
+ ensure
7
+ ActiveSupport::Deprecation.behavior = save_behavior
8
+ end
9
+ end
metadata ADDED
@@ -0,0 +1,194 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: schema_plus_compatibility
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - ronen barzel
8
+ - boaz yaniv
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2016-09-01 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: activerecord
16
+ requirement: !ruby/object:Gem::Requirement
17
+ requirements:
18
+ - - ">="
19
+ - !ruby/object:Gem::Version
20
+ version: '4.2'
21
+ - - "<"
22
+ - !ruby/object:Gem::Version
23
+ version: '5.1'
24
+ type: :runtime
25
+ prerelease: false
26
+ version_requirements: !ruby/object:Gem::Requirement
27
+ requirements:
28
+ - - ">="
29
+ - !ruby/object:Gem::Version
30
+ version: '4.2'
31
+ - - "<"
32
+ - !ruby/object:Gem::Version
33
+ version: '5.1'
34
+ - !ruby/object:Gem::Dependency
35
+ name: schema_monkey
36
+ requirement: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '2.1'
41
+ type: :runtime
42
+ prerelease: false
43
+ version_requirements: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '2.1'
48
+ - !ruby/object:Gem::Dependency
49
+ name: bundler
50
+ requirement: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '1.7'
55
+ type: :development
56
+ prerelease: false
57
+ version_requirements: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '1.7'
62
+ - !ruby/object:Gem::Dependency
63
+ name: rake
64
+ requirement: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '10.0'
69
+ type: :development
70
+ prerelease: false
71
+ version_requirements: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '10.0'
76
+ - !ruby/object:Gem::Dependency
77
+ name: rspec
78
+ requirement: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '3.0'
83
+ type: :development
84
+ prerelease: false
85
+ version_requirements: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '3.0'
90
+ - !ruby/object:Gem::Dependency
91
+ name: schema_dev
92
+ requirement: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '3.5'
97
+ type: :development
98
+ prerelease: false
99
+ version_requirements: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: '3.5'
104
+ - !ruby/object:Gem::Dependency
105
+ name: simplecov
106
+ requirement: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ type: :development
112
+ prerelease: false
113
+ version_requirements: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ - !ruby/object:Gem::Dependency
119
+ name: simplecov-gem-profile
120
+ requirement: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ type: :development
126
+ prerelease: false
127
+ version_requirements: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ">="
130
+ - !ruby/object:Gem::Version
131
+ version: '0'
132
+ description: Compatibility helpers for the SchemaPlus family of gems
133
+ email:
134
+ - ronen@barzel.org
135
+ - boazyan@gmail.com
136
+ executables: []
137
+ extensions: []
138
+ extra_rdoc_files: []
139
+ files:
140
+ - ".gitignore"
141
+ - ".travis.yml"
142
+ - Gemfile
143
+ - LICENSE.txt
144
+ - README.md
145
+ - Rakefile
146
+ - gemfiles/Gemfile.base
147
+ - gemfiles/activerecord-4.2/Gemfile.base
148
+ - gemfiles/activerecord-4.2/Gemfile.mysql2
149
+ - gemfiles/activerecord-4.2/Gemfile.postgresql
150
+ - gemfiles/activerecord-4.2/Gemfile.sqlite3
151
+ - gemfiles/activerecord-5.0/Gemfile.base
152
+ - gemfiles/activerecord-5.0/Gemfile.mysql2
153
+ - gemfiles/activerecord-5.0/Gemfile.postgresql
154
+ - gemfiles/activerecord-5.0/Gemfile.sqlite3
155
+ - lib/schema_plus/compatibility.rb
156
+ - lib/schema_plus/compatibility/active_record/connection_adapters/abstract_adapter.rb
157
+ - lib/schema_plus/compatibility/active_record/migration.rb
158
+ - lib/schema_plus/compatibility/version.rb
159
+ - lib/schema_plus_compatibility.rb
160
+ - schema_dev.yml
161
+ - schema_plus_compatibility.gemspec
162
+ - spec/abstract_adapter_spec.rb
163
+ - spec/migration_spec.rb
164
+ - spec/spec_helper.rb
165
+ - spec/support/expectations.rb
166
+ homepage: https://github.com/SchemaPlus/schema_plus_compatibility
167
+ licenses:
168
+ - MIT
169
+ metadata: {}
170
+ post_install_message:
171
+ rdoc_options: []
172
+ require_paths:
173
+ - lib
174
+ required_ruby_version: !ruby/object:Gem::Requirement
175
+ requirements:
176
+ - - ">="
177
+ - !ruby/object:Gem::Version
178
+ version: '0'
179
+ required_rubygems_version: !ruby/object:Gem::Requirement
180
+ requirements:
181
+ - - ">="
182
+ - !ruby/object:Gem::Version
183
+ version: '0'
184
+ requirements: []
185
+ rubyforge_project:
186
+ rubygems_version: 2.5.1
187
+ signing_key:
188
+ specification_version: 4
189
+ summary: Compatibility helpers for the SchemaPlus family of gems
190
+ test_files:
191
+ - spec/abstract_adapter_spec.rb
192
+ - spec/migration_spec.rb
193
+ - spec/spec_helper.rb
194
+ - spec/support/expectations.rb