- Download this application skeleton.
- Convert the app to use AJAX.
- Add any files you changed to your gist and submit your code.
Challengue solution repo : https://github.com/fabianuribe/lucky_ajax.git
Challengue solution repo : https://github.com/fabianuribe/lucky_ajax.git
class Vehicle | |
attr_reader :status, :wheels | |
def initialize(args) | |
@color = args[:color] | |
@wheels = args[:wheels] | |
@status = :stopped | |
end |