class String

Public Instance Methods

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

Usage:

“` “file1” .from “file2” do

<your command here>

end “`

# File lib/ruby_make_script.rb, line 127
def from(*dependlist)
    [self].from(*dependlist) { yield }
end