timeboss 0.0.6 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
 - data/.github/ISSUE_TEMPLATE/bug_report.md +23 -0
 - data/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
 - data/.gitignore +2 -0
 - data/.travis.yml +4 -1
 - data/.yardopts +1 -0
 - data/CODE_OF_CONDUCT.md +76 -0
 - data/README.md +30 -18
 - data/bin/tbsh +15 -0
 - data/doc/TimeBoss.html +146 -0
 - data/doc/TimeBoss/Calendar.html +137 -0
 - data/doc/TimeBoss/Calendar/Day.html +594 -0
 - data/doc/TimeBoss/Calendar/Half.html +396 -0
 - data/doc/TimeBoss/Calendar/Month.html +396 -0
 - data/doc/TimeBoss/Calendar/Parser.html +386 -0
 - data/doc/TimeBoss/Calendar/Period.html +841 -0
 - data/doc/TimeBoss/Calendar/Quarter.html +396 -0
 - data/doc/TimeBoss/Calendar/Support.html +131 -0
 - data/doc/TimeBoss/Calendar/Support/Formatter.html +459 -0
 - data/doc/TimeBoss/Calendar/Support/MonthBased.html +591 -0
 - data/doc/TimeBoss/Calendar/Support/MonthBasis.html +437 -0
 - data/doc/TimeBoss/Calendar/Support/MonthlyUnit.html +591 -0
 - data/doc/TimeBoss/Calendar/Support/Navigable.html +723 -0
 - data/doc/TimeBoss/Calendar/Support/Shiftable.html +138 -0
 - data/doc/TimeBoss/Calendar/Support/Unit.html +1299 -0
 - data/doc/TimeBoss/Calendar/Waypoints.html +155 -0
 - data/doc/TimeBoss/Calendar/Waypoints/Absolute.html +1378 -0
 - data/doc/TimeBoss/Calendar/Waypoints/Relative.html +4308 -0
 - data/doc/TimeBoss/Calendar/Week.html +671 -0
 - data/doc/TimeBoss/Calendar/Year.html +319 -0
 - data/doc/TimeBoss/Calendars.html +336 -0
 - data/doc/TimeBoss/Calendars/Broadcast.html +221 -0
 - data/doc/TimeBoss/Calendars/Broadcast/Basis.html +278 -0
 - data/doc/TimeBoss/Calendars/Entry.html +399 -0
 - data/doc/TimeBoss/Support.html +115 -0
 - data/doc/TimeBoss/Support/Shellable.html +249 -0
 - data/doc/_index.html +416 -0
 - data/doc/class_list.html +51 -0
 - data/doc/css/common.css +1 -0
 - data/doc/css/full_list.css +58 -0
 - data/doc/css/style.css +496 -0
 - data/doc/file.README.html +299 -0
 - data/doc/file_list.html +56 -0
 - data/doc/frames.html +17 -0
 - data/doc/index.html +299 -0
 - data/doc/js/app.js +314 -0
 - data/doc/js/full_list.js +216 -0
 - data/doc/js/jquery.js +4 -0
 - data/doc/method_list.html +1139 -0
 - data/doc/top-level-namespace.html +110 -0
 - data/lib/tasks/calendars.rake +5 -0
 - data/lib/timeboss.rb +4 -0
 - data/lib/timeboss/calendar.rb +22 -0
 - data/lib/timeboss/calendar/day.rb +19 -6
 - data/lib/timeboss/calendar/half.rb +7 -2
 - data/lib/timeboss/calendar/month.rb +7 -2
 - data/lib/timeboss/calendar/parser.rb +1 -0
 - data/lib/timeboss/calendar/period.rb +26 -11
 - data/lib/timeboss/calendar/quarter.rb +7 -2
 - data/lib/timeboss/calendar/support.rb +8 -0
 - data/lib/timeboss/calendar/support/formatter.rb +1 -0
 - data/lib/timeboss/calendar/support/month_basis.rb +3 -0
 - data/lib/timeboss/calendar/support/{month_based.rb → monthly_unit.rb} +24 -18
 - data/lib/timeboss/calendar/support/navigable.rb +73 -0
 - data/lib/timeboss/calendar/support/shiftable.rb +3 -2
 - data/lib/timeboss/calendar/support/unit.rb +26 -0
 - data/lib/timeboss/calendar/waypoints.rb +6 -80
 - data/lib/timeboss/calendar/waypoints/absolute.rb +114 -0
 - data/lib/timeboss/calendar/waypoints/relative.rb +268 -0
 - data/lib/timeboss/calendar/week.rb +26 -18
 - data/lib/timeboss/calendar/year.rb +6 -5
 - data/lib/timeboss/calendars.rb +20 -3
 - data/lib/timeboss/version.rb +1 -1
 - data/spec/calendar/day_spec.rb +1 -1
 - data/spec/calendar/support/{month_based_spec.rb → monthly_unit_spec.rb} +18 -8
 - data/spec/calendar/week_spec.rb +5 -13
 - data/spec/calendars/broadcast_spec.rb +27 -7
 - data/spec/calendars_spec.rb +7 -1
 - data/timeboss.gemspec +1 -0
 - metadata +77 -8
 
| 
         @@ -0,0 +1,396 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <!DOCTYPE html>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <html>
         
     | 
| 
      
 3 
     | 
    
         
            +
              <head>
         
     | 
| 
      
 4 
     | 
    
         
            +
                <meta charset="utf-8">
         
     | 
| 
      
 5 
     | 
    
         
            +
            <meta name="viewport" content="width=device-width, initial-scale=1.0">
         
     | 
| 
      
 6 
     | 
    
         
            +
            <title>
         
     | 
| 
      
 7 
     | 
    
         
            +
              Class: TimeBoss::Calendar::Quarter
         
     | 
| 
      
 8 
     | 
    
         
            +
              
         
     | 
| 
      
 9 
     | 
    
         
            +
                — Documentation by YARD 0.9.25
         
     | 
| 
      
 10 
     | 
    
         
            +
              
         
     | 
| 
      
 11 
     | 
    
         
            +
            </title>
         
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
      
 13 
     | 
    
         
            +
              <link rel="stylesheet" href="../../css/style.css" type="text/css" />
         
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
      
 15 
     | 
    
         
            +
              <link rel="stylesheet" href="../../css/common.css" type="text/css" />
         
     | 
| 
      
 16 
     | 
    
         
            +
             
     | 
| 
      
 17 
     | 
    
         
            +
            <script type="text/javascript">
         
     | 
| 
      
 18 
     | 
    
         
            +
              pathId = "TimeBoss::Calendar::Quarter";
         
     | 
| 
      
 19 
     | 
    
         
            +
              relpath = '../../';
         
     | 
| 
      
 20 
     | 
    
         
            +
            </script>
         
     | 
| 
      
 21 
     | 
    
         
            +
             
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
      
 23 
     | 
    
         
            +
              <script type="text/javascript" charset="utf-8" src="../../js/jquery.js"></script>
         
     | 
| 
      
 24 
     | 
    
         
            +
             
     | 
| 
      
 25 
     | 
    
         
            +
              <script type="text/javascript" charset="utf-8" src="../../js/app.js"></script>
         
     | 
| 
      
 26 
     | 
    
         
            +
             
     | 
| 
      
 27 
     | 
    
         
            +
             
     | 
| 
      
 28 
     | 
    
         
            +
              </head>
         
     | 
| 
      
 29 
     | 
    
         
            +
              <body>
         
     | 
| 
      
 30 
     | 
    
         
            +
                <div class="nav_wrap">
         
     | 
| 
      
 31 
     | 
    
         
            +
                  <iframe id="nav" src="../../class_list.html?1"></iframe>
         
     | 
| 
      
 32 
     | 
    
         
            +
                  <div id="resizer"></div>
         
     | 
| 
      
 33 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 34 
     | 
    
         
            +
             
     | 
| 
      
 35 
     | 
    
         
            +
                <div id="main" tabindex="-1">
         
     | 
| 
      
 36 
     | 
    
         
            +
                  <div id="header">
         
     | 
| 
      
 37 
     | 
    
         
            +
                    <div id="menu">
         
     | 
| 
      
 38 
     | 
    
         
            +
              
         
     | 
| 
      
 39 
     | 
    
         
            +
                <a href="../../_index.html">Index (Q)</a> »
         
     | 
| 
      
 40 
     | 
    
         
            +
                <span class='title'><span class='object_link'><a href="../../TimeBoss.html" title="TimeBoss (module)">TimeBoss</a></span></span> » <span class='title'><span class='object_link'><a href="../Calendar.html" title="TimeBoss::Calendar (class)">Calendar</a></span></span>
         
     | 
| 
      
 41 
     | 
    
         
            +
                 » 
         
     | 
| 
      
 42 
     | 
    
         
            +
                <span class="title">Quarter</span>
         
     | 
| 
      
 43 
     | 
    
         
            +
              
         
     | 
| 
      
 44 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 45 
     | 
    
         
            +
             
     | 
| 
      
 46 
     | 
    
         
            +
                    <div id="search">
         
     | 
| 
      
 47 
     | 
    
         
            +
              
         
     | 
| 
      
 48 
     | 
    
         
            +
                <a class="full_list_link" id="class_list_link"
         
     | 
| 
      
 49 
     | 
    
         
            +
                    href="../../class_list.html">
         
     | 
| 
      
 50 
     | 
    
         
            +
             
     | 
| 
      
 51 
     | 
    
         
            +
                    <svg width="24" height="24">
         
     | 
| 
      
 52 
     | 
    
         
            +
                      <rect x="0" y="4" width="24" height="4" rx="1" ry="1"></rect>
         
     | 
| 
      
 53 
     | 
    
         
            +
                      <rect x="0" y="12" width="24" height="4" rx="1" ry="1"></rect>
         
     | 
| 
      
 54 
     | 
    
         
            +
                      <rect x="0" y="20" width="24" height="4" rx="1" ry="1"></rect>
         
     | 
| 
      
 55 
     | 
    
         
            +
                    </svg>
         
     | 
| 
      
 56 
     | 
    
         
            +
                </a>
         
     | 
| 
      
 57 
     | 
    
         
            +
              
         
     | 
| 
      
 58 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 59 
     | 
    
         
            +
                    <div class="clear"></div>
         
     | 
| 
      
 60 
     | 
    
         
            +
                  </div>
         
     | 
| 
      
 61 
     | 
    
         
            +
             
     | 
| 
      
 62 
     | 
    
         
            +
                  <div id="content"><h1>Class: TimeBoss::Calendar::Quarter
         
     | 
| 
      
 63 
     | 
    
         
            +
              
         
     | 
| 
      
 64 
     | 
    
         
            +
              
         
     | 
| 
      
 65 
     | 
    
         
            +
              
         
     | 
| 
      
 66 
     | 
    
         
            +
            </h1>
         
     | 
| 
      
 67 
     | 
    
         
            +
            <div class="box_info">
         
     | 
| 
      
 68 
     | 
    
         
            +
              
         
     | 
| 
      
 69 
     | 
    
         
            +
              <dl>
         
     | 
| 
      
 70 
     | 
    
         
            +
                <dt>Inherits:</dt>
         
     | 
| 
      
 71 
     | 
    
         
            +
                <dd>
         
     | 
| 
      
 72 
     | 
    
         
            +
                  <span class="inheritName"><span class='object_link'><a href="Support/MonthlyUnit.html" title="TimeBoss::Calendar::Support::MonthlyUnit (class)">Support::MonthlyUnit</a></span></span>
         
     | 
| 
      
 73 
     | 
    
         
            +
                  
         
     | 
| 
      
 74 
     | 
    
         
            +
                    <ul class="fullTree">
         
     | 
| 
      
 75 
     | 
    
         
            +
                      <li>Object</li>
         
     | 
| 
      
 76 
     | 
    
         
            +
                      
         
     | 
| 
      
 77 
     | 
    
         
            +
                        <li class="next"><span class='object_link'><a href="Support/Unit.html" title="TimeBoss::Calendar::Support::Unit (class)">Support::Unit</a></span></li>
         
     | 
| 
      
 78 
     | 
    
         
            +
                      
         
     | 
| 
      
 79 
     | 
    
         
            +
                        <li class="next"><span class='object_link'><a href="Support/MonthlyUnit.html" title="TimeBoss::Calendar::Support::MonthlyUnit (class)">Support::MonthlyUnit</a></span></li>
         
     | 
| 
      
 80 
     | 
    
         
            +
                      
         
     | 
| 
      
 81 
     | 
    
         
            +
                        <li class="next">TimeBoss::Calendar::Quarter</li>
         
     | 
| 
      
 82 
     | 
    
         
            +
                      
         
     | 
| 
      
 83 
     | 
    
         
            +
                    </ul>
         
     | 
| 
      
 84 
     | 
    
         
            +
                    <a href="#" class="inheritanceTree">show all</a>
         
     | 
| 
      
 85 
     | 
    
         
            +
                  
         
     | 
| 
      
 86 
     | 
    
         
            +
                </dd>
         
     | 
| 
      
 87 
     | 
    
         
            +
              </dl>
         
     | 
| 
      
 88 
     | 
    
         
            +
              
         
     | 
| 
      
 89 
     | 
    
         
            +
             
     | 
| 
      
 90 
     | 
    
         
            +
              
         
     | 
| 
      
 91 
     | 
    
         
            +
              
         
     | 
| 
      
 92 
     | 
    
         
            +
              
         
     | 
| 
      
 93 
     | 
    
         
            +
              
         
     | 
| 
      
 94 
     | 
    
         
            +
              
         
     | 
| 
      
 95 
     | 
    
         
            +
             
     | 
| 
      
 96 
     | 
    
         
            +
              
         
     | 
| 
      
 97 
     | 
    
         
            +
             
     | 
| 
      
 98 
     | 
    
         
            +
              
         
     | 
| 
      
 99 
     | 
    
         
            +
              <dl>
         
     | 
| 
      
 100 
     | 
    
         
            +
                <dt>Defined in:</dt>
         
     | 
| 
      
 101 
     | 
    
         
            +
                <dd>lib/timeboss/calendar/quarter.rb</dd>
         
     | 
| 
      
 102 
     | 
    
         
            +
              </dl>
         
     | 
| 
      
 103 
     | 
    
         
            +
              
         
     | 
| 
      
 104 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 105 
     | 
    
         
            +
             
     | 
| 
      
 106 
     | 
    
         
            +
            <h2>Overview</h2><div class="docstring">
         
     | 
| 
      
 107 
     | 
    
         
            +
              <div class="discussion">
         
     | 
| 
      
 108 
     | 
    
         
            +
                
         
     | 
| 
      
 109 
     | 
    
         
            +
            <p>Representation of a 3-month period within a calendar.</p>
         
     | 
| 
      
 110 
     | 
    
         
            +
             
     | 
| 
      
 111 
     | 
    
         
            +
             
     | 
| 
      
 112 
     | 
    
         
            +
              </div>
         
     | 
| 
      
 113 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 114 
     | 
    
         
            +
            <div class="tags">
         
     | 
| 
      
 115 
     | 
    
         
            +
              
         
     | 
| 
      
 116 
     | 
    
         
            +
             
     | 
| 
      
 117 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 118 
     | 
    
         
            +
              
         
     | 
| 
      
 119 
     | 
    
         
            +
                <h2>
         
     | 
| 
      
 120 
     | 
    
         
            +
                  Constant Summary
         
     | 
| 
      
 121 
     | 
    
         
            +
                  <small><a href="#" class="constants_summary_toggle">collapse</a></small>
         
     | 
| 
      
 122 
     | 
    
         
            +
                </h2>
         
     | 
| 
      
 123 
     | 
    
         
            +
             
     | 
| 
      
 124 
     | 
    
         
            +
                <dl class="constants">
         
     | 
| 
      
 125 
     | 
    
         
            +
                  
         
     | 
| 
      
 126 
     | 
    
         
            +
                    <dt id="NUM_MONTHS-constant" class="">NUM_MONTHS =
         
     | 
| 
      
 127 
     | 
    
         
            +
                      
         
     | 
| 
      
 128 
     | 
    
         
            +
                    </dt>
         
     | 
| 
      
 129 
     | 
    
         
            +
                    <dd><pre class="code"><span class='int'>3</span></pre></dd>
         
     | 
| 
      
 130 
     | 
    
         
            +
                  
         
     | 
| 
      
 131 
     | 
    
         
            +
                </dl>
         
     | 
| 
      
 132 
     | 
    
         
            +
              
         
     | 
| 
      
 133 
     | 
    
         
            +
             
     | 
| 
      
 134 
     | 
    
         
            +
             
     | 
| 
      
 135 
     | 
    
         
            +
             
     | 
| 
      
 136 
     | 
    
         
            +
              
         
     | 
| 
      
 137 
     | 
    
         
            +
              
         
     | 
| 
      
 138 
     | 
    
         
            +
              <h3 class="inherited">Constants included
         
     | 
| 
      
 139 
     | 
    
         
            +
                 from <span class='object_link'><a href="Support/Shiftable.html" title="TimeBoss::Calendar::Support::Shiftable (module)">Support::Shiftable</a></span></h3>
         
     | 
| 
      
 140 
     | 
    
         
            +
              <p class="inherited"><span class='object_link'><a href="Support/Shiftable.html#PERIODS-constant" title="TimeBoss::Calendar::Support::Shiftable::PERIODS (constant)">Support::Shiftable::PERIODS</a></span></p>
         
     | 
| 
      
 141 
     | 
    
         
            +
             
     | 
| 
      
 142 
     | 
    
         
            +
             
     | 
| 
      
 143 
     | 
    
         
            +
             
     | 
| 
      
 144 
     | 
    
         
            +
             
     | 
| 
      
 145 
     | 
    
         
            +
              <h2>Instance Attribute Summary</h2>
         
     | 
| 
      
 146 
     | 
    
         
            +
              
         
     | 
| 
      
 147 
     | 
    
         
            +
              <h3 class="inherited">Attributes inherited from <span class='object_link'><a href="Support/MonthlyUnit.html" title="TimeBoss::Calendar::Support::MonthlyUnit (class)">Support::MonthlyUnit</a></span></h3>
         
     | 
| 
      
 148 
     | 
    
         
            +
              <p class="inherited"><span class='object_link'><a href="Support/MonthlyUnit.html#index-instance_method" title="TimeBoss::Calendar::Support::MonthlyUnit#index (method)">#index</a></span>, <span class='object_link'><a href="Support/MonthlyUnit.html#year_index-instance_method" title="TimeBoss::Calendar::Support::MonthlyUnit#year_index (method)">#year_index</a></span></p>
         
     | 
| 
      
 149 
     | 
    
         
            +
             
     | 
| 
      
 150 
     | 
    
         
            +
              
         
     | 
| 
      
 151 
     | 
    
         
            +
              
         
     | 
| 
      
 152 
     | 
    
         
            +
              <h3 class="inherited">Attributes inherited from <span class='object_link'><a href="Support/Unit.html" title="TimeBoss::Calendar::Support::Unit (class)">Support::Unit</a></span></h3>
         
     | 
| 
      
 153 
     | 
    
         
            +
              <p class="inherited"><span class='object_link'><a href="Support/Unit.html#calendar-instance_method" title="TimeBoss::Calendar::Support::Unit#calendar (method)">#calendar</a></span>, <span class='object_link'><a href="Support/Unit.html#end_date-instance_method" title="TimeBoss::Calendar::Support::Unit#end_date (method)">#end_date</a></span>, <span class='object_link'><a href="Support/Unit.html#start_date-instance_method" title="TimeBoss::Calendar::Support::Unit#start_date (method)">#start_date</a></span></p>
         
     | 
| 
      
 154 
     | 
    
         
            +
             
     | 
| 
      
 155 
     | 
    
         
            +
             
     | 
| 
      
 156 
     | 
    
         
            +
              
         
     | 
| 
      
 157 
     | 
    
         
            +
                <h2>
         
     | 
| 
      
 158 
     | 
    
         
            +
                  Instance Method Summary
         
     | 
| 
      
 159 
     | 
    
         
            +
                  <small><a href="#" class="summary_toggle">collapse</a></small>
         
     | 
| 
      
 160 
     | 
    
         
            +
                </h2>
         
     | 
| 
      
 161 
     | 
    
         
            +
             
     | 
| 
      
 162 
     | 
    
         
            +
                <ul class="summary">
         
     | 
| 
      
 163 
     | 
    
         
            +
                  
         
     | 
| 
      
 164 
     | 
    
         
            +
                    <li class="public ">
         
     | 
| 
      
 165 
     | 
    
         
            +
              <span class="summary_signature">
         
     | 
| 
      
 166 
     | 
    
         
            +
                
         
     | 
| 
      
 167 
     | 
    
         
            +
                  <a href="#name-instance_method" title="#name (instance method)">#<strong>name</strong>  ⇒ String </a>
         
     | 
| 
      
 168 
     | 
    
         
            +
                
         
     | 
| 
      
 169 
     | 
    
         
            +
             
     | 
| 
      
 170 
     | 
    
         
            +
                
         
     | 
| 
      
 171 
     | 
    
         
            +
              </span>
         
     | 
| 
      
 172 
     | 
    
         
            +
              
         
     | 
| 
      
 173 
     | 
    
         
            +
              
         
     | 
| 
      
 174 
     | 
    
         
            +
              
         
     | 
| 
      
 175 
     | 
    
         
            +
              
         
     | 
| 
      
 176 
     | 
    
         
            +
              
         
     | 
| 
      
 177 
     | 
    
         
            +
              
         
     | 
| 
      
 178 
     | 
    
         
            +
              
         
     | 
| 
      
 179 
     | 
    
         
            +
             
     | 
| 
      
 180 
     | 
    
         
            +
              
         
     | 
| 
      
 181 
     | 
    
         
            +
                <span class="summary_desc"><div class='inline'>
         
     | 
| 
      
 182 
     | 
    
         
            +
            <p>Get a simple representation of this quarter.</p>
         
     | 
| 
      
 183 
     | 
    
         
            +
            </div></span>
         
     | 
| 
      
 184 
     | 
    
         
            +
              
         
     | 
| 
      
 185 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 186 
     | 
    
         
            +
             
     | 
| 
      
 187 
     | 
    
         
            +
                  
         
     | 
| 
      
 188 
     | 
    
         
            +
                    <li class="public ">
         
     | 
| 
      
 189 
     | 
    
         
            +
              <span class="summary_signature">
         
     | 
| 
      
 190 
     | 
    
         
            +
                
         
     | 
| 
      
 191 
     | 
    
         
            +
                  <a href="#title-instance_method" title="#title (instance method)">#<strong>title</strong>  ⇒ String </a>
         
     | 
| 
      
 192 
     | 
    
         
            +
                
         
     | 
| 
      
 193 
     | 
    
         
            +
             
     | 
| 
      
 194 
     | 
    
         
            +
                
         
     | 
| 
      
 195 
     | 
    
         
            +
              </span>
         
     | 
| 
      
 196 
     | 
    
         
            +
              
         
     | 
| 
      
 197 
     | 
    
         
            +
              
         
     | 
| 
      
 198 
     | 
    
         
            +
              
         
     | 
| 
      
 199 
     | 
    
         
            +
              
         
     | 
| 
      
 200 
     | 
    
         
            +
              
         
     | 
| 
      
 201 
     | 
    
         
            +
              
         
     | 
| 
      
 202 
     | 
    
         
            +
              
         
     | 
| 
      
 203 
     | 
    
         
            +
             
     | 
| 
      
 204 
     | 
    
         
            +
              
         
     | 
| 
      
 205 
     | 
    
         
            +
                <span class="summary_desc"><div class='inline'>
         
     | 
| 
      
 206 
     | 
    
         
            +
            <p>Get a “pretty” representation of this quarter.</p>
         
     | 
| 
      
 207 
     | 
    
         
            +
            </div></span>
         
     | 
| 
      
 208 
     | 
    
         
            +
              
         
     | 
| 
      
 209 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 210 
     | 
    
         
            +
             
     | 
| 
      
 211 
     | 
    
         
            +
                  
         
     | 
| 
      
 212 
     | 
    
         
            +
                </ul>
         
     | 
| 
      
 213 
     | 
    
         
            +
              
         
     | 
| 
      
 214 
     | 
    
         
            +
             
     | 
| 
      
 215 
     | 
    
         
            +
             
     | 
| 
      
 216 
     | 
    
         
            +
              
         
     | 
| 
      
 217 
     | 
    
         
            +
              
         
     | 
| 
      
 218 
     | 
    
         
            +
              
         
     | 
| 
      
 219 
     | 
    
         
            +
              
         
     | 
| 
      
 220 
     | 
    
         
            +
              
         
     | 
| 
      
 221 
     | 
    
         
            +
              
         
     | 
| 
      
 222 
     | 
    
         
            +
              
         
     | 
| 
      
 223 
     | 
    
         
            +
              
         
     | 
| 
      
 224 
     | 
    
         
            +
              <h3 class="inherited">Methods inherited from <span class='object_link'><a href="Support/MonthlyUnit.html" title="TimeBoss::Calendar::Support::MonthlyUnit (class)">Support::MonthlyUnit</a></span></h3>
         
     | 
| 
      
 225 
     | 
    
         
            +
              <p class="inherited"><span class='object_link'><a href="Support/MonthlyUnit.html#initialize-instance_method" title="TimeBoss::Calendar::Support::MonthlyUnit#initialize (method)">#initialize</a></span>, <span class='object_link'><a href="Support/MonthlyUnit.html#to_s-instance_method" title="TimeBoss::Calendar::Support::MonthlyUnit#to_s (method)">#to_s</a></span>, <span class='object_link'><a href="Support/MonthlyUnit.html#weeks-instance_method" title="TimeBoss::Calendar::Support::MonthlyUnit#weeks (method)">#weeks</a></span></p>
         
     | 
| 
      
 226 
     | 
    
         
            +
             
     | 
| 
      
 227 
     | 
    
         
            +
              
         
     | 
| 
      
 228 
     | 
    
         
            +
              
         
     | 
| 
      
 229 
     | 
    
         
            +
              
         
     | 
| 
      
 230 
     | 
    
         
            +
              
         
     | 
| 
      
 231 
     | 
    
         
            +
              
         
     | 
| 
      
 232 
     | 
    
         
            +
              
         
     | 
| 
      
 233 
     | 
    
         
            +
              
         
     | 
| 
      
 234 
     | 
    
         
            +
              
         
     | 
| 
      
 235 
     | 
    
         
            +
              <h3 class="inherited">Methods inherited from <span class='object_link'><a href="Support/Unit.html" title="TimeBoss::Calendar::Support::Unit (class)">Support::Unit</a></span></h3>
         
     | 
| 
      
 236 
     | 
    
         
            +
              <p class="inherited"><span class='object_link'><a href="Support/Unit.html#%2B-instance_method" title="TimeBoss::Calendar::Support::Unit#+ (method)">#+</a></span>, <span class='object_link'><a href="Support/Unit.html#--instance_method" title="TimeBoss::Calendar::Support::Unit#- (method)">#-</a></span>, <span class='object_link'><a href="Support/Unit.html#==-instance_method" title="TimeBoss::Calendar::Support::Unit#== (method)">#==</a></span>, <span class='object_link'><a href="Support/Unit.html#current%3F-instance_method" title="TimeBoss::Calendar::Support::Unit#current? (method)">#current?</a></span>, <span class='object_link'><a href="Support/Unit.html#format-instance_method" title="TimeBoss::Calendar::Support::Unit#format (method)">#format</a></span>, <span class='object_link'><a href="Support/Unit.html#initialize-instance_method" title="TimeBoss::Calendar::Support::Unit#initialize (method)">#initialize</a></span>, <span class='object_link'><a href="Support/Unit.html#offset-instance_method" title="TimeBoss::Calendar::Support::Unit#offset (method)">#offset</a></span>, <span class='object_link'><a href="Support/Unit.html#thru-instance_method" title="TimeBoss::Calendar::Support::Unit#thru (method)">#thru</a></span>, <span class='object_link'><a href="Support/Unit.html#to_range-instance_method" title="TimeBoss::Calendar::Support::Unit#to_range (method)">#to_range</a></span>, <span class='object_link'><a href="Support/Unit.html#type-class_method" title="TimeBoss::Calendar::Support::Unit.type (method)">type</a></span></p>
         
     | 
| 
      
 237 
     | 
    
         
            +
             
     | 
| 
      
 238 
     | 
    
         
            +
              
         
     | 
| 
      
 239 
     | 
    
         
            +
              
         
     | 
| 
      
 240 
     | 
    
         
            +
              
         
     | 
| 
      
 241 
     | 
    
         
            +
              
         
     | 
| 
      
 242 
     | 
    
         
            +
              
         
     | 
| 
      
 243 
     | 
    
         
            +
              
         
     | 
| 
      
 244 
     | 
    
         
            +
              
         
     | 
| 
      
 245 
     | 
    
         
            +
              
         
     | 
| 
      
 246 
     | 
    
         
            +
              
         
     | 
| 
      
 247 
     | 
    
         
            +
              
         
     | 
| 
      
 248 
     | 
    
         
            +
              
         
     | 
| 
      
 249 
     | 
    
         
            +
              
         
     | 
| 
      
 250 
     | 
    
         
            +
              
         
     | 
| 
      
 251 
     | 
    
         
            +
              
         
     | 
| 
      
 252 
     | 
    
         
            +
              <h3 class="inherited">Methods included from <span class='object_link'><a href="Support/Navigable.html" title="TimeBoss::Calendar::Support::Navigable (module)">Support::Navigable</a></span></h3>
         
     | 
| 
      
 253 
     | 
    
         
            +
              <p class="inherited"><span class='object_link'><a href="Support/Navigable.html#ago-instance_method" title="TimeBoss::Calendar::Support::Navigable#ago (method)">#ago</a></span>, <span class='object_link'><a href="Support/Navigable.html#ahead-instance_method" title="TimeBoss::Calendar::Support::Navigable#ahead (method)">#ahead</a></span>, <span class='object_link'><a href="Support/Navigable.html#next-instance_method" title="TimeBoss::Calendar::Support::Navigable#next (method)">#next</a></span>, <span class='object_link'><a href="Support/Navigable.html#previous-instance_method" title="TimeBoss::Calendar::Support::Navigable#previous (method)">#previous</a></span>, <span class='object_link'><a href="Support/Navigable.html#until-instance_method" title="TimeBoss::Calendar::Support::Navigable#until (method)">#until</a></span></p>
         
     | 
| 
      
 254 
     | 
    
         
            +
            <div id="constructor_details" class="method_details_list">
         
     | 
| 
      
 255 
     | 
    
         
            +
              <h2>Constructor Details</h2>
         
     | 
| 
      
 256 
     | 
    
         
            +
              
         
     | 
| 
      
 257 
     | 
    
         
            +
                <p class="notice">This class inherits a constructor from <span class='object_link'><a href="Support/MonthlyUnit.html#initialize-instance_method" title="TimeBoss::Calendar::Support::MonthlyUnit#initialize (method)">TimeBoss::Calendar::Support::MonthlyUnit</a></span></p>
         
     | 
| 
      
 258 
     | 
    
         
            +
              
         
     | 
| 
      
 259 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 260 
     | 
    
         
            +
             
     | 
| 
      
 261 
     | 
    
         
            +
             
     | 
| 
      
 262 
     | 
    
         
            +
              <div id="instance_method_details" class="method_details_list">
         
     | 
| 
      
 263 
     | 
    
         
            +
                <h2>Instance Method Details</h2>
         
     | 
| 
      
 264 
     | 
    
         
            +
             
     | 
| 
      
 265 
     | 
    
         
            +
                
         
     | 
| 
      
 266 
     | 
    
         
            +
                  <div class="method_details first">
         
     | 
| 
      
 267 
     | 
    
         
            +
              <h3 class="signature first" id="name-instance_method">
         
     | 
| 
      
 268 
     | 
    
         
            +
              
         
     | 
| 
      
 269 
     | 
    
         
            +
                #<strong>name</strong>  ⇒ <tt>String</tt> 
         
     | 
| 
      
 270 
     | 
    
         
            +
              
         
     | 
| 
      
 271 
     | 
    
         
            +
             
     | 
| 
      
 272 
     | 
    
         
            +
              
         
     | 
| 
      
 273 
     | 
    
         
            +
             
     | 
| 
      
 274 
     | 
    
         
            +
              
         
     | 
| 
      
 275 
     | 
    
         
            +
            </h3><div class="docstring">
         
     | 
| 
      
 276 
     | 
    
         
            +
              <div class="discussion">
         
     | 
| 
      
 277 
     | 
    
         
            +
                
         
     | 
| 
      
 278 
     | 
    
         
            +
            <p>Get a simple representation of this quarter.</p>
         
     | 
| 
      
 279 
     | 
    
         
            +
             
     | 
| 
      
 280 
     | 
    
         
            +
             
     | 
| 
      
 281 
     | 
    
         
            +
              </div>
         
     | 
| 
      
 282 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 283 
     | 
    
         
            +
            <div class="tags">
         
     | 
| 
      
 284 
     | 
    
         
            +
              
         
     | 
| 
      
 285 
     | 
    
         
            +
            <p class="tag_title">Returns:</p>
         
     | 
| 
      
 286 
     | 
    
         
            +
            <ul class="return">
         
     | 
| 
      
 287 
     | 
    
         
            +
              
         
     | 
| 
      
 288 
     | 
    
         
            +
                <li>
         
     | 
| 
      
 289 
     | 
    
         
            +
                  
         
     | 
| 
      
 290 
     | 
    
         
            +
                  
         
     | 
| 
      
 291 
     | 
    
         
            +
                    <span class='type'>(<tt>String</tt>)</span>
         
     | 
| 
      
 292 
     | 
    
         
            +
                  
         
     | 
| 
      
 293 
     | 
    
         
            +
                  
         
     | 
| 
      
 294 
     | 
    
         
            +
                  
         
     | 
| 
      
 295 
     | 
    
         
            +
                    —
         
     | 
| 
      
 296 
     | 
    
         
            +
                    <div class='inline'>
         
     | 
| 
      
 297 
     | 
    
         
            +
            <p>(e.g. “2020Q3”)</p>
         
     | 
| 
      
 298 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 299 
     | 
    
         
            +
                  
         
     | 
| 
      
 300 
     | 
    
         
            +
                </li>
         
     | 
| 
      
 301 
     | 
    
         
            +
              
         
     | 
| 
      
 302 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 303 
     | 
    
         
            +
             
     | 
| 
      
 304 
     | 
    
         
            +
            </div><table class="source_code">
         
     | 
| 
      
 305 
     | 
    
         
            +
              <tr>
         
     | 
| 
      
 306 
     | 
    
         
            +
                <td>
         
     | 
| 
      
 307 
     | 
    
         
            +
                  <pre class="lines">
         
     | 
| 
      
 308 
     | 
    
         
            +
             
     | 
| 
      
 309 
     | 
    
         
            +
             
     | 
| 
      
 310 
     | 
    
         
            +
            12
         
     | 
| 
      
 311 
     | 
    
         
            +
            13
         
     | 
| 
      
 312 
     | 
    
         
            +
            14</pre>
         
     | 
| 
      
 313 
     | 
    
         
            +
                </td>
         
     | 
| 
      
 314 
     | 
    
         
            +
                <td>
         
     | 
| 
      
 315 
     | 
    
         
            +
                  <pre class="code"><span class="info file"># File 'lib/timeboss/calendar/quarter.rb', line 12</span>
         
     | 
| 
      
 316 
     | 
    
         
            +
             
     | 
| 
      
 317 
     | 
    
         
            +
            <span class='kw'>def</span> <span class='id identifier rubyid_name'>name</span>
         
     | 
| 
      
 318 
     | 
    
         
            +
              <span class='tstring'><span class='tstring_beg'>"</span><span class='embexpr_beg'>#{</span><span class='id identifier rubyid_year_index'>year_index</span><span class='embexpr_end'>}</span><span class='tstring_content'>Q</span><span class='embexpr_beg'>#{</span><span class='id identifier rubyid_index'>index</span><span class='embexpr_end'>}</span><span class='tstring_end'>"</span></span>
         
     | 
| 
      
 319 
     | 
    
         
            +
            <span class='kw'>end</span></pre>
         
     | 
| 
      
 320 
     | 
    
         
            +
                </td>
         
     | 
| 
      
 321 
     | 
    
         
            +
              </tr>
         
     | 
| 
      
 322 
     | 
    
         
            +
            </table>
         
     | 
| 
      
 323 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 324 
     | 
    
         
            +
                
         
     | 
| 
      
 325 
     | 
    
         
            +
                  <div class="method_details ">
         
     | 
| 
      
 326 
     | 
    
         
            +
              <h3 class="signature " id="title-instance_method">
         
     | 
| 
      
 327 
     | 
    
         
            +
              
         
     | 
| 
      
 328 
     | 
    
         
            +
                #<strong>title</strong>  ⇒ <tt>String</tt> 
         
     | 
| 
      
 329 
     | 
    
         
            +
              
         
     | 
| 
      
 330 
     | 
    
         
            +
             
     | 
| 
      
 331 
     | 
    
         
            +
              
         
     | 
| 
      
 332 
     | 
    
         
            +
             
     | 
| 
      
 333 
     | 
    
         
            +
              
         
     | 
| 
      
 334 
     | 
    
         
            +
            </h3><div class="docstring">
         
     | 
| 
      
 335 
     | 
    
         
            +
              <div class="discussion">
         
     | 
| 
      
 336 
     | 
    
         
            +
                
         
     | 
| 
      
 337 
     | 
    
         
            +
            <p>Get a “pretty” representation of this quarter.</p>
         
     | 
| 
      
 338 
     | 
    
         
            +
             
     | 
| 
      
 339 
     | 
    
         
            +
             
     | 
| 
      
 340 
     | 
    
         
            +
              </div>
         
     | 
| 
      
 341 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 342 
     | 
    
         
            +
            <div class="tags">
         
     | 
| 
      
 343 
     | 
    
         
            +
              
         
     | 
| 
      
 344 
     | 
    
         
            +
            <p class="tag_title">Returns:</p>
         
     | 
| 
      
 345 
     | 
    
         
            +
            <ul class="return">
         
     | 
| 
      
 346 
     | 
    
         
            +
              
         
     | 
| 
      
 347 
     | 
    
         
            +
                <li>
         
     | 
| 
      
 348 
     | 
    
         
            +
                  
         
     | 
| 
      
 349 
     | 
    
         
            +
                  
         
     | 
| 
      
 350 
     | 
    
         
            +
                    <span class='type'>(<tt>String</tt>)</span>
         
     | 
| 
      
 351 
     | 
    
         
            +
                  
         
     | 
| 
      
 352 
     | 
    
         
            +
                  
         
     | 
| 
      
 353 
     | 
    
         
            +
                  
         
     | 
| 
      
 354 
     | 
    
         
            +
                    —
         
     | 
| 
      
 355 
     | 
    
         
            +
                    <div class='inline'>
         
     | 
| 
      
 356 
     | 
    
         
            +
            <p>(e.g. “Q3 2020”)</p>
         
     | 
| 
      
 357 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 358 
     | 
    
         
            +
                  
         
     | 
| 
      
 359 
     | 
    
         
            +
                </li>
         
     | 
| 
      
 360 
     | 
    
         
            +
              
         
     | 
| 
      
 361 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 362 
     | 
    
         
            +
             
     | 
| 
      
 363 
     | 
    
         
            +
            </div><table class="source_code">
         
     | 
| 
      
 364 
     | 
    
         
            +
              <tr>
         
     | 
| 
      
 365 
     | 
    
         
            +
                <td>
         
     | 
| 
      
 366 
     | 
    
         
            +
                  <pre class="lines">
         
     | 
| 
      
 367 
     | 
    
         
            +
             
     | 
| 
      
 368 
     | 
    
         
            +
             
     | 
| 
      
 369 
     | 
    
         
            +
            18
         
     | 
| 
      
 370 
     | 
    
         
            +
            19
         
     | 
| 
      
 371 
     | 
    
         
            +
            20</pre>
         
     | 
| 
      
 372 
     | 
    
         
            +
                </td>
         
     | 
| 
      
 373 
     | 
    
         
            +
                <td>
         
     | 
| 
      
 374 
     | 
    
         
            +
                  <pre class="code"><span class="info file"># File 'lib/timeboss/calendar/quarter.rb', line 18</span>
         
     | 
| 
      
 375 
     | 
    
         
            +
             
     | 
| 
      
 376 
     | 
    
         
            +
            <span class='kw'>def</span> <span class='id identifier rubyid_title'>title</span>
         
     | 
| 
      
 377 
     | 
    
         
            +
              <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>Q</span><span class='embexpr_beg'>#{</span><span class='id identifier rubyid_index'>index</span><span class='embexpr_end'>}</span><span class='tstring_content'> </span><span class='embexpr_beg'>#{</span><span class='id identifier rubyid_year_index'>year_index</span><span class='embexpr_end'>}</span><span class='tstring_end'>"</span></span>
         
     | 
| 
      
 378 
     | 
    
         
            +
            <span class='kw'>end</span></pre>
         
     | 
| 
      
 379 
     | 
    
         
            +
                </td>
         
     | 
| 
      
 380 
     | 
    
         
            +
              </tr>
         
     | 
| 
      
 381 
     | 
    
         
            +
            </table>
         
     | 
| 
      
 382 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 383 
     | 
    
         
            +
                
         
     | 
| 
      
 384 
     | 
    
         
            +
              </div>
         
     | 
| 
      
 385 
     | 
    
         
            +
             
     | 
| 
      
 386 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 387 
     | 
    
         
            +
             
     | 
| 
      
 388 
     | 
    
         
            +
                  <div id="footer">
         
     | 
| 
      
 389 
     | 
    
         
            +
              Generated on Sun Jul 19 10:12:11 2020 by
         
     | 
| 
      
 390 
     | 
    
         
            +
              <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
         
     | 
| 
      
 391 
     | 
    
         
            +
              0.9.25 (ruby-2.4.1).
         
     | 
| 
      
 392 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 393 
     | 
    
         
            +
             
     | 
| 
      
 394 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 395 
     | 
    
         
            +
              </body>
         
     | 
| 
      
 396 
     | 
    
         
            +
            </html>
         
     | 
| 
         @@ -0,0 +1,131 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <!DOCTYPE html>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <html>
         
     | 
| 
      
 3 
     | 
    
         
            +
              <head>
         
     | 
| 
      
 4 
     | 
    
         
            +
                <meta charset="utf-8">
         
     | 
| 
      
 5 
     | 
    
         
            +
            <meta name="viewport" content="width=device-width, initial-scale=1.0">
         
     | 
| 
      
 6 
     | 
    
         
            +
            <title>
         
     | 
| 
      
 7 
     | 
    
         
            +
              Module: TimeBoss::Calendar::Support
         
     | 
| 
      
 8 
     | 
    
         
            +
              
         
     | 
| 
      
 9 
     | 
    
         
            +
                — Documentation by YARD 0.9.25
         
     | 
| 
      
 10 
     | 
    
         
            +
              
         
     | 
| 
      
 11 
     | 
    
         
            +
            </title>
         
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
      
 13 
     | 
    
         
            +
              <link rel="stylesheet" href="../../css/style.css" type="text/css" />
         
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
      
 15 
     | 
    
         
            +
              <link rel="stylesheet" href="../../css/common.css" type="text/css" />
         
     | 
| 
      
 16 
     | 
    
         
            +
             
     | 
| 
      
 17 
     | 
    
         
            +
            <script type="text/javascript">
         
     | 
| 
      
 18 
     | 
    
         
            +
              pathId = "TimeBoss::Calendar::Support";
         
     | 
| 
      
 19 
     | 
    
         
            +
              relpath = '../../';
         
     | 
| 
      
 20 
     | 
    
         
            +
            </script>
         
     | 
| 
      
 21 
     | 
    
         
            +
             
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
      
 23 
     | 
    
         
            +
              <script type="text/javascript" charset="utf-8" src="../../js/jquery.js"></script>
         
     | 
| 
      
 24 
     | 
    
         
            +
             
     | 
| 
      
 25 
     | 
    
         
            +
              <script type="text/javascript" charset="utf-8" src="../../js/app.js"></script>
         
     | 
| 
      
 26 
     | 
    
         
            +
             
     | 
| 
      
 27 
     | 
    
         
            +
             
     | 
| 
      
 28 
     | 
    
         
            +
              </head>
         
     | 
| 
      
 29 
     | 
    
         
            +
              <body>
         
     | 
| 
      
 30 
     | 
    
         
            +
                <div class="nav_wrap">
         
     | 
| 
      
 31 
     | 
    
         
            +
                  <iframe id="nav" src="../../class_list.html?1"></iframe>
         
     | 
| 
      
 32 
     | 
    
         
            +
                  <div id="resizer"></div>
         
     | 
| 
      
 33 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 34 
     | 
    
         
            +
             
     | 
| 
      
 35 
     | 
    
         
            +
                <div id="main" tabindex="-1">
         
     | 
| 
      
 36 
     | 
    
         
            +
                  <div id="header">
         
     | 
| 
      
 37 
     | 
    
         
            +
                    <div id="menu">
         
     | 
| 
      
 38 
     | 
    
         
            +
              
         
     | 
| 
      
 39 
     | 
    
         
            +
                <a href="../../_index.html">Index (S)</a> »
         
     | 
| 
      
 40 
     | 
    
         
            +
                <span class='title'><span class='object_link'><a href="../../TimeBoss.html" title="TimeBoss (module)">TimeBoss</a></span></span> » <span class='title'><span class='object_link'><a href="../Calendar.html" title="TimeBoss::Calendar (module)">Calendar</a></span></span>
         
     | 
| 
      
 41 
     | 
    
         
            +
                 » 
         
     | 
| 
      
 42 
     | 
    
         
            +
                <span class="title">Support</span>
         
     | 
| 
      
 43 
     | 
    
         
            +
              
         
     | 
| 
      
 44 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 45 
     | 
    
         
            +
             
     | 
| 
      
 46 
     | 
    
         
            +
                    <div id="search">
         
     | 
| 
      
 47 
     | 
    
         
            +
              
         
     | 
| 
      
 48 
     | 
    
         
            +
                <a class="full_list_link" id="class_list_link"
         
     | 
| 
      
 49 
     | 
    
         
            +
                    href="../../class_list.html">
         
     | 
| 
      
 50 
     | 
    
         
            +
             
     | 
| 
      
 51 
     | 
    
         
            +
                    <svg width="24" height="24">
         
     | 
| 
      
 52 
     | 
    
         
            +
                      <rect x="0" y="4" width="24" height="4" rx="1" ry="1"></rect>
         
     | 
| 
      
 53 
     | 
    
         
            +
                      <rect x="0" y="12" width="24" height="4" rx="1" ry="1"></rect>
         
     | 
| 
      
 54 
     | 
    
         
            +
                      <rect x="0" y="20" width="24" height="4" rx="1" ry="1"></rect>
         
     | 
| 
      
 55 
     | 
    
         
            +
                    </svg>
         
     | 
| 
      
 56 
     | 
    
         
            +
                </a>
         
     | 
| 
      
 57 
     | 
    
         
            +
              
         
     | 
| 
      
 58 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 59 
     | 
    
         
            +
                    <div class="clear"></div>
         
     | 
| 
      
 60 
     | 
    
         
            +
                  </div>
         
     | 
| 
      
 61 
     | 
    
         
            +
             
     | 
| 
      
 62 
     | 
    
         
            +
                  <div id="content"><h1>Module: TimeBoss::Calendar::Support
         
     | 
| 
      
 63 
     | 
    
         
            +
              
         
     | 
| 
      
 64 
     | 
    
         
            +
              
         
     | 
| 
      
 65 
     | 
    
         
            +
              
         
     | 
| 
      
 66 
     | 
    
         
            +
            </h1>
         
     | 
| 
      
 67 
     | 
    
         
            +
            <div class="box_info">
         
     | 
| 
      
 68 
     | 
    
         
            +
              
         
     | 
| 
      
 69 
     | 
    
         
            +
             
     | 
| 
      
 70 
     | 
    
         
            +
              
         
     | 
| 
      
 71 
     | 
    
         
            +
              
         
     | 
| 
      
 72 
     | 
    
         
            +
              
         
     | 
| 
      
 73 
     | 
    
         
            +
              
         
     | 
| 
      
 74 
     | 
    
         
            +
              
         
     | 
| 
      
 75 
     | 
    
         
            +
             
     | 
| 
      
 76 
     | 
    
         
            +
              
         
     | 
| 
      
 77 
     | 
    
         
            +
             
     | 
| 
      
 78 
     | 
    
         
            +
              
         
     | 
| 
      
 79 
     | 
    
         
            +
              <dl>
         
     | 
| 
      
 80 
     | 
    
         
            +
                <dt>Defined in:</dt>
         
     | 
| 
      
 81 
     | 
    
         
            +
                <dd>lib/timeboss/calendar/support.rb<span class="defines">,<br />
         
     | 
| 
      
 82 
     | 
    
         
            +
              lib/timeboss/calendar/support/unit.rb,<br /> lib/timeboss/calendar/support/formatter.rb,<br /> lib/timeboss/calendar/support/navigable.rb,<br /> lib/timeboss/calendar/support/shiftable.rb,<br /> lib/timeboss/calendar/support/month_basis.rb,<br /> lib/timeboss/calendar/support/monthly_unit.rb</span>
         
     | 
| 
      
 83 
     | 
    
         
            +
            </dd>
         
     | 
| 
      
 84 
     | 
    
         
            +
              </dl>
         
     | 
| 
      
 85 
     | 
    
         
            +
              
         
     | 
| 
      
 86 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 87 
     | 
    
         
            +
             
     | 
| 
      
 88 
     | 
    
         
            +
            <h2>Overview</h2><div class="docstring">
         
     | 
| 
      
 89 
     | 
    
         
            +
              <div class="discussion">
         
     | 
| 
      
 90 
     | 
    
         
            +
                
         
     | 
| 
      
 91 
     | 
    
         
            +
            <p>Provides modules and abstract base classes to facilitate calendar
         
     | 
| 
      
 92 
     | 
    
         
            +
            implementation.</p>
         
     | 
| 
      
 93 
     | 
    
         
            +
             
     | 
| 
      
 94 
     | 
    
         
            +
             
     | 
| 
      
 95 
     | 
    
         
            +
              </div>
         
     | 
| 
      
 96 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 97 
     | 
    
         
            +
            <div class="tags">
         
     | 
| 
      
 98 
     | 
    
         
            +
              
         
     | 
| 
      
 99 
     | 
    
         
            +
             
     | 
| 
      
 100 
     | 
    
         
            +
            </div><h2>Defined Under Namespace</h2>
         
     | 
| 
      
 101 
     | 
    
         
            +
            <p class="children">
         
     | 
| 
      
 102 
     | 
    
         
            +
              
         
     | 
| 
      
 103 
     | 
    
         
            +
                
         
     | 
| 
      
 104 
     | 
    
         
            +
                  <strong class="modules">Modules:</strong> <span class='object_link'><a href="Support/Navigable.html" title="TimeBoss::Calendar::Support::Navigable (module)">Navigable</a></span>, <span class='object_link'><a href="Support/Shiftable.html" title="TimeBoss::Calendar::Support::Shiftable (module)">Shiftable</a></span>
         
     | 
| 
      
 105 
     | 
    
         
            +
                
         
     | 
| 
      
 106 
     | 
    
         
            +
              
         
     | 
| 
      
 107 
     | 
    
         
            +
                
         
     | 
| 
      
 108 
     | 
    
         
            +
                  <strong class="classes">Classes:</strong> <span class='object_link'><a href="Support/Formatter.html" title="TimeBoss::Calendar::Support::Formatter (class)">Formatter</a></span>, <span class='object_link'><a href="Support/MonthBasis.html" title="TimeBoss::Calendar::Support::MonthBasis (class)">MonthBasis</a></span>, <span class='object_link'><a href="Support/MonthlyUnit.html" title="TimeBoss::Calendar::Support::MonthlyUnit (class)">MonthlyUnit</a></span>, <span class='object_link'><a href="Support/Unit.html" title="TimeBoss::Calendar::Support::Unit (class)">Unit</a></span>
         
     | 
| 
      
 109 
     | 
    
         
            +
                
         
     | 
| 
      
 110 
     | 
    
         
            +
              
         
     | 
| 
      
 111 
     | 
    
         
            +
            </p>
         
     | 
| 
      
 112 
     | 
    
         
            +
             
     | 
| 
      
 113 
     | 
    
         
            +
             
     | 
| 
      
 114 
     | 
    
         
            +
             
     | 
| 
      
 115 
     | 
    
         
            +
             
     | 
| 
      
 116 
     | 
    
         
            +
             
     | 
| 
      
 117 
     | 
    
         
            +
             
     | 
| 
      
 118 
     | 
    
         
            +
             
     | 
| 
      
 119 
     | 
    
         
            +
             
     | 
| 
      
 120 
     | 
    
         
            +
             
     | 
| 
      
 121 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 122 
     | 
    
         
            +
             
     | 
| 
      
 123 
     | 
    
         
            +
                  <div id="footer">
         
     | 
| 
      
 124 
     | 
    
         
            +
              Generated on Sun Jul 19 10:12:10 2020 by
         
     | 
| 
      
 125 
     | 
    
         
            +
              <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
         
     | 
| 
      
 126 
     | 
    
         
            +
              0.9.25 (ruby-2.4.1).
         
     | 
| 
      
 127 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 128 
     | 
    
         
            +
             
     | 
| 
      
 129 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 130 
     | 
    
         
            +
              </body>
         
     | 
| 
      
 131 
     | 
    
         
            +
            </html>
         
     |