Sha256: 620c2985d47ea6800588aa9c9d80ffd34f623df458c4756c1c2179434477637f

Contents?: true

Size: 655 Bytes

Versions: 29

Compression:

Stored size: 655 Bytes

Contents

class Views::HelpersSystemSpec::AutomaticHelpersInheritanceChildTwo < Views::HelpersSystemSpec::AutomaticHelpersInheritanceParent
  automatic_helper_access true

  def content
    text "C2: excitedly: "

    result = begin
      excitedly("awesome")
    rescue => e
      e.class.name
    end

    text result
    text "; "

    t = 3.months.ago
    text "time_ago_in_words: "
    result = begin
      time_ago_in_words(t)
    rescue => e
      e.class.name
    end

    text result
    text "; "

    text "number_to_currency: "
    result = begin
      number_to_currency(1_000_000)
    rescue => e
      e.class.name
    end

    text result
  end
end

Version data entries

29 entries across 29 versions & 1 rubygems

Version Path
fortitude-0.9.6-java spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/automatic_helpers_inheritance_child_two.rb
fortitude-0.9.6 spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/automatic_helpers_inheritance_child_two.rb
fortitude-0.9.5-java spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/automatic_helpers_inheritance_child_two.rb
fortitude-0.9.5 spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/automatic_helpers_inheritance_child_two.rb
fortitude-0.9.4-java spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/automatic_helpers_inheritance_child_two.rb
fortitude-0.9.4 spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/automatic_helpers_inheritance_child_two.rb
fortitude-0.9.3-java spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/automatic_helpers_inheritance_child_two.rb
fortitude-0.9.3 spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/automatic_helpers_inheritance_child_two.rb
fortitude-0.9.2-java spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/automatic_helpers_inheritance_child_two.rb
fortitude-0.9.2 spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/automatic_helpers_inheritance_child_two.rb
fortitude-0.9.1-java spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/automatic_helpers_inheritance_child_two.rb
fortitude-0.9.1 spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/automatic_helpers_inheritance_child_two.rb
fortitude-0.9.0-java spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/automatic_helpers_inheritance_child_two.rb
fortitude-0.9.0 spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/automatic_helpers_inheritance_child_two.rb
fortitude-0.0.10-java spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/automatic_helpers_inheritance_child_two.rb
fortitude-0.0.10 spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/automatic_helpers_inheritance_child_two.rb
fortitude-0.0.9-java spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/automatic_helpers_inheritance_child_two.rb
fortitude-0.0.9 spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/automatic_helpers_inheritance_child_two.rb
fortitude-0.0.7-java spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/automatic_helpers_inheritance_child_two.rb
fortitude-0.0.7 spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/automatic_helpers_inheritance_child_two.rb