Skip to content

Commit

Permalink
fixup ruby tests
Browse files Browse the repository at this point in the history
  • Loading branch information
CamJN committed Jan 20, 2025
1 parent 80d6d4d commit 90e4797
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
8 changes: 1 addition & 7 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,5 @@ group :development do
gem 'rspec', '~> 3.12.0'
gem 'rspec-collection_matchers'
gem 'webrick', '~> 1.8.1'
end

if ENV['USER'] == 'camdennarzt'
group :development do
gem 'solargraph'
gem 'gpgme'
end
gem 'gpgme' if ENV['USER'] == 'camdennarzt'
end
3 changes: 3 additions & 0 deletions test/support/test_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,9 @@ def copy_stub_contents
if !File.exist?("#{@full_app_root}/Gemfile")
FileUtils.cp("#{build_system_dir}/Gemfile", @full_app_root)
FileUtils.cp("#{build_system_dir}/Gemfile.lock", @full_app_root)
FileUtils.cp("#{build_system_dir}/passenger.gemspec", @full_app_root)
FileUtils.mkdir("#{@full_app_root}/src/")
FileUtils.cp_r("#{build_system_dir}/src/ruby_supportlib", "#{@full_app_root}/src/")
if File.exist?("#{build_system_dir}/.bundle")
FileUtils.cp_r("#{build_system_dir}/.bundle", @full_app_root)
end
Expand Down

0 comments on commit 90e4797

Please sign in to comment.