Sha256: dce9989a842636292fe5cf9baccc01d2e3456b5a72424e491143fb8d9af1e957

Contents?: true

Size: 283 Bytes

Versions: 8

Compression:

Stored size: 283 Bytes

Contents

module Locomotive
  class MyOtherPlugin
    include Locomotive::Plugin

    before_filter :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

8 entries across 8 versions & 1 rubygems

Version Path
locomotive_plugins-1.0.0.beta9 spec/support/plugins/my_other_plugin.rb
locomotive_plugins-1.0.0.beta8 spec/support/plugins/my_other_plugin.rb
locomotive_plugins-1.0.0.beta7 spec/support/plugins/my_other_plugin.rb
locomotive_plugins-1.0.0.beta6 spec/support/plugins/my_other_plugin.rb
locomotive_plugins-1.0.0.beta5 spec/support/plugins/my_other_plugin.rb
locomotive_plugins-1.0.0.beta4 spec/support/plugins/my_other_plugin.rb
locomotive_plugins-1.0.0.beta3 spec/support/plugins/my_other_plugin.rb
locomotive_plugins-1.0.0.beta2 spec/support/plugins/my_other_plugin.rb