From a5af3826944938ae539f2aa3b8107b4dc88afad2 Mon Sep 17 00:00:00 2001 From: Ed Jones Date: Thu, 29 Sep 2016 20:17:48 +0100 Subject: [PATCH] Amend gemspec to allow Rails 5 support. Resolves #392 --- README.md | 3 +++ her.gemspec | 4 ++-- lib/her/version.rb | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 23b1c8f0..45f7cde4 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,9 @@ # Maintenance Update 29th Sept 2016 Hi folks, [@edtjones](https://github.com/edtjones) here. RĂ©mi has handed me the keys to Her and [@foxpaul](https://github.com/foxpaul) and I will be trying to do the library justice with the help of the community. There's loads to do; we'll get in touch with everyone who's raised a PR as soon as possible and figure out a plan of action. +# Rails 5 support +If you need Rails 5 support, version 0.8.2 is for you! +

Her diff --git a/her.gemspec b/her.gemspec index f41d14ff..03de304e 100644 --- a/her.gemspec +++ b/her.gemspec @@ -23,8 +23,8 @@ Gem::Specification.new do |s| s.add_development_dependency "fivemat", "~> 1.2" s.add_development_dependency "json", "~> 1.8" - s.add_runtime_dependency "activemodel", ">= 3.0.0", "<= 4.3.0" - s.add_runtime_dependency "activesupport", ">= 3.0.0", "<= 4.3.0" + s.add_runtime_dependency "activemodel", ">= 3.0.0", "<= 6.0.0" + s.add_runtime_dependency "activesupport", ">= 3.0.0", "<= 6.0.0" s.add_runtime_dependency "faraday", ">= 0.8", "< 1.0" s.add_runtime_dependency "multi_json", "~> 1.7" end diff --git a/lib/her/version.rb b/lib/her/version.rb index 6e0e1d3f..df21bde7 100644 --- a/lib/her/version.rb +++ b/lib/her/version.rb @@ -1,3 +1,3 @@ module Her - VERSION = "0.8.1" + VERSION = "0.8.2" end