From b45f575ffeb5a1835eef60f2a48ea4c3ffb71276 Mon Sep 17 00:00:00 2001 From: Jordon Bedwell Date: Tue, 26 Apr 2016 19:19:53 -0500 Subject: [PATCH] Move to the Rubocop Gem, they've 2.3+ support and TargetVersion deployed now. Previously we relied on the Git version of Rubocop so that we could get 2.3+ and TargetVersion support in our .rubocop.yml, they have since updated stable and made this available to the general public. --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index afb4513b..2d5e86df 100644 --- a/Gemfile +++ b/Gemfile @@ -4,7 +4,7 @@ gemspec :name => "jekyll" gem "rake", "~> 11.0" group :development do gem "launchy", "~> 2.3" - gem "rubocop", :branch => :master, :github => "bbatsov/rubocop" + gem "rubocop" gem "pry" unless RUBY_ENGINE == "jruby"