Skip to content

Commit

Permalink
💚 Fixing CI
Browse files Browse the repository at this point in the history
  • Loading branch information
pboling committed Sep 22, 2024
1 parent 2a8944e commit 705ce94
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 7 deletions.
6 changes: 4 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,10 @@ gem <<~GEM_NAME.chomp
pry-byebug
GEM_NAME

# Need this to be loaded by bundler, to exercise the "excluded" logic, since faker is excluded.
gem "faker"
# Need faker be loaded by bundler for evaluation in specs
gem "faker", "~> 3.4", ">= 3.4.2"
# Need test-unit be loaded by bundler for evaluation in specs
gem "test-unit", "~> 3.6"

# Specify your gem's dependencies in gem_bench.gemspec
gemspec
6 changes: 5 additions & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ GEM
racc
patience_diff (1.2.0)
optimist (~> 3.0)
power_assert (2.0.3)
pry (0.14.2)
coderay (~> 1.1)
method_source (~> 1.0)
Expand Down Expand Up @@ -155,6 +156,8 @@ GEM
patience_diff
terminal-table (3.0.2)
unicode-display_width (>= 1.1.1, < 3)
test-unit (3.6.1)
power_assert
unicode-display_width (2.6.0)
version_gem (1.1.4)
yard (0.9.37)
Expand All @@ -170,7 +173,7 @@ PLATFORMS
DEPENDENCIES
bundler
byebug (>= 2.0.3)
faker
faker (~> 3.4, >= 3.4.2)
gem_bench!
kettle-soup-cover (~> 1.0, >= 1.0.2)
method_source (>= 1.1.0)
Expand All @@ -183,6 +186,7 @@ DEPENDENCIES
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
6 changes: 5 additions & 1 deletion gemfiles/ancient.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,17 @@ source "https://rubygems.org"
gem "bundler", ">= 1.14"
gem "version_gem", "~> 1.1", ">= 1.1.4"

gem "faker", "~> 3.4", ">= 3.4.2"
gem "method_source", ">= 1.1.0"
gem "rake"
gem "rspec"
gem "rspec-block_is_expected"
gem "super_diff"

# Need faker be loaded by bundler for evaluation in specs
gem "faker", "~> 3.4", ">= 3.4.2"
# Need test-unit be loaded by bundler for evaluation in specs
gem "test-unit", "~> 3.6"

# For debugging, casecmp is only available in Ruby 2.4+
if RUBY_VERSION > "2.4" && ENV.fetch("DEBUG", "false").casecmp?("true")
gem "byebug"
Expand Down
9 changes: 6 additions & 3 deletions spec/gem_bench/scout_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,8 @@
[
"# For complexity!\n",
"# (this syntax is not supported by gem_bench, but also shouldn't make it blow up)\n",
%(# Need this to be loaded by bundler, to exercise the "excluded" logic, since faker is excluded.\n),
"# Need faker be loaded by bundler for evaluation in specs\n",
"# Need test-unit be loaded by bundler for evaluation in specs\n",
"# Specify your gem's dependencies in gem_bench.gemspec\n",
],
)
Expand Down Expand Up @@ -205,7 +206,8 @@
[
"# For complexity!\n",
"# (this syntax is not supported by gem_bench, but also shouldn't make it blow up)\n",
%(# Need this to be loaded by bundler, to exercise the "excluded" logic, since faker is excluded.\n),
"# Need faker be loaded by bundler for evaluation in specs\n",
"# Need test-unit be loaded by bundler for evaluation in specs\n",
"# Specify your gem's dependencies in gem_bench.gemspec\n",
],
)
Expand All @@ -228,7 +230,8 @@
[
"# For complexity!\n",
"# (this syntax is not supported by gem_bench, but also shouldn't make it blow up)\n",
%(# Need this to be loaded by bundler, to exercise the "excluded" logic, since faker is excluded.\n),
"# Need faker be loaded by bundler for evaluation in specs\n",
"# Need test-unit be loaded by bundler for evaluation in specs\n",
"# Specify your gem's dependencies in gem_bench.gemspec\n",
],
)
Expand Down

0 comments on commit 705ce94

Please sign in to comment.