Sha256: 79c473a0d103a36a7368f07a66f68a5699e8ed6f62a452216fbed0d4e8b6e087

Contents?: true

Size: 205 Bytes

Versions: 1

Compression:

Stored size: 205 Bytes

Contents

class ArticlesController < ApplicationController

  title 'All Articles'

  def index
  end

  def show
    title 'Particular Article'
  end

  def new
    title 'New Article'
  end

  def edit
  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tytus-0.1.0 spec/rails_app/app/controllers/articles_controller.rb