Commits on Source (38)
-
Eduard Thamm authored
Update rubocop to match hound Adapt hound style to new rubocop version Add style config file for specs Exclude vendor/**/* Default for rubocop is to overwrite arrays. This happens here and leads to uncomfortable usage of rubocop locally. Update target version to minimum supported version Autoupdate rubocop settings using mry
-
Eduard Thamm authored
-
Eduard Thamm authored
-
Eduard Thamm authored
-
Eduard Thamm authored
-
Eduard Thamm authored
-
Eduard Thamm authored
-
Eduard Thamm authored
-
Eduard Thamm authored
-
Eduard Thamm authored
-
Eduard Thamm authored
If anyone is still using an 80 character long terminal to edit files on a regular basis, contact me.
-
Eduard Thamm authored
-
Eduard Thamm authored
Also exclude specs from blocklength and erroneously drop a version from CI -> fixed later Explicitly enable Metrics/LineLength cop Set dot position to leading Set Style/StringLiterals to single-quote This is the default value of the cop in newer versions of rubocop and it is an easy fix Exclude spec from Metrics/BlockLength DSLs and block length restraints usually do not work well together Drop unsupported version from CI Use single quotes in gemfile
-
Eduard Thamm authored
-
Eduard Thamm authored
-
Eduard Thamm authored
-
Eduard Thamm authored
-
Eduard Thamm authored
-
Eduard Thamm authored
-
Eduard Thamm authored
-
Eduard Thamm authored
-
Eduard Thamm authored
Get rid of rubocop warnings Remove superfluous config file
-
Eduard Thamm authored
Version is actually still supported Revert "Drop unsupported version from CI" This reverts commit 93dd1e132ffcd85ce323e32bbc463583103b7ad9. Fix 2.2.9 incompatibility This creates a performance hit but as this code is only test code, I deem this acceptable
-
Eduard Thamm authored
-
Eduard Thamm authored
-
Eduard Thamm authored
-
Eduard Thamm authored
-
Eduard Thamm authored
-
Eduard Thamm authored
NOOP commit because hound hangs.
-
Eduard Thamm authored
-
Rémy Coutable authored
Apply style guide to the specs
-
Chad Metcalf authored
-
Rémy Coutable authored
Co-Authored-By:
chadmetcalf <chadmetcalf@users.noreply.github.com>
-
Rémy Coutable authored
Pry 0.12.0 Deprecation warnings
-
Rémy Coutable authored
Signed-off-by:
Rémy Coutable <remy@rymai.me>
-
Rémy Coutable authored
Bump to 2.15.0
-
Scott Albertson authored
-
Rémy Coutable authored
Add a "Reviewed by Hound" badge
Showing
- .rubocop.yml 1 addition, 0 deletions.rubocop.yml
- .rubocop_todo.yml 2 additions, 2 deletions.rubocop_todo.yml
- Gemfile 10 additions, 8 deletionsGemfile
- README.md 1 addition, 1 deletionREADME.md
- config/Guardfile 1 addition, 1 deletionconfig/Guardfile
- features/support/env.rb 1 addition, 1 deletionfeatures/support/env.rb
- lib/guard/jobs/pry_wrapper.rb 10 additions, 2 deletionslib/guard/jobs/pry_wrapper.rb
- lib/guard/version.rb 1 addition, 1 deletionlib/guard/version.rb
- spec/lib/guard/bin_spec.rb 18 additions, 16 deletionsspec/lib/guard/bin_spec.rb
- spec/lib/guard/cli/environments/bundler_spec.rb 4 additions, 2 deletionsspec/lib/guard/cli/environments/bundler_spec.rb
- spec/lib/guard/cli/environments/evaluate_only_spec.rb 8 additions, 6 deletionsspec/lib/guard/cli/environments/evaluate_only_spec.rb
- spec/lib/guard/cli/environments/valid_spec.rb 23 additions, 21 deletionsspec/lib/guard/cli/environments/valid_spec.rb
- spec/lib/guard/cli_spec.rb 14 additions, 12 deletionsspec/lib/guard/cli_spec.rb
- spec/lib/guard/commander_spec.rb 11 additions, 9 deletionsspec/lib/guard/commander_spec.rb
- spec/lib/guard/commands/all_spec.rb 11 additions, 10 deletionsspec/lib/guard/commands/all_spec.rb
- spec/lib/guard/commands/change_spec.rb 7 additions, 6 deletionsspec/lib/guard/commands/change_spec.rb
- spec/lib/guard/commands/notification_spec.rb 4 additions, 2 deletionsspec/lib/guard/commands/notification_spec.rb
- spec/lib/guard/commands/pause_spec.rb 3 additions, 2 deletionsspec/lib/guard/commands/pause_spec.rb
- spec/lib/guard/commands/reload_spec.rb 10 additions, 8 deletionsspec/lib/guard/commands/reload_spec.rb
- spec/lib/guard/commands/scope_spec.rb 8 additions, 6 deletionsspec/lib/guard/commands/scope_spec.rb
# frozen_string_literal: true | ||
source "https://rubygems.org" | ||
gemspec unless ENV["USE_INSTALLED_GUARD"] == "1" | ||
Loading
| Loading
| @@ -15,13 +17,13 @@ group :development do |
# on HoundCI's side. | ||
# | ||
# See https://github.com/houndci/hound/issues/1250 | ||
gem "rubocop", "0.51.0", require: false | ||
gem "rubocop", "0.54.0", require: false | ||
gem "guard-rubocop", require: false | ||
gem "yard", require: false, platform: :mri | ||
gem "redcarpet", require: false, platform: :mri | ||
gem "guard-ronn", require: false, platform: :mri | ||
gem "redcarpet", require: false, platform: :mri | ||
gem "yard", require: false, platform: :mri | ||
# Used for release | ||
gem "gems", require: false, platform: :mri | ||
Loading
| Loading
| @@ -37,19 +39,19 @@ group :test do |
gem "guard-cucumber", "~> 2.1", require: false | ||
gem "guard-rspec", require: false | ||
gem "codeclimate-test-reporter", require: nil | ||
gem "rspec", ">= 3.0.0", require: false | ||
gem "aruba", "~> 0.9", require: false | ||
gem "codeclimate-test-reporter", require: nil | ||
gem "notiffany", ">= 0.0.6", require: false | ||
gem "rspec", ">= 3.0.0", require: false | ||
end | ||
# Needed for Travis | ||
# See http://docs.travis-ci.com/user/languages/ruby/#Rubinius | ||
# | ||
platforms :rbx do | ||
gem "racc" | ||
gem "rubysl", "~> 2.0" | ||
gem "psych" | ||
gem "json" | ||
gem "psych" | ||
gem "racc" | ||
gem "rubinius-coverage" | ||
gem "rubysl", "~> 2.0" | ||
end |