Sha256: f275950f8e3c0cb17ea0af9fb85fff40982ba381df53d63cf1454b323d9ad9a6

Contents?: true

Size: 1.59 KB

Versions: 13

Compression:

Stored size: 1.59 KB

Contents

# Copyright (c) 2023 M.J.N. Corino, The Netherlands
#
# This software is released under the MIT license.

###
# wxRuby3 rake bin support
###

require_relative './lib/config'

module WXRuby3

  module Bin

    class << self
      def wxruby
        <<~_SH_TXT
          #!#{WXRuby3.config.windows? ? '/bin/' : (`which env`).strip+' '}#{RB_CONFIG['ruby_install_name']}
          #---------------------------------
          # This file is generated
          #---------------------------------
          module WxRuby
            ROOT = File.expand_path(File.join(File.dirname(__FILE__), '..'))
          end
          require 'wx/wxruby/base'
          WxRuby.run
          _SH_TXT
      end

      def wxruby_bat
        <<~_BAT_TXT
          @echo off
          if not "%~f0" == "~f0" goto WinNT
          #{RB_CONFIG['ruby_install_name']} -Sx "%0" %1 %2 %3 %4 %5 %6 %7 %8 %9
          goto endofruby
          :WinNT
          if not exist "%~d0%~p0#{RB_CONFIG['ruby_install_name']}" goto rubyfrompath
          if exist "%~d0%~p0#{RB_CONFIG['ruby_install_name']}" "%~d0%~p0#{RB_CONFIG['ruby_install_name']}" -x "%~f0" %*
          goto endofruby
          :rubyfrompath
          #{RB_CONFIG['ruby_install_name']} -x "%~f0" %*
          goto endofruby
          #!/bin/#{RB_CONFIG['ruby_install_name']}
          #
          module WxRuby
            ROOT = File.expand_path(File.join(File.dirname(__FILE__), '..'))
          end
          require 'wx/wxruby/base'
          WxRuby.run
          __END__
          :endofruby
          _BAT_TXT
      end

      def binaries
        %w{wxruby}
      end
    end

  end

end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
wxruby3-1.4.2 rakelib/bin.rb
wxruby3-1.4.1 rakelib/bin.rb
wxruby3-1.4.0 rakelib/bin.rb
wxruby3-1.3.1 rakelib/bin.rb
wxruby3-1.3.0 rakelib/bin.rb
wxruby3-1.2.1 rakelib/bin.rb
wxruby3-1.2.0 rakelib/bin.rb
wxruby3-1.1.2 rakelib/bin.rb
wxruby3-1.1.1 rakelib/bin.rb
wxruby3-1.1.0 rakelib/bin.rb
wxruby3-1.0.1 rakelib/bin.rb
wxruby3-0.9.8 rakelib/bin.rb
wxruby3-0.9.7 rakelib/bin.rb