-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:HornsAndHooves/pg_saurus into rai…
…ls_6_research
- Loading branch information
Showing
10 changed files
with
24 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,8 @@ spec/dummy/log/*.log | |
spec/dummy/tmp/ | ||
|
||
.idea | ||
.generators | ||
.rakeTasks | ||
|
||
TAGS | ||
ctags | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
module PgSaurus | ||
# Version of pg_saurus gem. | ||
VERSION = "4.1.0" | ||
VERSION = "4.3.0" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,16 +2,16 @@ | |
# DO NOT EDIT THIS FILE DIRECTLY | ||
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec' | ||
# -*- encoding: utf-8 -*- | ||
# stub: pg_saurus 4.1.0 ruby lib | ||
# stub: pg_saurus 4.3.0 ruby lib | ||
|
||
Gem::Specification.new do |s| | ||
s.name = "pg_saurus".freeze | ||
s.version = "4.1.0" | ||
s.version = "4.3.0" | ||
|
||
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version= | ||
s.require_paths = ["lib".freeze] | ||
s.authors = ["Potapov Sergey".freeze, "Arthur Shagall".freeze, "Artem Ignatyev".freeze, "Matt Dressel".freeze, "Bruce Burdick".freeze, "HornsAndHooves".freeze] | ||
s.date = "2020-01-31" | ||
s.date = "2021-09-22" | ||
s.description = "ActiveRecord extensions for PostgreSQL. Provides useful tools for schema, foreign_key, index, function, trigger, comment and extension manipulations in migrations.".freeze | ||
s.email = ["[email protected]".freeze, "[email protected]".freeze, "[email protected]".freeze, "[email protected]".freeze, "[email protected]".freeze] | ||
s.extra_rdoc_files = [ | ||
|
@@ -85,6 +85,7 @@ Gem::Specification.new do |s| | |
|
||
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then | ||
s.add_runtime_dependency(%q<pg>.freeze, [">= 0"]) | ||
s.add_runtime_dependency(%q<psych>.freeze, ["~> 3"]) | ||
s.add_runtime_dependency(%q<railties>.freeze, ["~> 6"]) | ||
s.add_runtime_dependency(%q<activemodel>.freeze, ["~> 6"]) | ||
s.add_runtime_dependency(%q<activerecord>.freeze, ["~> 6"]) | ||
|
@@ -99,6 +100,7 @@ Gem::Specification.new do |s| | |
s.add_development_dependency(%q<rubocop>.freeze, [">= 0"]) | ||
else | ||
s.add_dependency(%q<pg>.freeze, [">= 0"]) | ||
s.add_dependency(%q<psych>.freeze, ["~> 3"]) | ||
s.add_dependency(%q<railties>.freeze, ["~> 6"]) | ||
s.add_dependency(%q<activemodel>.freeze, ["~> 6"]) | ||
s.add_dependency(%q<activerecord>.freeze, ["~> 6"]) | ||
|
@@ -114,6 +116,7 @@ Gem::Specification.new do |s| | |
end | ||
else | ||
s.add_dependency(%q<pg>.freeze, [">= 0"]) | ||
s.add_dependency(%q<psych>.freeze, ["~> 3"]) | ||
s.add_dependency(%q<railties>.freeze, ["~> 6"]) | ||
s.add_dependency(%q<activemodel>.freeze, ["~> 6"]) | ||
s.add_dependency(%q<activerecord>.freeze, ["~> 6"]) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
spec/dummy/db/migrate/20190320025645_add_functional_index_with_longer_operator_string.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
class AddFunctionalIndexWithLongerOperatorString < ActiveRecord::Migration[5.2] | ||
def change | ||
add_index :pets, ["lower(name) DESC NULLS LAST"] | ||
add_index :pets, ["trim(lower(name)) DESC NULLS LAST"] | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters