Flowdock
method

save

Importance_0
v1.2.6 - Show latest stable - 0 notes - Class: ConfigTable_class
save() public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionwebservice/setup.rb, line 259
  def save
    @items.each {|i| i.value }
    File.open(savefile(), 'w') {|f|
      @items.each do |i|
        f.printf "%s=%s\n", i.name, i.value if i.value
      end
    }
  end
Register or log in to add new notes.