Skip to content

Instantly share code, notes, and snippets.

@barsukov
Last active December 19, 2015 22:29
Show Gist options
  • Save barsukov/6027555 to your computer and use it in GitHub Desktop.
Save barsukov/6027555 to your computer and use it in GitHub Desktop.
...
cell.recalculate
...
class Sheet
def build_sheet
...
cell = ValueCell.new(self,"A1","A2")
...
cell.recalculate
...
end
end
class Sheet
def build_sheet(cell)
...
cell.recalculate
...
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment