Navigation Menu

Skip to content
View Odaeus's full-sized avatar

Sponsoring

@utmapp

Organizations

@cyclestreets
Block or Report

Block or report Odaeus

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
Odaeus/README.md

Hi there 👋

Pinned

  1. Simple Presenter Pattern Simple Presenter Pattern
    1
    class ApplicationController < ActionController::Base
    2
      # ...
    3
      
    4
      concerning :Presenters do
    5
        included do
  2. Alternative to Rails' sharing of ins... Alternative to Rails' sharing of instance variables between controller and views.
    1
    class ApplicationController < ActionController::Base
    2
      # Creates an accessor which is exposed to the view
    3
      def self.view_accessor(*names)
    4
        attr_accessor *names
    5
        helper_method *names