Method: Satisfactory::Record#create

Defined in:
lib/satisfactory/record.rb

#createHash<Symbol, Array<ApplicationRecord>>

TODO:

Check if we still need the upstream check.

Trigger the creation of this tree’s build plan.

Returns:

  • (Hash<Symbol, Array<ApplicationRecord>>)

Since:

  • 0.2.0



108
109
110
111
112
113
114
# File 'lib/satisfactory/record.rb', line 108

def create
  if upstream
    upstream.create
  else
    create_self
  end
end