Sha256: eda086185f76acd4b17b22ee3eea76312c261cc727827036da32d0cfce16ff5e

Contents?: true

Size: 349 Bytes

Versions: 24

Compression:

Stored size: 349 Bytes

Contents

module Xcake
  # This class is used to hold a shell script build phase name
  # and script contents
  #
  class ShellScriptBuildPhase
    attr_accessor :name
    attr_accessor :script

    def generate_native_build_phase(target)
      phase = target.new_shell_script_build_phase(name)
      phase.shell_script = script
      phase
    end
  end
end

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
xcake-0.7.1 lib/xcake/shell_script_build_phase.rb
xcake-0.7.0 lib/xcake/shell_script_build_phase.rb
xcake-0.6.25 lib/xcake/shell_script_build_phase.rb
xcake-0.6.24 lib/xcake/shell_script_build_phase.rb
xcake-0.6.23 lib/xcake/shell_script_build_phase.rb
xcake-0.6.22 lib/xcake/shell_script_build_phase.rb
xcake-0.6.21 lib/xcake/shell_script_build_phase.rb
xcake-0.6.20 lib/xcake/shell_script_build_phase.rb
xcake-0.6.19 lib/xcake/shell_script_build_phase.rb
xcake-0.6.18 lib/xcake/shell_script_build_phase.rb
xcake-0.6.17 lib/xcake/shell_script_build_phase.rb
xcake-0.6.16 lib/xcake/shell_script_build_phase.rb
xcake-0.6.14 lib/xcake/shell_script_build_phase.rb
xcake-0.6.13 lib/xcake/shell_script_build_phase.rb
xcake-0.6.12 lib/xcake/shell_script_build_phase.rb
xcake-0.6.11 lib/xcake/shell_script_build_phase.rb
xcake-0.6.10 lib/xcake/shell_script_build_phase.rb
xcake-0.6.9 lib/xcake/shell_script_build_phase.rb
xcake-0.6.8 lib/xcake/shell_script_build_phase.rb
xcake-0.6.7 lib/xcake/shell_script_build_phase.rb