From 967c3c63e62c7d7ac2fd2c97fee348f74d2b81eb Mon Sep 17 00:00:00 2001 From: Pirate Praveen Arimbrathodiyil Date: Thu, 23 Aug 2018 21:52:21 +0530 Subject: [PATCH 1/3] relax dependency on activesupport Tests are running fine with activesupport 5.2. Fixes #20 --- task_list.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/task_list.gemspec b/task_list.gemspec index 4a161d9..9a5a339 100644 --- a/task_list.gemspec +++ b/task_list.gemspec @@ -18,7 +18,7 @@ Gem::Specification.new do |gem| gem.required_ruby_version = ">= 2.0.0" - gem.add_dependency "activesupport", "~> 4.0" if RUBY_VERSION < '2.2.2' + gem.add_dependency "activesupport", ">= 4.0" if RUBY_VERSION < '2.2.2' gem.add_dependency "nokogiri", "~> 1.6.0" if RUBY_VERSION < '2.1.0' gem.add_dependency "html-pipeline" From 59ca416262240b1e909521e458618df4f73eb790 Mon Sep 17 00:00:00 2001 From: Pirate Praveen Arimbrathodiyil Date: Fri, 24 Aug 2018 21:14:10 +0530 Subject: [PATCH 2/3] bump travis node version to 8 nodejs 7 is end of life --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 0cf6108..5df003d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,6 +9,6 @@ rvm: - 2.1 - 2.2 env: - - TRAVIS_NODE_VERSION="7" + - TRAVIS_NODE_VERSION="8" notifications: email: false From 4655500aad1264a2154759a45869d194fef6b8f7 Mon Sep 17 00:00:00 2001 From: Pirate Praveen Arimbrathodiyil Date: Sat, 25 Aug 2018 10:05:56 +0530 Subject: [PATCH 3/3] Switch to phantomjs-prebuilt Phantomjs is now phantomjs-prebuilt --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 00ea877..3733665 100644 --- a/package.json +++ b/package.json @@ -41,7 +41,7 @@ "coffee-script": "^1.12.5", "coffeelint": "^1.16.0", "node-sass": "^4.5.2", - "phantomjs": "^1.9.19", + "phantomjs-prebuilt": "^2.1.16", "webpack": "^2.5.1" } }