class Symbol

Public Instance Methods

from(*dependlist) { || ... } click to toggle source

Usage:

“` :app .from “file1” do

<your command here>

end “`

# File lib/ruby_make_script.rb, line 103
def from(*dependlist)
    PhonyTarget.new(String(self)).from(*dependlist) { yield }
end
then() { || ... } click to toggle source

Usage:

“` :app .then do

<your command here>

end “`

# File lib/ruby_make_script.rb, line 114
def then
    PhonyTarget.new(String(self)).from() { yield }
end