-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #59 from IFTTT/update-ruby-to-2.6.5
Update and fix
- Loading branch information
Showing
14 changed files
with
58 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 |
---|---|---|
@@ -1 +1 @@ | ||
2.2.5 | ||
2.6.5 |
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,27 +1,34 @@ | ||
appraise "rails32" do | ||
gem "activerecord", "3.2.22" | ||
gem "activerecord", "3.2.22.5" | ||
gem "sqlite3", "1.3.13" | ||
end | ||
|
||
appraise "rails40" do | ||
gem "activerecord", "4.0.13" | ||
gem "sqlite3", "1.3.13" | ||
end | ||
|
||
appraise "rails41" do | ||
gem "activerecord", "4.1.12" | ||
gem "activerecord", "4.1.16" | ||
gem "sqlite3", "1.3.13" | ||
end | ||
|
||
appraise "rails42" do | ||
gem "activerecord", "4.2.10" | ||
gem "activerecord", "4.2.11.1" | ||
gem "sqlite3", "1.3.13" | ||
end | ||
|
||
appraise "rails50" do | ||
gem "activerecord", "5.0.7" | ||
gem "activerecord", "5.0.7.2" | ||
gem "sqlite3", "1.3.13" | ||
end | ||
|
||
appraise "rails51" do | ||
gem "activerecord", "5.1.6" | ||
gem "activerecord", "5.1.7" | ||
gem "sqlite3", "1.4.2" | ||
end | ||
|
||
appraise "rails52" do | ||
gem "activerecord", "5.2.0" | ||
gem "activerecord", "5.2.4.2" | ||
gem "sqlite3", "1.4.2" | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,5 +3,6 @@ | |
source "https://rubygems.org" | ||
|
||
gem "activerecord", "4.0.13" | ||
gem "sqlite3", "1.3.13" | ||
|
||
gemspec path: "../" |
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
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# https://stackoverflow.com/a/44286212 | ||
if ActiveRecord::VERSION::MAJOR < 5 | ||
module Arel | ||
module Visitors | ||
class DepthFirst < Arel::Visitors::Visitor | ||
alias :visit_Integer :terminal | ||
end | ||
|
||
class Dot < Arel::Visitors::Visitor | ||
alias :visit_Integer :visit_String | ||
end | ||
|
||
if ActiveRecord::VERSION::MAJOR == 4 && ActiveRecord::VERSION::MINOR >= 2 | ||
class ToSql < Arel::Visitors::Reduce | ||
alias :visit_Integer :literal | ||
end | ||
else | ||
class ToSql < Arel::Visitors::Visitor | ||
alias :visit_Integer :literal | ||
end | ||
end | ||
end | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
module Polo | ||
VERSION = "0.5.0" | ||
VERSION = "0.6.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