summaryrefslogtreecommitdiff
path: root/test/rubygems/test_gem_ext_cargo_builder/custom_name/build.rb
blob: 4d2f8488a48af85295afb05091ee94d0772b4ecb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
if ENV['RUBYOPT'] or defined? Gem
  ENV.delete 'RUBYOPT'

  require 'rbconfig'
  cmd = [RbConfig.ruby, '--disable-gems', 'build.rb', *ARGV]

  exec(*cmd)
end

require 'tmpdir'

lp = File.expand_path('../../../../lib', __dir__)
gem = ["ruby", "-I#{lp}", File.expand_path('../../../../bin/gem', __dir__)]
gemspec = File.expand_path('custom_name.gemspec', __dir__)

Dir.mktmpdir("custom_name") do |dir|
  built_gem = File.expand_path(File.join(dir, "custom_name.gem"))
  system *gem, "build", gemspec, "--output", built_gem
  system *gem, "install", "--verbose", "--local", built_gem, *ARGV
  system %q(ruby -rcustom_name -e "puts 'Result: ' + CustomName.say_hello")
end