Sha256: 03d4df6a240df3385d7a0b132fa788e0467912817f9e86a74aab3bfe4d2361d9

Contents?: true

Size: 187 Bytes

Versions: 1

Compression:

Stored size: 187 Bytes

Contents

module ApplicationHelper
  #to fix any call from the engine
  def method_missing(method, *args, &block)
    main_app.send(method, *args, &block)
  rescue NoMethodError
    super
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
discussion-0.0.1 test/dummy/app/helpers/application_helper.rb