From 17c296ecdfc0e57996e122d89af2b892e6c9c8f9 Mon Sep 17 00:00:00 2001 From: Max Shenfield Date: Sat, 23 Sep 2017 15:20:53 -0500 Subject: [PATCH] Issue 58: Bump ruby version to 2.4.2 Closes #58. 2.4.2 is the latest version of ruby [supported by Heroku](https://devcenter.heroku.com/articles/ruby-support#supported-runtimes). The current version is causing deploys of this app to Heroku to fail. I wasn't able to test the changes locally because of a [known issue](https://github.com/flori/json/issues/286) building json 1.8.3, a dependency of the "twitter" gem. I'm using the build process on Heroku and Travis as a barometer of "this works". --- .travis.yml | 2 +- Gemfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9c85845..d0f499c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,5 @@ language: ruby rvm: - - ruby-2.1.2 + - ruby-2.4.2 notifications: webhooks: http://project-monitor.codeforamerica.org/projects/d702edae-5a33-478b-9d08-acc4a7826533/status diff --git a/Gemfile b/Gemfile index 1a04211..afdb4e4 100644 --- a/Gemfile +++ b/Gemfile @@ -1,6 +1,6 @@ source 'https://rubygems.org' -ruby '2.1.2' +ruby '2.4.2' gem 'twitter' gem 'dotenv'