From 073eb99f8755b5a1d8e68dd95195e59b88a83213 Mon Sep 17 00:00:00 2001 From: fatkodima Date: Thu, 20 Jun 2024 17:06:35 +0300 Subject: [PATCH] Remove unused files --- .rubocop.yml | 5 ----- Gemfile | 2 -- Guardfile | 9 --------- test/test_stat_hash.rb | 7 ------- 4 files changed, 23 deletions(-) delete mode 100644 .rubocop.yml delete mode 100644 Guardfile delete mode 100644 test/test_stat_hash.rb diff --git a/.rubocop.yml b/.rubocop.yml deleted file mode 100644 index e4f9bb6..0000000 --- a/.rubocop.yml +++ /dev/null @@ -1,5 +0,0 @@ -inherit_from: https://raw.githubusercontent.com/discourse/discourse/master/.rubocop.yml - -AllCops: - TargetRubyVersion: 2.3 - diff --git a/Gemfile b/Gemfile index 0893b7f..88b33a2 100644 --- a/Gemfile +++ b/Gemfile @@ -8,7 +8,5 @@ gemspec group :development, :test do gem 'rake', require: false gem 'minitest', require: false - gem 'guard', platforms: [:mri_22, :mri_23] - gem 'guard-minitest', platforms: [:mri_22, :mri_23] gem 'longhorn', path: 'test/fixtures/gems/longhorn-0.1.0' end diff --git a/Guardfile b/Guardfile deleted file mode 100644 index 04d50d6..0000000 --- a/Guardfile +++ /dev/null @@ -1,9 +0,0 @@ -# frozen_string_literal: true - -guard :minitest do - # with Minitest::Unit - watch(%r{^test/(.*)\/?test_(.*)\.rb$}) - watch(%r{^lib/(.*/)?([^/]+)\.rb$}) { |m| "test/test_#{m[2]}.rb" } - watch(%r{^test/test_helper\.rb$}) { 'test' } - -end diff --git a/test/test_stat_hash.rb b/test/test_stat_hash.rb deleted file mode 100644 index 8d41b9c..0000000 --- a/test/test_stat_hash.rb +++ /dev/null @@ -1,7 +0,0 @@ -# frozen_string_literal: true - -require_relative 'test_helper' - -class TestStatHash < Minitest::Test - -end