Sha256: 7cfca8e4cacc9d8ef8697e00d818fcf134481aa455f3a22a634d2ca59af6f936

Contents?: true

Size: 840 Bytes

Versions: 10

Compression:

Stored size: 840 Bytes

Contents

require 'source/shared/common'
require 'source/portable/fortitude-bootstrap'

module Views
  module Shared
    class Base < Fortitude::Widget
      doctype :html5

      format_output                 true
      start_and_end_comments        true
      debug                         true
      enforce_element_nesting_rules true
      enforce_attribute_rules       true
      enforce_id_uniqueness         true

      enable_parcels!

      helper :stylesheet_link_tag, :transform => :output_return_value
      helper :javascript_include_tag, :transform => :output_return_value

      css_prefix %{
@import "#{File.expand_path(File.join(File.dirname(__FILE__), '..', 'stylesheets', '_shared_prefix.scss'))}";
}

      include ::FortitudeBootstrap
      include ::Views::Shared::Common
      include ::RetinaImages::Helpers
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
fortitude-0.9.6-java doc/source/shared/base.rb
fortitude-0.9.6 doc/source/shared/base.rb
fortitude-0.9.5-java doc/source/shared/base.rb
fortitude-0.9.5 doc/source/shared/base.rb
fortitude-0.9.4-java doc/source/shared/base.rb
fortitude-0.9.4 doc/source/shared/base.rb
fortitude-0.9.3-java doc/source/shared/base.rb
fortitude-0.9.3 doc/source/shared/base.rb
fortitude-0.9.2-java doc/source/shared/base.rb
fortitude-0.9.2 doc/source/shared/base.rb