Sha256: c9d8bca0b61a194323e7952d687e0eb2fc67421b4544ae24ffa05158f5174c95

Contents?: true

Size: 240 Bytes

Versions: 10

Compression:

Stored size: 240 Bytes

Contents

module Georgia
  class Presenter

    attr_reader :view_context

    def initialize *args
      @view_context = args.first
    end

    private

    def method_missing(*args, &block)
      view_context.send(*args, &block)
    end

  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
georgia-0.8.0 app/presenters/georgia/presenter.rb
georgia-0.7.8 app/presenters/georgia/presenter.rb
georgia-0.7.7 app/presenters/georgia/presenter.rb
georgia-0.7.6 app/presenters/georgia/presenter.rb
georgia-0.7.5 app/presenters/georgia/presenter.rb
georgia-0.7.4 app/presenters/georgia/presenter.rb
georgia-0.7.3 app/presenters/georgia/presenter.rb
georgia-0.7.2 app/presenters/georgia/presenter.rb
georgia-0.7.1 app/presenters/georgia/presenter.rb
georgia-0.7.0 app/presenters/georgia/presenter.rb