Skip to content

Commit

Permalink
Added test case of bundled gems dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
hsbt committed Dec 15, 2023
1 parent 76c1ce4 commit 66b82a4
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
10 changes: 10 additions & 0 deletions tool/test_for_warn_bundled_gems/test_no_warn_dependency.rb
@@ -0,0 +1,10 @@
require "bundler/inline"

gemfile do
source "https://rubygems.org"
gem "activesupport", "7.0.7.2"
gem "bigdecimal"
gem "mutex_m"
end

require "active_support/all"
8 changes: 8 additions & 0 deletions tool/test_for_warn_bundled_gems/test_warn_dependency.rb
@@ -0,0 +1,8 @@
require "bundler/inline"

gemfile do
source "https://rubygems.org"
gem "activesupport", "7.0.7.2"
end

require "active_support/all"

0 comments on commit 66b82a4

Please sign in to comment.