From 673a5644ace7a0cdb814f68026224ff843ccb221 Mon Sep 17 00:00:00 2001 From: Justin Coyne Date: Fri, 5 May 2017 10:23:59 -0500 Subject: Allow capybara minor releases Capybara 2.14.0 was released. Loosen the tight constraint in the generated Gemfile, so that Rails applications can take advantage of the new version --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Gemfile') diff --git a/Gemfile b/Gemfile index 75a917e9cf..df25abe65b 100644 --- a/Gemfile +++ b/Gemfile @@ -16,7 +16,7 @@ gem "rake", ">= 11.1" # be loaded after loading the test library. gem "mocha", "~> 0.14", require: false -gem "capybara", "~> 2.13.0" +gem "capybara", "~> 2.13" gem "rack-cache", "~> 1.2" gem "jquery-rails" -- cgit v1.2.3 From 45d7d80ea66654cc6cb44202eb2fecac04590691 Mon Sep 17 00:00:00 2001 From: Akira Matsuda Date: Fri, 19 May 2017 18:42:10 +0900 Subject: mathn has been gemified in ruby 2.5 --- Gemfile | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Gemfile') diff --git a/Gemfile b/Gemfile index df25abe65b..7f33a1226f 100644 --- a/Gemfile +++ b/Gemfile @@ -154,3 +154,7 @@ end gem "ibm_db" if ENV["IBM_DB"] gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby] gem "wdm", ">= 0.1.0", platforms: [:mingw, :mswin, :x64_mingw, :mswin64] + +platforms :ruby_25 do + gem "mathn" +end -- cgit v1.2.3 From 40bdbce191ad90dfea43dad51fac5c4726b89392 Mon Sep 17 00:00:00 2001 From: bogdanvlviv Date: Mon, 15 May 2017 14:17:28 +0000 Subject: Define path with __dir__ ".. with __dir__ we can restore order in the Universe." - by @fxn Related to 5b8738c2df003a96f0e490c43559747618d10f5f --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Gemfile') diff --git a/Gemfile b/Gemfile index 7f33a1226f..8d6a8427e4 100644 --- a/Gemfile +++ b/Gemfile @@ -90,7 +90,7 @@ group :cable do end # Add your own local bundler stuff. -local_gemfile = File.dirname(__FILE__) + "/.Gemfile" +local_gemfile = File.expand_path(".Gemfile", __dir__) instance_eval File.read local_gemfile if File.exist? local_gemfile group :test do -- cgit v1.2.3 From d93cd4357bacf32dab0f03a9a0abc4144fdcdf16 Mon Sep 17 00:00:00 2001 From: Matthew Draper Date: Sat, 27 May 2017 09:38:08 +0930 Subject: Switch to rb-inotify master https://github.com/guard/rb-inotify/pull/49 has been merged. --- Gemfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Gemfile') diff --git a/Gemfile b/Gemfile index 8d6a8427e4..8260533cb5 100644 --- a/Gemfile +++ b/Gemfile @@ -33,8 +33,8 @@ gem "bcrypt", "~> 3.1.11", require: false # sprockets. gem "uglifier", ">= 1.3.0", require: false -# FIXME: Remove this fork after https://github.com/nex3/rb-inotify/pull/49 is fixed. -gem "rb-inotify", github: "matthewd/rb-inotify", branch: "close-handling", require: false +# FIXME: Pending rb-inotify 0.9.9 release +gem "rb-inotify", github: "guard/rb-inotify", branch: "master", require: false # Explicitly avoid 1.x that doesn't support Ruby 2.4+ gem "json", ">= 2.0.0" -- cgit v1.2.3