Sha256: cd421bad108abdbdc781ed71460d0ad6ad75002c95a9822aa412dbc2fccdeea4

Contents?: true

Size: 1.31 KB

Versions: 25

Compression:

Stored size: 1.31 KB

Contents

class HelpersSystemSpecController < ApplicationController
  # This works around a bug in Rails 3.0.x for image_tag and other asset_tag methods
  config.relative_url_root ||= ""

  def basic_helpers
    # nothing here
  end

  def block_helpers
    # nothing here
  end

  def built_in_outputting_helpers
    # nothing here
  end

  def custom_helpers_basic
    # nothing here
  end

  def custom_helper_outputs
    # nothing here
  end

  def custom_helpers_with_a_block
    # nothing here
  end

  def built_in_outputting_to_returning
    # nothing here
  end

  def built_in_returning_to_outputting
    # nothing here
  end

  def custom_outputting_to_returning
    # nothing here
  end

  def custom_returning_to_outputting
    # nothing here
  end

  def helper_settings_inheritance
    # nothing here
  end

  def decorate(x)
    "*~* #{x} *~*"
  end

  helper_method :decorate

  def controller_helper_method
    # nothing here
  end

  require 'some_stuff'

  helper SomeStuff

  def controller_helper_module
    # nothing here
  end

  def automatic_helpers_disabled
    # nothing here
  end

  def automatic_helpers_inheritance
    # nothing here
  end

  def private_helper_erb
    # nothing here
  end

  def private_helper_fortitude
    # nothing here
  end

  def helpers_that_output_when_refined
    # nothing here
  end
end

Version data entries

25 entries across 25 versions & 1 rubygems

Version Path
fortitude-0.9.4-java spec/rails/templates/helpers_system_spec/app/controllers/helpers_system_spec_controller.rb
fortitude-0.9.4 spec/rails/templates/helpers_system_spec/app/controllers/helpers_system_spec_controller.rb
fortitude-0.9.3-java spec/rails/templates/helpers_system_spec/app/controllers/helpers_system_spec_controller.rb
fortitude-0.9.3 spec/rails/templates/helpers_system_spec/app/controllers/helpers_system_spec_controller.rb
fortitude-0.9.2-java spec/rails/templates/helpers_system_spec/app/controllers/helpers_system_spec_controller.rb
fortitude-0.9.2 spec/rails/templates/helpers_system_spec/app/controllers/helpers_system_spec_controller.rb
fortitude-0.9.1-java spec/rails/templates/helpers_system_spec/app/controllers/helpers_system_spec_controller.rb
fortitude-0.9.1 spec/rails/templates/helpers_system_spec/app/controllers/helpers_system_spec_controller.rb
fortitude-0.9.0-java spec/rails/templates/helpers_system_spec/app/controllers/helpers_system_spec_controller.rb
fortitude-0.9.0 spec/rails/templates/helpers_system_spec/app/controllers/helpers_system_spec_controller.rb
fortitude-0.0.10-java spec/rails/templates/helpers_system_spec/app/controllers/helpers_system_spec_controller.rb
fortitude-0.0.10 spec/rails/templates/helpers_system_spec/app/controllers/helpers_system_spec_controller.rb
fortitude-0.0.9-java spec/rails/templates/helpers_system_spec/app/controllers/helpers_system_spec_controller.rb
fortitude-0.0.9 spec/rails/templates/helpers_system_spec/app/controllers/helpers_system_spec_controller.rb
fortitude-0.0.7-java spec/rails/templates/helpers_system_spec/app/controllers/helpers_system_spec_controller.rb
fortitude-0.0.7 spec/rails/templates/helpers_system_spec/app/controllers/helpers_system_spec_controller.rb
fortitude-0.0.6-java spec/rails/templates/helpers_system_spec/app/controllers/helpers_system_spec_controller.rb
fortitude-0.0.6 spec/rails/templates/helpers_system_spec/app/controllers/helpers_system_spec_controller.rb
fortitude-0.0.5-java spec/rails/templates/helpers_system_spec/app/controllers/helpers_system_spec_controller.rb
fortitude-0.0.5 spec/rails/templates/helpers_system_spec/app/controllers/helpers_system_spec_controller.rb