diff options
author | Yasuo Honda <yasuo.honda@gmail.com> | 2018-01-07 23:39:35 +0000 |
---|---|---|
committer | Yasuo Honda <yasuo.honda@gmail.com> | 2018-01-07 23:47:51 +0000 |
commit | f4477d631f19e7a9e09f77062a0992121d0bca16 (patch) | |
tree | 6969630a79fb8599405a374facaeaef205ecbeca | |
parent | f870164839d4bca4795342f179bd4a581deb5ac7 (diff) | |
download | rails-f4477d631f19e7a9e09f77062a0992121d0bca16.tar.gz rails-f4477d631f19e7a9e09f77062a0992121d0bca16.tar.bz2 rails-f4477d631f19e7a9e09f77062a0992121d0bca16.zip |
require 'date' to address for Ruby 2.5
Address #517
-rw-r--r-- | test/support/fake_record.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/support/fake_record.rb b/test/support/fake_record.rb index 03116ff2ee..75ac1e072f 100644 --- a/test/support/fake_record.rb +++ b/test/support/fake_record.rb @@ -1,4 +1,6 @@ # frozen_string_literal: true + +require 'date' module FakeRecord class Column < Struct.new(:name, :type) end |