diff --git a/Gemfile b/Gemfile index 08c9584916..9892ba449a 100644 --- a/Gemfile +++ b/Gemfile @@ -1,6 +1,5 @@ source 'https://rubygems.org' -gem 'rake' gem 'rubocop', '0.71.0' group :test do diff --git a/Gemfile.lock b/Gemfile.lock index d7e088ae4b..eefd1c225d 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,6 @@ GEM parser (2.7.0.2) ast (~> 2.4.0) rainbow (3.0.0) - rake (13.0.1) rspec (3.9.0) rspec-core (~> 3.9.0) rspec-expectations (~> 3.9.0) @@ -50,7 +49,6 @@ PLATFORMS ruby DEPENDENCIES - rake rspec rubocop (= 0.71.0) simplecov diff --git a/Rakefile b/Rakefile deleted file mode 100644 index f2d77e4840..0000000000 --- a/Rakefile +++ /dev/null @@ -1,5 +0,0 @@ -require 'rspec/core/rake_task' - -RSpec::Core::RakeTask.new :spec - -task default: [:spec]