Sha256: 271110b3bb0e8a780ffe28512348518928a993fb4a347b3d08b64473d8e34f82

Contents?: true

Size: 288 Bytes

Versions: 5

Compression:

Stored size: 288 Bytes

Contents

module Locomotive
  class MyOtherPlugin
    include Locomotive::Plugin

    before_page_render :another_method

    def config_template_file
      File.join(File.dirname(__FILE__), '..', '..', 'fixtures',
        'config_template.haml')
    end

    def another_method
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
locomotive_plugins-1.2.0 spec/support/plugins/my_other_plugin.rb
locomotive_plugins-1.1.1 spec/support/plugins/my_other_plugin.rb
locomotive_plugins-1.1.0 spec/support/plugins/my_other_plugin.rb
locomotive_plugins-1.0.1 spec/support/plugins/my_other_plugin.rb
locomotive_plugins-1.0.0.beta10 spec/support/plugins/my_other_plugin.rb