Skip to content

Commit

Permalink
➖ super_diff
Browse files Browse the repository at this point in the history
- doesn't work on Ruby 2.3
  • Loading branch information
pboling committed Sep 22, 2024
1 parent f84c664 commit 523ea2c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 21 deletions.
17 changes: 1 addition & 16 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,12 @@ GEM
specs:
ansi (1.5.0)
ast (2.4.2)
attr_extras (7.1.0)
backports (3.25.0)
byebug (11.1.3)
coderay (1.1.3)
concurrent-ruby (1.3.4)
diff-lcs (1.5.1)
diffy (3.4.2)
docile (1.4.1)
faker (3.4.2)
i18n (>= 1.8.11, < 2)
i18n (1.14.6)
concurrent-ruby (~> 1.0)
json (2.7.2)
kettle-soup-cover (1.0.4)
simplecov (~> 0.22)
Expand All @@ -35,14 +29,11 @@ GEM
language_server-protocol (3.17.0.3)
lint_roller (1.1.0)
method_source (1.1.0)
optimist (3.1.0)
ostruct (0.6.0)
parallel (1.26.3)
parser (3.3.5.0)
ast (~> 2.4.1)
racc
patience_diff (1.2.0)
optimist (~> 3.0)
power_assert (2.0.3)
pry (0.14.2)
coderay (~> 1.1)
Expand Down Expand Up @@ -150,13 +141,9 @@ GEM
standard-custom (>= 1.0.2, < 2)
standard-performance (>= 1.3.1, < 2)
version_gem (>= 1.1.4, < 3)
super_diff (0.12.1)
attr_extras (>= 6.2.4)
diff-lcs
patience_diff
terminal-table (3.0.2)
unicode-display_width (>= 1.1.1, < 3)
test-unit (3.6.1)
test-unit (3.6.2)
power_assert
unicode-display_width (2.6.0)
version_gem (1.1.4)
Expand All @@ -173,7 +160,6 @@ PLATFORMS
DEPENDENCIES
bundler
byebug (>= 2.0.3)
faker (~> 3.4, = 3.4.2)
gem_bench!
kettle-soup-cover (~> 1.0, >= 1.0.2)
method_source (>= 1.1.0)
Expand All @@ -185,7 +171,6 @@ DEPENDENCIES
rubocop-packaging (~> 0.5, >= 0.5.2)
rubocop-rspec (~> 3.0)
standard (~> 1.40)
super_diff (~> 0.12, >= 0.12.1)
test-unit (~> 3.6)
yard (~> 0.9, >= 0.9.34)
yard-junk (~> 0.0.10)
Expand Down
2 changes: 0 additions & 2 deletions gem_bench.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,10 @@ Gem::Specification.new do |spec|
spec.add_development_dependency("kettle-soup-cover", "~> 1.0", ">= 1.0.2")

# Unit tests
spec.add_development_dependency("faker", "~> 3.4", "3.4.2")
spec.add_development_dependency("method_source", ">= 1.1.0")
spec.add_development_dependency("rake", ">= 10")
spec.add_development_dependency("rspec", "~> 3.13")
spec.add_development_dependency("rspec-block_is_expected", "~> 1.0", ">= 1.0.6")
spec.add_development_dependency("super_diff", "~> 0.12", ">= 0.12.1")

# Linting
spec.add_development_dependency("rubocop-lts", "~> 10.1") # Lint & Style Support for Ruby 2.3+
Expand Down
4 changes: 3 additions & 1 deletion gemfiles/ancient.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ gem "method_source", ">= 1.1.0"
gem "rake"
gem "rspec"
gem "rspec-block_is_expected"
gem "super_diff"

# Need test-unit be loaded by bundler for evaluation in specs
gem "test-unit", "~> 3.6"
Expand All @@ -25,3 +24,6 @@ gem "test-unit", "~> 3.6"
if RUBY_VERSION > "2.4" && ENV.fetch("DEBUG", "false").casecmp?("true")
gem "byebug"
end

# this gem
gem "gem_bench", path: "../"
2 changes: 1 addition & 1 deletion spec/gem_bench/team_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

context "when excluded" do
it "excludes the excluded gems" do
expect(instance.excluded.map(&:first).sort).to eq(%w(bundler faker gem_bench))
expect(instance.excluded.map(&:first).sort).to eq(%w(bundler gem_bench))
end
end

Expand Down
1 change: 0 additions & 1 deletion spec/spec_helper.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# External library dependencies
require "version_gem/ruby"
require "super_diff/rspec"

# RSpec Configs
require "config/byebug"
Expand Down

0 comments on commit 523ea2c

Please sign in to comment.