Skip to content

Commit

Permalink
Require Rails >= 5.2, and fix primary key for use bigint column type.
Browse files Browse the repository at this point in the history
  • Loading branch information
huacnlee committed Jun 3, 2020
1 parent fcf5b3a commit f84e83b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ PATH
exception-track (1.0.0)
exception_notification (~> 4)
kaminari (>= 0.15)
rails (>= 4.0)
rails (>= 5.2)

GEM
remote: https://rubygems.org/
Expand Down
2 changes: 1 addition & 1 deletion db/migrate/20170217023900_create_exception_track_logs.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# frozen_string_literal: true

class CreateExceptionTrackLogs < ActiveRecord::Migration[5.0]
class CreateExceptionTrackLogs < ActiveRecord::Migration[5.2]
def change
create_table :exception_tracks do |t|
t.string :title
Expand Down
2 changes: 1 addition & 1 deletion exception-track.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Gem::Specification.new do |s|

s.add_dependency "exception_notification", "~> 4"
s.add_dependency "kaminari", ">= 0.15"
s.add_dependency "rails", ">= 4.0"
s.add_dependency "rails", ">= 5.2"

s.add_development_dependency "mysql2"
end

0 comments on commit f84e83b

Please sign in to comment.