Usage
Hello World
class Example < AllFutures::Base
attribute :name, :string
attribute :age, :integer, default: 21
endclass ExampleController < ApplicationController
def index
@example = Example.create
end
endName: <input type="text" data-id="<%= @example.id %>" data-reflex="input->Example#name" /><br/>
Age: <input type="text" data-id="<%= @example.id %>" data-reflex="input->Example#age" />Creating model instances
Finding model instances
Reserved words
Internationalization
Last updated