Sha256: b82cf56d34607d2a669c0ea72924646b9d1180ce7001ac75a2c1f4458097fe19

Contents?: true

Size: 221 Bytes

Versions: 7

Compression:

Stored size: 221 Bytes

Contents

class StacheController < ApplicationController
  
  def index
    @user = params[:user] || "Matt"
    # index.html.mustache
  end
  
  def with_partials
    @user = params[:user] || "Matt"
    @thing = "Grue"
  end
  
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
stache-0.2.2 spec/dummy/app/controllers/stache_controller.rb
stache-0.2.1 spec/dummy/app/controllers/stache_controller.rb
stache-0.2.0 spec/dummy/app/controllers/stache_controller.rb
stache-0.1.0 spec/dummy/app/controllers/stache_controller.rb
stache-0.0.3 spec/dummy/app/controllers/stache_controller.rb
stache-0.0.2 spec/dummy/app/controllers/stache_controller.rb
stache-0.0.1 spec/dummy/app/controllers/stache_controller.rb