Module: Card::Set::Type::LinkList
- Extended by:
- Card::Set
- Defined in:
- platypus/tmp/set/gem-defaults/mod005-list/type/link_list.rb
Overview
Set: All “LinkList” cards
Defined Under Namespace
Modules: HtmlFormat
Constant Summary
Constants included from Helpers
Helpers::SET_PATTERN_TEST_REGEXP
Constants included from Event::Api
Class Method Summary collapse
Instance Method Summary collapse
-
#item_titles(default_to_name = true) ⇒ Object
-
#raw_item_strings(content) ⇒ Object
-
#standardize_item(string) ⇒ Object
-
#to_pointer_content ⇒ Object
Methods included from Card::Set
Methods included from I18nScope
Methods included from Registrar
#extended, #finalize_load, #process_base_modules, #register_set
Methods included from Helpers
#format_module, #format_modules, #method_missing, #modules, #pattern_code, #respond_to_missing?, #set_name_parts, #shortname, #underscored_name
Methods included from AdvancedApi
#assign_type, #attachment, #define_set_from_error, #ensure_set, #setting_opts, #stage_method
Methods included from Format
#before, #format, layout_method_name, #view, view_method_name, view_setting_method_name, wrapper_method_name
Methods included from Inheritance
#include_set, #include_set_formats
Methods included from Card::Set::Trait
#card_accessor, #card_reader, #card_writer, #require_field
Methods included from Event::Api
Class Method Details
.source_location ⇒ Object
7 |
# File 'platypus/tmp/set/gem-defaults/mod005-list/type/link_list.rb', line 7 def self.source_location; "/Users/ethan/dev/decko/gem/mod/list/set/type/link_list.rb"; end |
Instance Method Details
#item_titles(default_to_name = true) ⇒ Object
15 16 17 18 19 |
# File 'platypus/tmp/set/gem-defaults/mod005-list/type/link_list.rb', line 15 def item_titles default_to_name=true reference_chunks.map do |chunk| chunk.[:title] || (default_to_name ? chunk.referee_name : nil) end end |
#raw_item_strings(content) ⇒ Object
11 12 13 |
# File 'platypus/tmp/set/gem-defaults/mod005-list/type/link_list.rb', line 11 def raw_item_strings content reference_chunks(content).map(&:referee_name) end |
#standardize_item(string) ⇒ Object
21 22 23 |
# File 'platypus/tmp/set/gem-defaults/mod005-list/type/link_list.rb', line 21 def standardize_item string string.match?(/^\[/) ? string : "[[#{string}]]" end |
#to_pointer_content ⇒ Object
25 26 27 |
# File 'platypus/tmp/set/gem-defaults/mod005-list/type/link_list.rb', line 25 def to_pointer_content map { |item| item.to_s.strip }.join "\n" end |