@Pepper - the same type of functionality can be achived through Controller and View (ERB) code. How you implemented this? If yes, how would you want to change it to be more like Forward?
Forward combines the Controller and View functionality together. Thus making it easier in some senes, but it may make more complex actions difficult. Why I think this.
http://getfwd.com/{get $products from "/products" [search => $params.query]}
Here's how I would do this with Spree // Rails // ERB
# products_controller.rb
SimpleProducts < ApplicationController
def show
@products = Spree::Product.all
render_to do |format|
format.html
format.json { render json: @products}
end
end
end
# app/views/simple_products/show.html.erb
<% @products.each do |p| %>
<% end %>