rails_compatibility 0.0.5 → 0.0.6
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.
- checksums.yaml +4 -4
- data/.github/workflows/ruby.yml +62 -62
- data/.gitignore +10 -10
- data/.rubocop.yml +1227 -1227
- data/CHANGELOG.md +21 -17
- data/CODE_OF_CONDUCT.md +48 -48
- data/LICENSE +21 -21
- data/LICENSE.txt +21 -21
- data/README.md +46 -46
- data/bin/setup +8 -8
- data/gemfiles/3.2.gemfile +10 -10
- data/gemfiles/4.2.gemfile +10 -10
- data/gemfiles/5.0.gemfile +10 -10
- data/gemfiles/5.1.gemfile +10 -10
- data/gemfiles/5.2.gemfile +10 -10
- data/gemfiles/6.0.gemfile +10 -10
- data/gemfiles/6.1.gemfile +11 -11
- data/lib/rails_compatibility.rb +1 -1
- data/lib/rails_compatibility/active_record.rb +13 -13
- data/lib/rails_compatibility/attribute_types.rb +20 -20
- data/lib/rails_compatibility/build_joins.rb +44 -44
- data/lib/rails_compatibility/construct_join_dependency.rb +36 -36
- data/lib/rails_compatibility/has_include.rb +20 -0
- data/lib/rails_compatibility/pick.rb +23 -23
- data/lib/rails_compatibility/unscope_where.rb +15 -15
- data/lib/rails_compatibility/version.rb +3 -3
- data/rails_compatibility.gemspec +44 -44
- metadata +7 -6
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rails_compatibility
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- khiav reoy
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-06-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -131,6 +131,7 @@ files:
|
|
131
131
|
- lib/rails_compatibility/attribute_types.rb
|
132
132
|
- lib/rails_compatibility/build_joins.rb
|
133
133
|
- lib/rails_compatibility/construct_join_dependency.rb
|
134
|
+
- lib/rails_compatibility/has_include.rb
|
134
135
|
- lib/rails_compatibility/pick.rb
|
135
136
|
- lib/rails_compatibility/unscope_where.rb
|
136
137
|
- lib/rails_compatibility/version.rb
|
@@ -144,7 +145,7 @@ metadata:
|
|
144
145
|
source_code_uri: https://github.com/khiav223577/rails_compatibility
|
145
146
|
documentation_uri: https://www.rubydoc.info/gems/rails_compatibility
|
146
147
|
bug_tracker_uri: https://github.com/khiav223577/rails_compatibility/issues
|
147
|
-
post_install_message:
|
148
|
+
post_install_message:
|
148
149
|
rdoc_options: []
|
149
150
|
require_paths:
|
150
151
|
- lib
|
@@ -159,8 +160,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
159
160
|
- !ruby/object:Gem::Version
|
160
161
|
version: '0'
|
161
162
|
requirements: []
|
162
|
-
rubygems_version: 3.
|
163
|
-
signing_key:
|
163
|
+
rubygems_version: 3.2.14
|
164
|
+
signing_key:
|
164
165
|
specification_version: 4
|
165
166
|
summary: Provides cross-rails methods for you to upgrade rails, backport features,
|
166
167
|
create easy-to-maintain gems, and so on.
|