We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3c372a commit 5b00c05Copy full SHA for 5b00c05
1 file changed
spec/bundler/commands/newgem_spec.rb
@@ -1741,8 +1741,9 @@ def create_temporary_dir(dir)
1741
expect(bundled_app("#{gem_name}/ext/#{gem_name}/build.rs")).to exist
1742
end
1743
1744
- it "includes rake-compiler constraint" do
+ it "includes rake-compiler and rb_sys gems constraint" do
1745
expect(bundled_app("#{gem_name}/Gemfile").read).to include('gem "rake-compiler"')
1746
+ expect(bundled_app("#{gem_name}/#{gem_name}.gemspec").read).to include('spec.add_dependency "rb_sys"')
1747
1748
1749
it "depends on compile task for build" do
0 commit comments