Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ gemfile:
- gemfiles/rails_5.1.gemfile
- gemfiles/rails_5.2.gemfile
- gemfiles/rails_6.0.gemfile
- gemfiles/rails_6.1.gemfile
rvm:
- 2.5.6
- 2.6.4
Expand Down
5 changes: 5 additions & 0 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,8 @@ appraise 'rails-6.0' do
gem 'rails', '6.0.0'
gem 'sqlite3', '1.4.1'
end

appraise 'rails-6.1' do
gem 'rails', '6.1'
gem 'sqlite3', '1.4.1'
end
42 changes: 24 additions & 18 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ PATH
remote: .
specs:
zapier_rest_hooks (0.0.3)
rails (>= 5.1.0, < 6.1.0)
rails (>= 5.1.0, < 6.2.0)
rest-client (~> 2.0)

GEM
Expand Down Expand Up @@ -85,10 +85,10 @@ GEM
factory_bot (~> 4.11.1)
railties (>= 3.0.0)
fakeweb-fi (1.3.1)
globalid (0.4.2)
activesupport (>= 4.2.0)
globalid (1.0.0)
activesupport (>= 5.0)
http-accept (1.7.0)
http-cookie (1.0.3)
http-cookie (1.0.5)
domain_name (~> 0.5)
i18n (1.8.5)
concurrent-ruby (~> 1.0)
Expand All @@ -102,20 +102,25 @@ GEM
marcel (0.3.3)
mimemagic (~> 0.3.2)
method_source (1.0.0)
mime-types (3.3)
mime-types (3.4.1)
mime-types-data (~> 3.2015)
mime-types-data (3.2019.0904)
mimemagic (0.3.5)
mini_mime (1.0.2)
mini_portile2 (2.4.0)
mime-types-data (3.2022.0105)
mimemagic (0.3.10)
nokogiri (~> 1)
rake
mini_mime (1.1.2)
mini_portile2 (2.5.0)
minitest (5.14.2)
netrc (0.11.0)
nio4r (2.5.4)
nokogiri (1.10.10)
mini_portile2 (~> 2.4.0)
nio4r (2.5.8)
nokogiri (1.13.6)
mini_portile2 (~> 2.5.0)
nokogiri (1.13.6-arm64-darwin)
racc (~> 1.4)
parallel (1.17.0)
parser (2.6.4.1)
ast (~> 2.4.0)
racc (1.6.0)
rack (2.2.3)
rack-test (1.1.0)
rack (>= 1.0, < 3)
Expand Down Expand Up @@ -187,12 +192,12 @@ GEM
json (>= 1.8, < 3)
simplecov-html (~> 0.10.0)
simplecov-html (0.10.2)
sprockets (4.0.2)
sprockets (4.0.3)
concurrent-ruby (~> 1.0)
rack (> 1, < 3)
sprockets-rails (3.2.2)
actionpack (>= 4.0)
activesupport (>= 4.0)
sprockets-rails (3.4.2)
actionpack (>= 5.2)
activesupport (>= 5.2)
sprockets (>= 3.0.0)
sqlite3 (1.4.1)
thor (1.0.1)
Expand All @@ -201,14 +206,15 @@ GEM
thread_safe (~> 0.1)
unf (0.1.4)
unf_ext
unf_ext (0.0.7.6)
unf_ext (0.0.8.2)
unicode-display_width (1.6.0)
websocket-driver (0.7.3)
websocket-driver (0.7.5)
websocket-extensions (>= 0.1.0)
websocket-extensions (0.1.5)
zeitwerk (2.4.2)

PLATFORMS
arm64-darwin-21
ruby

DEPENDENCIES
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# frozen_string_literal: true

class CreateZapierRestHooksHooks < ActiveRecord::Migration[6.0]
class CreateZapierRestHooksHooks < ActiveRecord::Migration[6.1]
def change
create_table :zapier_rest_hooks_hooks do |t|
t.string :event_name
Expand Down
2 changes: 1 addition & 1 deletion db/migrate/20160614204418_add_owner_to_hooks.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# frozen_string_literal: true

class AddOwnerToHooks < ActiveRecord::Migration[6.0]
class AddOwnerToHooks < ActiveRecord::Migration[6.1]
def change
add_column :zapier_rest_hooks_hooks, :owner_id, :string, default: 0
add_column :zapier_rest_hooks_hooks, :owner_class_name, :string, default: 'Struct::ZapierApp'
Expand Down
10 changes: 4 additions & 6 deletions gemfiles/rails_5.1.gemfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
# frozen_string_literal: true

# This file was generated by Appraisal

source 'https://rubygems.org'
source "https://rubygems.org"

gem 'rails', '5.1.7'
gem 'sqlite3', '1.3.11'
gem "rails", "5.1.7"
gem "sqlite3", "1.3.11"

gemspec path: '../'
gemspec path: "../"
11 changes: 6 additions & 5 deletions gemfiles/rails_5.1.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ PATH
remote: ..
specs:
zapier_rest_hooks (0.0.3)
rails (>= 5.1.0, < 6.1.0)
rails (>= 5.1.0, < 6.2.0)
rest-client (~> 2.0)

GEM
Expand Down Expand Up @@ -71,7 +71,7 @@ GEM
globalid (0.4.2)
activesupport (>= 4.2.0)
http-accept (1.7.0)
http-cookie (1.0.3)
http-cookie (1.0.5)
domain_name (~> 0.5)
i18n (1.6.0)
concurrent-ruby (~> 1.0)
Expand All @@ -83,9 +83,9 @@ GEM
mail (2.7.1)
mini_mime (>= 0.1.1)
method_source (0.9.2)
mime-types (3.3)
mime-types (3.4.1)
mime-types-data (~> 3.2015)
mime-types-data (3.2019.0904)
mime-types-data (3.2022.0105)
mini_mime (1.0.2)
mini_portile2 (2.4.0)
minitest (5.11.3)
Expand Down Expand Up @@ -178,13 +178,14 @@ GEM
thread_safe (~> 0.1)
unf (0.1.4)
unf_ext
unf_ext (0.0.7.6)
unf_ext (0.0.8.2)
unicode-display_width (1.6.0)
websocket-driver (0.6.5)
websocket-extensions (>= 0.1.0)
websocket-extensions (0.1.4)

PLATFORMS
arm64-darwin-21
ruby

DEPENDENCIES
Expand Down
10 changes: 4 additions & 6 deletions gemfiles/rails_5.2.gemfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
# frozen_string_literal: true

# This file was generated by Appraisal

source 'https://rubygems.org'
source "https://rubygems.org"

gem 'rails', '5.2.3'
gem 'sqlite3', '1.3.11'
gem "rails", "5.2.3"
gem "sqlite3", "1.3.11"

gemspec path: '../'
gemspec path: "../"
20 changes: 13 additions & 7 deletions gemfiles/rails_5.2.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ PATH
remote: ..
specs:
zapier_rest_hooks (0.0.3)
rails (>= 5.1.0, < 6.1.0)
rails (>= 5.1.0, < 6.2.0)
rest-client (~> 2.0)

GEM
Expand Down Expand Up @@ -75,7 +75,7 @@ GEM
globalid (0.4.2)
activesupport (>= 4.2.0)
http-accept (1.7.0)
http-cookie (1.0.3)
http-cookie (1.0.5)
domain_name (~> 0.5)
i18n (1.6.0)
concurrent-ruby (~> 1.0)
Expand All @@ -89,20 +89,25 @@ GEM
marcel (0.3.3)
mimemagic (~> 0.3.2)
method_source (0.9.2)
mime-types (3.3)
mime-types (3.4.1)
mime-types-data (~> 3.2015)
mime-types-data (3.2019.0904)
mimemagic (0.3.3)
mime-types-data (3.2022.0105)
mimemagic (0.3.10)
nokogiri (~> 1)
rake
mini_mime (1.0.2)
mini_portile2 (2.4.0)
minitest (5.11.3)
netrc (0.11.0)
nio4r (2.5.1)
nokogiri (1.10.4)
nokogiri (1.11.2)
mini_portile2 (~> 2.4.0)
nokogiri (1.11.2-arm64-darwin)
racc (~> 1.4)
parallel (1.17.0)
parser (2.6.4.1)
ast (~> 2.4.0)
racc (1.6.0)
rack (2.0.7)
rack-test (1.1.0)
rack (>= 1.0, < 3)
Expand Down Expand Up @@ -186,13 +191,14 @@ GEM
thread_safe (~> 0.1)
unf (0.1.4)
unf_ext
unf_ext (0.0.7.6)
unf_ext (0.0.8.2)
unicode-display_width (1.6.0)
websocket-driver (0.7.1)
websocket-extensions (>= 0.1.0)
websocket-extensions (0.1.4)

PLATFORMS
arm64-darwin-21
ruby

DEPENDENCIES
Expand Down
10 changes: 4 additions & 6 deletions gemfiles/rails_6.0.gemfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
# frozen_string_literal: true

# This file was generated by Appraisal

source 'https://rubygems.org'
source "https://rubygems.org"

gem 'rails', '6.0.0'
gem 'sqlite3', '1.4.1'
gem "rails", "6.0.0"
gem "sqlite3", "1.4.1"

gemspec path: '../'
gemspec path: "../"
20 changes: 13 additions & 7 deletions gemfiles/rails_6.0.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ PATH
remote: ..
specs:
zapier_rest_hooks (0.0.3)
rails (>= 5.1.0, < 6.1.0)
rails (>= 5.1.0, < 6.2.0)
rest-client (~> 2.0)

GEM
Expand Down Expand Up @@ -88,7 +88,7 @@ GEM
globalid (0.4.2)
activesupport (>= 4.2.0)
http-accept (1.7.0)
http-cookie (1.0.3)
http-cookie (1.0.5)
domain_name (~> 0.5)
i18n (1.6.0)
concurrent-ruby (~> 1.0)
Expand All @@ -102,20 +102,25 @@ GEM
marcel (0.3.3)
mimemagic (~> 0.3.2)
method_source (0.9.2)
mime-types (3.3)
mime-types (3.4.1)
mime-types-data (~> 3.2015)
mime-types-data (3.2019.0904)
mimemagic (0.3.3)
mime-types-data (3.2022.0105)
mimemagic (0.3.10)
nokogiri (~> 1)
rake
mini_mime (1.0.2)
mini_portile2 (2.4.0)
minitest (5.11.3)
netrc (0.11.0)
nio4r (2.5.1)
nokogiri (1.10.4)
nokogiri (1.11.2)
mini_portile2 (~> 2.4.0)
nokogiri (1.11.2-arm64-darwin)
racc (~> 1.4)
parallel (1.17.0)
parser (2.6.4.1)
ast (~> 2.4.0)
racc (1.6.0)
rack (2.0.7)
rack-test (1.1.0)
rack (>= 1.0, < 3)
Expand Down Expand Up @@ -201,14 +206,15 @@ GEM
thread_safe (~> 0.1)
unf (0.1.4)
unf_ext
unf_ext (0.0.7.6)
unf_ext (0.0.8.2)
unicode-display_width (1.6.0)
websocket-driver (0.7.1)
websocket-extensions (>= 0.1.0)
websocket-extensions (0.1.4)
zeitwerk (2.1.10)

PLATFORMS
arm64-darwin-21
ruby

DEPENDENCIES
Expand Down
8 changes: 8 additions & 0 deletions gemfiles/rails_6.1.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "rails", "6.1"
gem "sqlite3", "1.4.1"

gemspec path: "../"
Loading