From e8bad2935b6b04e10ad66c6b6ab5f9f1724250cd Mon Sep 17 00:00:00 2001 From: Ben Klang Date: Sat, 13 Feb 2016 08:56:22 -0500 Subject: [PATCH] Modernize Ruby suite * Drop support for Ruby < 2.0 * Drop support for Rubinius * Update to JRuby 9000 --- .travis.yml | 10 +++++----- CHANGELOG.md | 1 + 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 3d5b074..99c6337 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,14 +1,14 @@ language: ruby rvm: - - 1.9.3 - 2.0.0 - 2.1.0 - - jruby - - rbx-2.1.1 + - 2.2.0 + - jruby-9.0.1.0 + - jruby-head - ruby-head matrix: allow_failures: - - rvm: rbx-2.1.1 + - rvm: jruby-head - rvm: ruby-head notifications: - irc: "irc.freenode.org#adhearsion" \ No newline at end of file + irc: "irc.freenode.org#adhearsion" diff --git a/CHANGELOG.md b/CHANGELOG.md index 59d9d62..a390c77 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,5 @@ # develop + * CHANGE: Drop support for Ruby < 2.0 * BUG - Listening to new messages needs to set the `new_or_saved` metadata. Otherwise, after visiting saved messages, the status is always `:saved` * FEATURE - Refactor voicemail storage (backward incompatible change) * Pass storage instance in metadata to all controllers