timecop-rspec 1.0.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.
Files changed (155) hide show
  1. checksums.yaml +7 -0
  2. checksums.yaml.gz.sig +0 -0
  3. data/.devcontainer/devcontainer.json +26 -0
  4. data/.env.local.example +3 -0
  5. data/.envrc +41 -0
  6. data/.github/FUNDING.yml +13 -0
  7. data/.github/dependabot.yml +12 -0
  8. data/.github/workflows/ancient.yml +77 -0
  9. data/.github/workflows/auto-assign.yml +21 -0
  10. data/.github/workflows/codeql-analysis.yml +70 -0
  11. data/.github/workflows/coverage.yml +126 -0
  12. data/.github/workflows/current.yml +85 -0
  13. data/.github/workflows/dependency-review.yml +20 -0
  14. data/.github/workflows/deps_locked.yml +75 -0
  15. data/.github/workflows/deps_unlocked.yml +84 -0
  16. data/.github/workflows/discord-notifier.yml +38 -0
  17. data/.github/workflows/heads.yml +84 -0
  18. data/.github/workflows/jruby.yml +75 -0
  19. data/.github/workflows/legacy.yml +67 -0
  20. data/.github/workflows/style.yml +64 -0
  21. data/.github/workflows/supported.yml +82 -0
  22. data/.github/workflows/truffle.yml +75 -0
  23. data/.github/workflows/unsupported.yml +75 -0
  24. data/.gitignore +45 -0
  25. data/.gitlab-ci.yml +44 -0
  26. data/.idea/.gitignore +8 -0
  27. data/.idea/GitLink.xml +6 -0
  28. data/.idea/misc.xml +4 -0
  29. data/.idea/modules.xml +8 -0
  30. data/.idea/timecop-rspec.iml +120 -0
  31. data/.idea/vcs.xml +6 -0
  32. data/.junie/TASK_NOTE.md +1 -0
  33. data/.junie/guidelines.md +139 -0
  34. data/.qlty/qlty.toml +79 -0
  35. data/.rspec +8 -0
  36. data/.rubocop.yml +15 -0
  37. data/.rubocop_gradual.lock +76 -0
  38. data/.simplecov +11 -0
  39. data/.tool-versions +1 -0
  40. data/.yard_gfm_support.rb +22 -0
  41. data/.yardopts +11 -0
  42. data/Appraisal.root.gemfile +12 -0
  43. data/Appraisals +104 -0
  44. data/CHANGELOG.md +27 -0
  45. data/CITATION.cff +20 -0
  46. data/CNAME +1 -0
  47. data/CODE_OF_CONDUCT.md +134 -0
  48. data/CONTRIBUTING.md +145 -0
  49. data/Gemfile +38 -0
  50. data/Gemfile.lock +315 -0
  51. data/LICENSE.txt +22 -0
  52. data/README.md +563 -0
  53. data/REEK +0 -0
  54. data/RUBOCOP.md +71 -0
  55. data/Rakefile +287 -0
  56. data/SECURITY.md +21 -0
  57. data/bin/appraisal +16 -0
  58. data/bin/bundle-audit +16 -0
  59. data/bin/bundler-audit +16 -0
  60. data/bin/code_climate_reek +16 -0
  61. data/bin/coderay +16 -0
  62. data/bin/console +38 -0
  63. data/bin/erb +16 -0
  64. data/bin/gem_checksums +16 -0
  65. data/bin/htmldiff +16 -0
  66. data/bin/irb +16 -0
  67. data/bin/kramdown +16 -0
  68. data/bin/ldiff +16 -0
  69. data/bin/nokogiri +16 -0
  70. data/bin/pry +16 -0
  71. data/bin/racc +16 -0
  72. data/bin/rake +16 -0
  73. data/bin/rdbg +16 -0
  74. data/bin/rdoc +16 -0
  75. data/bin/reek +16 -0
  76. data/bin/ri +16 -0
  77. data/bin/rspec +16 -0
  78. data/bin/rubocop +16 -0
  79. data/bin/rubocop-gradual +16 -0
  80. data/bin/ruby-parse +16 -0
  81. data/bin/ruby-rewrite +16 -0
  82. data/bin/setup +33 -0
  83. data/bin/standardrb +16 -0
  84. data/bin/thor +16 -0
  85. data/bin/yard +16 -0
  86. data/bin/yard-junk +16 -0
  87. data/bin/yardoc +16 -0
  88. data/bin/yri +16 -0
  89. data/certs/pboling.pem +27 -0
  90. data/checksums/timecop-rspec-1.0.0.gem.sha256 +1 -0
  91. data/checksums/timecop-rspec-1.0.0.gem.sha512 +1 -0
  92. data/docs/Timecop/Rspec/ExampleDecorator.html +626 -0
  93. data/docs/Timecop/Rspec/SequentialTimeMachine.html +338 -0
  94. data/docs/Timecop/Rspec/TimeMachine.html +357 -0
  95. data/docs/Timecop/Rspec/TravelLog.html +440 -0
  96. data/docs/Timecop/Rspec/Traveler.html +353 -0
  97. data/docs/Timecop/Rspec/Version.html +154 -0
  98. data/docs/Timecop/Rspec.html +474 -0
  99. data/docs/Timecop.html +149 -0
  100. data/docs/_index.html +218 -0
  101. data/docs/class_list.html +54 -0
  102. data/docs/css/common.css +1 -0
  103. data/docs/css/full_list.css +58 -0
  104. data/docs/css/style.css +503 -0
  105. data/docs/file.CHANGELOG.html +99 -0
  106. data/docs/file.CITATION.html +92 -0
  107. data/docs/file.CODE_OF_CONDUCT.html +201 -0
  108. data/docs/file.CONTRIBUTING.html +220 -0
  109. data/docs/file.LICENSE.html +70 -0
  110. data/docs/file.README.html +523 -0
  111. data/docs/file.REEK.html +71 -0
  112. data/docs/file.RUBOCOP.html +171 -0
  113. data/docs/file.SECURITY.html +101 -0
  114. data/docs/file.rspec.html +109 -0
  115. data/docs/file.timecop.html +72 -0
  116. data/docs/file_list.html +109 -0
  117. data/docs/frames.html +22 -0
  118. data/docs/index.html +523 -0
  119. data/docs/js/app.js +344 -0
  120. data/docs/js/full_list.js +242 -0
  121. data/docs/js/jquery.js +4 -0
  122. data/docs/method_list.html +198 -0
  123. data/docs/top-level-namespace.html +110 -0
  124. data/gemfiles/audit.gemfile +10 -0
  125. data/gemfiles/coverage.gemfile +10 -0
  126. data/gemfiles/current.gemfile +8 -0
  127. data/gemfiles/deps_unlocked.gemfile +13 -0
  128. data/gemfiles/head.gemfile +9 -0
  129. data/gemfiles/modular/audit.gemfile +5 -0
  130. data/gemfiles/modular/coverage.gemfile +6 -0
  131. data/gemfiles/modular/documentation.gemfile +11 -0
  132. data/gemfiles/modular/style.gemfile +14 -0
  133. data/gemfiles/ruby_2_3.gemfile +5 -0
  134. data/gemfiles/ruby_2_4.gemfile +5 -0
  135. data/gemfiles/ruby_2_5.gemfile +5 -0
  136. data/gemfiles/ruby_2_6.gemfile +8 -0
  137. data/gemfiles/ruby_2_7.gemfile +8 -0
  138. data/gemfiles/ruby_3_0.gemfile +8 -0
  139. data/gemfiles/ruby_3_1.gemfile +8 -0
  140. data/gemfiles/ruby_3_2.gemfile +8 -0
  141. data/gemfiles/ruby_3_3.gemfile +8 -0
  142. data/gemfiles/style.gemfile +10 -0
  143. data/lib/timecop/rspec/example_decorator.rb +100 -0
  144. data/lib/timecop/rspec/sequential_time_machine.rb +80 -0
  145. data/lib/timecop/rspec/time_machine.rb +58 -0
  146. data/lib/timecop/rspec/travel_log.rb +103 -0
  147. data/lib/timecop/rspec/traveler.rb +68 -0
  148. data/lib/timecop/rspec/version.rb +37 -0
  149. data/lib/timecop/rspec.rb +78 -0
  150. data/sig/timecop/rspec.rbs +40 -0
  151. data/sig/timecop.rbs +2 -0
  152. data/timecop-rspec.gemspec +146 -0
  153. data.tar.gz.sig +2 -0
  154. metadata +434 -0
  155. metadata.gz.sig +0 -0
@@ -0,0 +1,171 @@
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
+ File: RUBOCOP
8
+
9
+ &mdash; Documentation by YARD 0.9.37
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 = "RUBOCOP";
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="file_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</a> &raquo;
40
+ <span class="title">File: RUBOCOP</span>
41
+
42
+ </div>
43
+
44
+ <div id="search">
45
+
46
+ <a class="full_list_link" id="class_list_link"
47
+ href="class_list.html">
48
+
49
+ <svg width="24" height="24">
50
+ <rect x="0" y="4" width="24" height="4" rx="1" ry="1"></rect>
51
+ <rect x="0" y="12" width="24" height="4" rx="1" ry="1"></rect>
52
+ <rect x="0" y="20" width="24" height="4" rx="1" ry="1"></rect>
53
+ </svg>
54
+ </a>
55
+
56
+ </div>
57
+ <div class="clear"></div>
58
+ </div>
59
+
60
+ <div id="content"><div id='filecontents'><h1 id="rubocop-usage-guide">RuboCop Usage Guide</h1>
61
+
62
+ <h2 id="overview">Overview</h2>
63
+
64
+ <p>A tale of two RuboCop plugin gems.</p>
65
+
66
+ <h3 id="rubocop-gradual">RuboCop Gradual</h3>
67
+
68
+ <p>This project uses <code>rubocop_gradual</code> instead of vanilla RuboCop for code style checking. The <code>rubocop_gradual</code> tool allows for gradual adoption of RuboCop rules by tracking violations in a lock file.</p>
69
+
70
+ <h3 id="rubocop-lts">RuboCop LTS</h3>
71
+
72
+ <p>This project uses <code>rubocop-lts</code> to ensure, on a best-effort basis, compatibility with Ruby &gt;= 1.9.2.<br>
73
+ RuboCop rules are meticulously configured by the <code>rubocop-lts</code> family of gems to ensure that a project is compatible with a specific version of Ruby. See: https://rubocop-lts.gitlab.io for more.</p>
74
+
75
+ <h2 id="checking-rubocop-violations">Checking RuboCop Violations</h2>
76
+
77
+ <p>To check for RuboCop violations in this project, always use:</p>
78
+
79
+ <pre class="code language-bash"><code class="language-bash">bundle exec rake rubocop_gradual:check
80
+ </code></pre>
81
+
82
+ <p><strong>Do not use</strong> the standard RuboCop commands like:</p>
83
+ <ul>
84
+ <li><code>bundle exec rubocop</code></li>
85
+ <li><code>rubocop</code></li>
86
+ </ul>
87
+
88
+ <h2 id="understanding-the-lock-file">Understanding the Lock File</h2>
89
+
90
+ <p>The <code>.rubocop_gradual.lock</code> file tracks all current RuboCop violations in the project. This allows the team to:</p>
91
+
92
+ <ol>
93
+ <li>Prevent new violations while gradually fixing existing ones</li>
94
+ <li>Track progress on code style improvements</li>
95
+ <li>Ensure CI builds don’t fail due to pre-existing violations</li>
96
+ </ol>
97
+
98
+ <h2 id="common-commands">Common Commands</h2>
99
+
100
+ <ul>
101
+ <li>
102
+ <strong>Check violations</strong>
103
+ <ul>
104
+ <li><code>bundle exec rake rubocop_gradual</code></li>
105
+ <li><code>bundle exec rake rubocop_gradual:check</code></li>
106
+ </ul>
107
+ </li>
108
+ <li>
109
+ <strong>(Safe) Autocorrect violations, and update lockfile if no new violations</strong>
110
+ <ul>
111
+ <li><code>bundle exec rake rubocop_gradual:autocorrect</code></li>
112
+ </ul>
113
+ </li>
114
+ <li>
115
+ <strong>Force update the lock file (w/o autocorrect) to match violations present in code</strong>
116
+ <ul>
117
+ <li><code>bundle exec rake rubocop_gradual:force_update</code></li>
118
+ </ul>
119
+ </li>
120
+ </ul>
121
+
122
+ <h2 id="workflow">Workflow</h2>
123
+
124
+ <ol>
125
+ <li>Before submitting a PR, run <code>bundle exec rake rubocop_gradual:autocorrect</code><br>
126
+ a. or just the default <code>bundle exec rake</code>, as autocorrection is a pre-requisite of the default task.</li>
127
+ <li>If there are new violations, either:
128
+ <ul>
129
+ <li>Fix them in your code</li>
130
+ <li>Run <code>bundle exec rake rubocop_gradual:force_update</code> to update the lock file (only for violations you can’t fix immediately)</li>
131
+ </ul>
132
+ </li>
133
+ <li>Commit the updated <code>.rubocop_gradual.lock</code> file along with your changes</li>
134
+ </ol>
135
+
136
+ <h2 id="never-add-inline-rubocop-disables">Never add inline RuboCop disables</h2>
137
+
138
+ <p>Do not add inline <code>rubocop:disable</code> / <code>rubocop:enable</code> comments anywhere in the codebase (including specs, except when following the few existing <code>rubocop:disable</code> patterns for a rule already being disabled elsewhere in the code). We handle exceptions in two supported ways:</p>
139
+
140
+ <ul>
141
+ <li>Permanent/structural exceptions: prefer adjusting the RuboCop configuration (e.g., in <code>.rubocop.yml</code>) to exclude a rule for a path or file pattern when it makes sense project-wide.</li>
142
+ <li>Temporary exceptions while improving code: record the current violations in <code>.rubocop_gradual.lock</code> via the gradual workflow:
143
+ <ul>
144
+ <li>
145
+ <code>bundle exec rake rubocop_gradual:autocorrect</code> (preferred; will autocorrect what it can and update the lock only if no new violations were introduced)</li>
146
+ <li>If needed, <code>bundle exec rake rubocop_gradual:force_update</code> (as a last resort when you cannot fix the newly reported violations immediately)</li>
147
+ </ul>
148
+ </li>
149
+ </ul>
150
+
151
+ <p>In general, treat the rules as guidance to follow; fix violations rather than ignore them. For example, RSpec conventions in this project expect <code>described_class</code> to be used in specs that target a specific class under test.</p>
152
+
153
+ <h2 id="benefits-of-rubocop_gradual">Benefits of rubocop_gradual</h2>
154
+
155
+ <ul>
156
+ <li>Allows incremental adoption of code style rules</li>
157
+ <li>Prevents CI failures due to pre-existing violations</li>
158
+ <li>Provides a clear record of code style debt</li>
159
+ <li>Enables focused efforts on improving code quality over time</li>
160
+ </ul>
161
+ </div></div>
162
+
163
+ <div id="footer">
164
+ Generated on Sun Aug 17 14:43:14 2025 by
165
+ <a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
166
+ 0.9.37 (ruby-3.4.5).
167
+ </div>
168
+
169
+ </div>
170
+ </body>
171
+ </html>
@@ -0,0 +1,101 @@
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
+ File: SECURITY
8
+
9
+ &mdash; Documentation by YARD 0.9.37
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 = "SECURITY";
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="file_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</a> &raquo;
40
+ <span class="title">File: SECURITY</span>
41
+
42
+ </div>
43
+
44
+ <div id="search">
45
+
46
+ <a class="full_list_link" id="class_list_link"
47
+ href="class_list.html">
48
+
49
+ <svg width="24" height="24">
50
+ <rect x="0" y="4" width="24" height="4" rx="1" ry="1"></rect>
51
+ <rect x="0" y="12" width="24" height="4" rx="1" ry="1"></rect>
52
+ <rect x="0" y="20" width="24" height="4" rx="1" ry="1"></rect>
53
+ </svg>
54
+ </a>
55
+
56
+ </div>
57
+ <div class="clear"></div>
58
+ </div>
59
+
60
+ <div id="content"><div id='filecontents'><h1 id="security-policy">Security Policy</h1>
61
+
62
+ <h2 id="supported-versions">Supported Versions</h2>
63
+
64
+ <table>
65
+ <thead>
66
+ <tr>
67
+ <th>Version</th>
68
+ <th>Supported</th>
69
+ </tr>
70
+ </thead>
71
+ <tbody>
72
+ <tr>
73
+ <td>1.latest</td>
74
+ <td>✅</td>
75
+ </tr>
76
+ </tbody>
77
+ </table>
78
+
79
+ <h2 id="security-contact-information">Security contact information</h2>
80
+
81
+ <p>To report a security vulnerability, please use the<br>
82
+ <a href="https://tidelift.com/security">Tidelift security contact</a>.<br>
83
+ Tidelift will coordinate the fix and disclosure.</p>
84
+
85
+ <h2 id="additional-support">Additional Support</h2>
86
+
87
+ <p>If you are interested in support for versions older than the latest release,<br>
88
+ please consider sponsoring the project / maintainer @ https://liberapay.com/pboling/donate,<br>
89
+ or find other sponsorship links in the <a href="index.html" title="README">README</a>.</p>
90
+
91
+ </div></div>
92
+
93
+ <div id="footer">
94
+ Generated on Sun Aug 17 14:43:14 2025 by
95
+ <a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
96
+ 0.9.37 (ruby-3.4.5).
97
+ </div>
98
+
99
+ </div>
100
+ </body>
101
+ </html>
@@ -0,0 +1,109 @@
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
+ File: rspec
8
+
9
+ &mdash; Documentation by YARD 0.9.37
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 = "rspec";
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="file_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</a> &raquo;
40
+ <span class="title">File: rspec</span>
41
+
42
+ </div>
43
+
44
+ <div id="search">
45
+
46
+ <a class="full_list_link" id="class_list_link"
47
+ href="class_list.html">
48
+
49
+ <svg width="24" height="24">
50
+ <rect x="0" y="4" width="24" height="4" rx="1" ry="1"></rect>
51
+ <rect x="0" y="12" width="24" height="4" rx="1" ry="1"></rect>
52
+ <rect x="0" y="20" width="24" height="4" rx="1" ry="1"></rect>
53
+ </svg>
54
+ </a>
55
+
56
+ </div>
57
+ <div class="clear"></div>
58
+ </div>
59
+
60
+ <div id="content"><div id='filecontents'><p>class Timecop<br>
61
+ module Rspec<br>
62
+ module Version<br>
63
+ end</p>
64
+
65
+ <pre class="code ruby"><code class="ruby">class TimeMachine
66
+ def self.instance: () -&gt; TimeMachine
67
+ def run: (untyped example) -&gt; untyped
68
+ end
69
+
70
+ class SequentialTimeMachine
71
+ def self.instance: () -&gt; SequentialTimeMachine
72
+ def run: (untyped example) -&gt; untyped
73
+ end
74
+
75
+ class ExampleDecorator &lt; ::SimpleDelegator
76
+ def timecop?: () -&gt; bool
77
+ def timecop_method: () -&gt; (:freeze | :travel)?
78
+ def timecop_time: () -&gt; untyped
79
+ def local_timecop?: () -&gt; bool
80
+ def global_timecop?: () -&gt; bool
81
+ def skip_global_timecop?: () -&gt; bool
82
+ end
83
+
84
+ class Traveler
85
+ def initialize: (ExampleDecorator example, TravelLog travel_log) -&gt; void
86
+ def run: () -&gt; untyped
87
+ end
88
+
89
+ class TravelLog
90
+ def initialize: (*untyped) -&gt; void
91
+ def resume_or_new_trip: ((:travel | :freeze) travel_method, untyped start_time) -&gt; untyped
92
+ def pause_trip: () -&gt; void
93
+ end
94
+
95
+ def self.time_machine: (*untyped) -&gt; (SequentialTimeMachine | TimeMachine)
96
+ def self.global_time_configured?: () -&gt; bool
97
+ def self.global_time: () -&gt; ::Time end end
98
+ </code></pre>
99
+ </div></div>
100
+
101
+ <div id="footer">
102
+ Generated on Sun Aug 17 14:43:14 2025 by
103
+ <a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
104
+ 0.9.37 (ruby-3.4.5).
105
+ </div>
106
+
107
+ </div>
108
+ </body>
109
+ </html>
@@ -0,0 +1,72 @@
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
+ File: timecop
8
+
9
+ &mdash; Documentation by YARD 0.9.37
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 = "timecop";
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="file_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</a> &raquo;
40
+ <span class="title">File: timecop</span>
41
+
42
+ </div>
43
+
44
+ <div id="search">
45
+
46
+ <a class="full_list_link" id="class_list_link"
47
+ href="class_list.html">
48
+
49
+ <svg width="24" height="24">
50
+ <rect x="0" y="4" width="24" height="4" rx="1" ry="1"></rect>
51
+ <rect x="0" y="12" width="24" height="4" rx="1" ry="1"></rect>
52
+ <rect x="0" y="20" width="24" height="4" rx="1" ry="1"></rect>
53
+ </svg>
54
+ </a>
55
+
56
+ </div>
57
+ <div class="clear"></div>
58
+ </div>
59
+
60
+ <div id="content"><div id='filecontents'><p>class Timecop<br>
61
+ end</p>
62
+ </div></div>
63
+
64
+ <div id="footer">
65
+ Generated on Sun Aug 17 14:43:14 2025 by
66
+ <a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
67
+ 0.9.37 (ruby-3.4.5).
68
+ </div>
69
+
70
+ </div>
71
+ </body>
72
+ </html>
@@ -0,0 +1,109 @@
1
+ <!DOCTYPE html>
2
+ <html >
3
+ <head>
4
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
5
+ <meta charset="utf-8" />
6
+
7
+ <link rel="stylesheet" href="css/full_list.css" type="text/css" media="screen" />
8
+
9
+ <link rel="stylesheet" href="css/common.css" type="text/css" media="screen" />
10
+
11
+
12
+
13
+ <script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
14
+
15
+ <script type="text/javascript" charset="utf-8" src="js/full_list.js"></script>
16
+
17
+
18
+ <title>File List</title>
19
+ <base id="base_target" target="_parent" />
20
+ </head>
21
+ <body>
22
+ <div id="content">
23
+ <div class="fixed_header">
24
+ <h1 id="full_list_header">File List</h1>
25
+ <div id="full_list_nav">
26
+
27
+ <span><a target="_self" href="class_list.html">
28
+ Classes
29
+ </a></span>
30
+
31
+ <span><a target="_self" href="method_list.html">
32
+ Methods
33
+ </a></span>
34
+
35
+ <span><a target="_self" href="file_list.html">
36
+ Files
37
+ </a></span>
38
+
39
+ </div>
40
+
41
+ <div id="search">
42
+ <label for="search-class">Search:</label>
43
+ <input id="search-class" type="text" />
44
+ </div>
45
+ </div>
46
+
47
+ <ul id="full_list" class="file">
48
+
49
+
50
+ <li id="object_README" class="odd">
51
+ <div class="item"><span class="object_link"><a href="index.html" title="README">README</a></span></div>
52
+ </li>
53
+
54
+
55
+ <li id="object_CHANGELOG" class="even">
56
+ <div class="item"><span class="object_link"><a href="file.CHANGELOG.html" title="CHANGELOG">CHANGELOG</a></span></div>
57
+ </li>
58
+
59
+
60
+ <li id="object_CODE_OF_CONDUCT" class="odd">
61
+ <div class="item"><span class="object_link"><a href="file.CODE_OF_CONDUCT.html" title="CODE_OF_CONDUCT">CODE_OF_CONDUCT</a></span></div>
62
+ </li>
63
+
64
+
65
+ <li id="object_CONTRIBUTING" class="even">
66
+ <div class="item"><span class="object_link"><a href="file.CONTRIBUTING.html" title="CONTRIBUTING">CONTRIBUTING</a></span></div>
67
+ </li>
68
+
69
+
70
+ <li id="object_RUBOCOP" class="odd">
71
+ <div class="item"><span class="object_link"><a href="file.RUBOCOP.html" title="RUBOCOP">RUBOCOP</a></span></div>
72
+ </li>
73
+
74
+
75
+ <li id="object_SECURITY" class="even">
76
+ <div class="item"><span class="object_link"><a href="file.SECURITY.html" title="SECURITY">SECURITY</a></span></div>
77
+ </li>
78
+
79
+
80
+ <li id="object_LICENSE" class="odd">
81
+ <div class="item"><span class="object_link"><a href="file.LICENSE.html" title="LICENSE">LICENSE</a></span></div>
82
+ </li>
83
+
84
+
85
+ <li id="object_CITATION" class="even">
86
+ <div class="item"><span class="object_link"><a href="file.CITATION.html" title="CITATION">CITATION</a></span></div>
87
+ </li>
88
+
89
+
90
+ <li id="object_REEK" class="odd">
91
+ <div class="item"><span class="object_link"><a href="file.REEK.html" title="REEK">REEK</a></span></div>
92
+ </li>
93
+
94
+
95
+ <li id="object_rspec" class="even">
96
+ <div class="item"><span class="object_link"><a href="file.rspec.html" title="rspec">rspec</a></span></div>
97
+ </li>
98
+
99
+
100
+ <li id="object_timecop" class="odd">
101
+ <div class="item"><span class="object_link"><a href="file.timecop.html" title="timecop">timecop</a></span></div>
102
+ </li>
103
+
104
+
105
+
106
+ </ul>
107
+ </div>
108
+ </body>
109
+ </html>
data/docs/frames.html ADDED
@@ -0,0 +1,22 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <title>Documentation by YARD 0.9.37</title>
6
+ </head>
7
+ <script type="text/javascript">
8
+ var mainUrl = 'index.html';
9
+ try {
10
+ var match = decodeURIComponent(window.location.hash).match(/^#!(.+)/);
11
+ var name = match ? match[1] : mainUrl;
12
+ var url = new URL(name, location.href);
13
+ window.top.location.replace(url.origin === location.origin ? name : mainUrl);
14
+ } catch (e) {
15
+ window.top.location.replace(mainUrl);
16
+ }
17
+ </script>
18
+ <noscript>
19
+ <h1>Oops!</h1>
20
+ <h2>YARD requires JavaScript!</h2>
21
+ </noscript>
22
+ </html>