From e64ae722d18a5a8bc2d8ed40b0c6e812ec0c7709 Mon Sep 17 00:00:00 2001 From: Kurt Mueller Date: Mon, 30 Sep 2019 16:28:51 -0400 Subject: [PATCH 1/2] Update activesupport to 6.0 --- Gemfile.activesupport51 | 4 ---- time_difference.gemspec | 4 ++-- 2 files changed, 2 insertions(+), 6 deletions(-) delete mode 100644 Gemfile.activesupport51 diff --git a/Gemfile.activesupport51 b/Gemfile.activesupport51 deleted file mode 100644 index 65b4cf0..0000000 --- a/Gemfile.activesupport51 +++ /dev/null @@ -1,4 +0,0 @@ -source "https://rubygems.org" -gemspec - -gem 'activesupport', '~> 5.1' \ No newline at end of file diff --git a/time_difference.gemspec b/time_difference.gemspec index 5ece9c4..6938ad4 100644 --- a/time_difference.gemspec +++ b/time_difference.gemspec @@ -11,10 +11,10 @@ Gem::Specification.new do |gem| gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) gem.name = "time_difference" gem.require_paths = ["lib"] - gem.version = "0.7.0" + gem.version = "1.0.0" gem.license = 'MIT' - gem.add_runtime_dependency('activesupport', '~> 5.1') + gem.add_runtime_dependency('activesupport', '~> 6.0') gem.add_development_dependency('rspec', '~> 3.7.0') gem.add_development_dependency('rake') From 2ee691c391bf6c617c3718b695ddc0026b1dc743 Mon Sep 17 00:00:00 2001 From: Kurt Mueller Date: Mon, 30 Sep 2019 16:42:56 -0400 Subject: [PATCH 2/2] Bump up minimum required rubies --- .travis.yml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6beb99a..2c9f17a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,13 +1,10 @@ language: ruby rvm: - - 2.2 - - 2.3 - - 2.4 - - jruby-19mode # JRuby in 1.9 mode + - 2.5 + - 2.6 + - jruby-9.2.6.0 # uncomment this line if your project needs to run something other than `rake`: script: bundle exec rspec spec -gemfile: - - Gemfile.activesupport51 before_install: - - gem install bundler \ No newline at end of file + - gem install bundler