Module: Card::Set::Type::RemoteManifestGroup::HtmlFormat

Extended by:
AbstractFormat
Defined in:
platypus/tmp/set/gem-defaults/mod018-assets/type/remote_manifest_group.rb

Instance Method Summary collapse

Instance Method Details

#view: javascript_include_tagObject



36
37
38
39
40
# File 'platypus/tmp/set/gem-defaults/mod018-assets/type/remote_manifest_group.rb', line 36

view :javascript_include_tag, cache: :never do
  paths.map do |path|
    javascript_include_tag path
  end.join("\n")
end

#view: stylesheet_include_tagObject



42
43
44
45
46
# File 'platypus/tmp/set/gem-defaults/mod018-assets/type/remote_manifest_group.rb', line 42

view :stylesheet_include_tag do
  paths.map do |path|
    tag "link", href: path, media: "all", rel: "stylesheet", type: "text/css"
  end.join("\n")
end