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.
- checksums.yaml +7 -0
- checksums.yaml.gz.sig +0 -0
- data/.devcontainer/devcontainer.json +26 -0
- data/.env.local.example +3 -0
- data/.envrc +41 -0
- data/.github/FUNDING.yml +13 -0
- data/.github/dependabot.yml +12 -0
- data/.github/workflows/ancient.yml +77 -0
- data/.github/workflows/auto-assign.yml +21 -0
- data/.github/workflows/codeql-analysis.yml +70 -0
- data/.github/workflows/coverage.yml +126 -0
- data/.github/workflows/current.yml +85 -0
- data/.github/workflows/dependency-review.yml +20 -0
- data/.github/workflows/deps_locked.yml +75 -0
- data/.github/workflows/deps_unlocked.yml +84 -0
- data/.github/workflows/discord-notifier.yml +38 -0
- data/.github/workflows/heads.yml +84 -0
- data/.github/workflows/jruby.yml +75 -0
- data/.github/workflows/legacy.yml +67 -0
- data/.github/workflows/style.yml +64 -0
- data/.github/workflows/supported.yml +82 -0
- data/.github/workflows/truffle.yml +75 -0
- data/.github/workflows/unsupported.yml +75 -0
- data/.gitignore +45 -0
- data/.gitlab-ci.yml +44 -0
- data/.idea/.gitignore +8 -0
- data/.idea/GitLink.xml +6 -0
- data/.idea/misc.xml +4 -0
- data/.idea/modules.xml +8 -0
- data/.idea/timecop-rspec.iml +120 -0
- data/.idea/vcs.xml +6 -0
- data/.junie/TASK_NOTE.md +1 -0
- data/.junie/guidelines.md +139 -0
- data/.qlty/qlty.toml +79 -0
- data/.rspec +8 -0
- data/.rubocop.yml +15 -0
- data/.rubocop_gradual.lock +76 -0
- data/.simplecov +11 -0
- data/.tool-versions +1 -0
- data/.yard_gfm_support.rb +22 -0
- data/.yardopts +11 -0
- data/Appraisal.root.gemfile +12 -0
- data/Appraisals +104 -0
- data/CHANGELOG.md +27 -0
- data/CITATION.cff +20 -0
- data/CNAME +1 -0
- data/CODE_OF_CONDUCT.md +134 -0
- data/CONTRIBUTING.md +145 -0
- data/Gemfile +38 -0
- data/Gemfile.lock +315 -0
- data/LICENSE.txt +22 -0
- data/README.md +563 -0
- data/REEK +0 -0
- data/RUBOCOP.md +71 -0
- data/Rakefile +287 -0
- data/SECURITY.md +21 -0
- data/bin/appraisal +16 -0
- data/bin/bundle-audit +16 -0
- data/bin/bundler-audit +16 -0
- data/bin/code_climate_reek +16 -0
- data/bin/coderay +16 -0
- data/bin/console +38 -0
- data/bin/erb +16 -0
- data/bin/gem_checksums +16 -0
- data/bin/htmldiff +16 -0
- data/bin/irb +16 -0
- data/bin/kramdown +16 -0
- data/bin/ldiff +16 -0
- data/bin/nokogiri +16 -0
- data/bin/pry +16 -0
- data/bin/racc +16 -0
- data/bin/rake +16 -0
- data/bin/rdbg +16 -0
- data/bin/rdoc +16 -0
- data/bin/reek +16 -0
- data/bin/ri +16 -0
- data/bin/rspec +16 -0
- data/bin/rubocop +16 -0
- data/bin/rubocop-gradual +16 -0
- data/bin/ruby-parse +16 -0
- data/bin/ruby-rewrite +16 -0
- data/bin/setup +33 -0
- data/bin/standardrb +16 -0
- data/bin/thor +16 -0
- data/bin/yard +16 -0
- data/bin/yard-junk +16 -0
- data/bin/yardoc +16 -0
- data/bin/yri +16 -0
- data/certs/pboling.pem +27 -0
- data/checksums/timecop-rspec-1.0.0.gem.sha256 +1 -0
- data/checksums/timecop-rspec-1.0.0.gem.sha512 +1 -0
- data/docs/Timecop/Rspec/ExampleDecorator.html +626 -0
- data/docs/Timecop/Rspec/SequentialTimeMachine.html +338 -0
- data/docs/Timecop/Rspec/TimeMachine.html +357 -0
- data/docs/Timecop/Rspec/TravelLog.html +440 -0
- data/docs/Timecop/Rspec/Traveler.html +353 -0
- data/docs/Timecop/Rspec/Version.html +154 -0
- data/docs/Timecop/Rspec.html +474 -0
- data/docs/Timecop.html +149 -0
- data/docs/_index.html +218 -0
- data/docs/class_list.html +54 -0
- data/docs/css/common.css +1 -0
- data/docs/css/full_list.css +58 -0
- data/docs/css/style.css +503 -0
- data/docs/file.CHANGELOG.html +99 -0
- data/docs/file.CITATION.html +92 -0
- data/docs/file.CODE_OF_CONDUCT.html +201 -0
- data/docs/file.CONTRIBUTING.html +220 -0
- data/docs/file.LICENSE.html +70 -0
- data/docs/file.README.html +523 -0
- data/docs/file.REEK.html +71 -0
- data/docs/file.RUBOCOP.html +171 -0
- data/docs/file.SECURITY.html +101 -0
- data/docs/file.rspec.html +109 -0
- data/docs/file.timecop.html +72 -0
- data/docs/file_list.html +109 -0
- data/docs/frames.html +22 -0
- data/docs/index.html +523 -0
- data/docs/js/app.js +344 -0
- data/docs/js/full_list.js +242 -0
- data/docs/js/jquery.js +4 -0
- data/docs/method_list.html +198 -0
- data/docs/top-level-namespace.html +110 -0
- data/gemfiles/audit.gemfile +10 -0
- data/gemfiles/coverage.gemfile +10 -0
- data/gemfiles/current.gemfile +8 -0
- data/gemfiles/deps_unlocked.gemfile +13 -0
- data/gemfiles/head.gemfile +9 -0
- data/gemfiles/modular/audit.gemfile +5 -0
- data/gemfiles/modular/coverage.gemfile +6 -0
- data/gemfiles/modular/documentation.gemfile +11 -0
- data/gemfiles/modular/style.gemfile +14 -0
- data/gemfiles/ruby_2_3.gemfile +5 -0
- data/gemfiles/ruby_2_4.gemfile +5 -0
- data/gemfiles/ruby_2_5.gemfile +5 -0
- data/gemfiles/ruby_2_6.gemfile +8 -0
- data/gemfiles/ruby_2_7.gemfile +8 -0
- data/gemfiles/ruby_3_0.gemfile +8 -0
- data/gemfiles/ruby_3_1.gemfile +8 -0
- data/gemfiles/ruby_3_2.gemfile +8 -0
- data/gemfiles/ruby_3_3.gemfile +8 -0
- data/gemfiles/style.gemfile +10 -0
- data/lib/timecop/rspec/example_decorator.rb +100 -0
- data/lib/timecop/rspec/sequential_time_machine.rb +80 -0
- data/lib/timecop/rspec/time_machine.rb +58 -0
- data/lib/timecop/rspec/travel_log.rb +103 -0
- data/lib/timecop/rspec/traveler.rb +68 -0
- data/lib/timecop/rspec/version.rb +37 -0
- data/lib/timecop/rspec.rb +78 -0
- data/sig/timecop/rspec.rbs +40 -0
- data/sig/timecop.rbs +2 -0
- data/timecop-rspec.gemspec +146 -0
- data.tar.gz.sig +2 -0
- metadata +434 -0
- metadata.gz.sig +0 -0
@@ -0,0 +1,40 @@
|
|
1
|
+
class Timecop
|
2
|
+
module Rspec
|
3
|
+
module Version
|
4
|
+
end
|
5
|
+
|
6
|
+
class TimeMachine
|
7
|
+
def self.instance: () -> TimeMachine
|
8
|
+
def run: (untyped example) -> untyped
|
9
|
+
end
|
10
|
+
|
11
|
+
class SequentialTimeMachine
|
12
|
+
def self.instance: () -> SequentialTimeMachine
|
13
|
+
def run: (untyped example) -> untyped
|
14
|
+
end
|
15
|
+
|
16
|
+
class ExampleDecorator < ::SimpleDelegator
|
17
|
+
def timecop?: () -> bool
|
18
|
+
def timecop_method: () -> (:freeze | :travel)?
|
19
|
+
def timecop_time: () -> untyped
|
20
|
+
def local_timecop?: () -> bool
|
21
|
+
def global_timecop?: () -> bool
|
22
|
+
def skip_global_timecop?: () -> bool
|
23
|
+
end
|
24
|
+
|
25
|
+
class Traveler
|
26
|
+
def initialize: (ExampleDecorator example, TravelLog travel_log) -> void
|
27
|
+
def run: () -> untyped
|
28
|
+
end
|
29
|
+
|
30
|
+
class TravelLog
|
31
|
+
def initialize: (*untyped) -> void
|
32
|
+
def resume_or_new_trip: ((:travel | :freeze) travel_method, untyped start_time) -> untyped
|
33
|
+
def pause_trip: () -> void
|
34
|
+
end
|
35
|
+
|
36
|
+
def self.time_machine: (*untyped) -> (SequentialTimeMachine | TimeMachine)
|
37
|
+
def self.global_time_configured?: () -> bool
|
38
|
+
def self.global_time: () -> ::Time
|
39
|
+
end
|
40
|
+
end
|
data/sig/timecop.rbs
ADDED
@@ -0,0 +1,146 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
gem_version =
|
5
|
+
if RUBY_VERSION >= "3.1" # rubocop:disable Gemspec/RubyVersionGlobalsUsage
|
6
|
+
# Loading Version into an anonymous module allows version.rb to get code coverage from SimpleCov!
|
7
|
+
# See: https://github.com/simplecov-ruby/simplecov/issues/557#issuecomment-2630782358
|
8
|
+
# See: https://github.com/panorama-ed/memo_wise/pull/397
|
9
|
+
Module.new.tap { |mod| Kernel.load("#{__dir__}/lib/timecop/rspec/version.rb", mod) }::Timecop::Rspec::Version::VERSION
|
10
|
+
else
|
11
|
+
# NOTE: Use __FILE__ or __dir__ until removal of Ruby 1.x support
|
12
|
+
# __dir__ introduced in Ruby 1.9.1
|
13
|
+
# lib = File.expand_path("../lib", __FILE__)
|
14
|
+
lib = File.expand_path("lib", __dir__)
|
15
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
16
|
+
require "timecop/rspec/version"
|
17
|
+
Timecop::Rspec::Version::VERSION
|
18
|
+
end
|
19
|
+
|
20
|
+
Gem::Specification.new do |spec|
|
21
|
+
spec.name = "timecop-rspec"
|
22
|
+
spec.version = gem_version
|
23
|
+
spec.authors = ["Peter H. Boling", "Zach Taylor", "Tim Mertens"]
|
24
|
+
spec.email = ["floss@galtzo.com"]
|
25
|
+
|
26
|
+
spec.summary = "Timecop time-machines for RSpec"
|
27
|
+
spec.description = "Help overlooked open source projects - the ones at the bottom of the stack, and the dev dependencies - by funding them."
|
28
|
+
spec.homepage = "https://github.com/galtzo-floss/timecop-rspec"
|
29
|
+
spec.license = "MIT"
|
30
|
+
spec.required_ruby_version = ">= 1.9.2"
|
31
|
+
|
32
|
+
# Linux distros often package gems and securely certify them independent
|
33
|
+
# of the official RubyGem certification process. Allowed via ENV["SKIP_GEM_SIGNING"]
|
34
|
+
# Ref: https://gitlab.com/oauth-xx/version_gem/-/issues/3
|
35
|
+
# Hence, only enable signing if `SKIP_GEM_SIGNING` is not set in ENV.
|
36
|
+
# See CONTRIBUTING.md
|
37
|
+
unless ENV.include?("SKIP_GEM_SIGNING")
|
38
|
+
user_cert = "certs/#{ENV.fetch("GEM_CERT_USER", ENV["USER"])}.pem"
|
39
|
+
cert_file_path = File.join(__dir__, user_cert)
|
40
|
+
cert_chain = cert_file_path.split(",")
|
41
|
+
cert_chain.select! { |fp| File.exist?(fp) }
|
42
|
+
if cert_file_path && cert_chain.any?
|
43
|
+
spec.cert_chain = cert_chain
|
44
|
+
if $PROGRAM_NAME.end_with?("gem") && ARGV[0] == "build"
|
45
|
+
spec.signing_key = File.join(Gem.user_home, ".ssh", "gem-private_key.pem")
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
spec.metadata["homepage_uri"] = "https://#{spec.name.tr("_", "-")}.galtzo.com/"
|
51
|
+
spec.metadata["source_code_uri"] = "#{spec.homepage}/tree/v#{spec.version}"
|
52
|
+
spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/v#{spec.version}/CHANGELOG.md"
|
53
|
+
spec.metadata["bug_tracker_uri"] = "#{spec.homepage}/issues"
|
54
|
+
spec.metadata["documentation_uri"] = "https://www.rubydoc.info/gems/#{spec.name}/#{spec.version}"
|
55
|
+
spec.metadata["funding_uri"] = "https://github.com/sponsors/pboling"
|
56
|
+
spec.metadata["wiki_uri"] = "#{spec.homepage}/wiki"
|
57
|
+
spec.metadata["news_uri"] = "https://www.railsbling.com/tags/#{spec.name}"
|
58
|
+
spec.metadata["discord_uri"] = "https://discord.gg/3qme4XHNKN"
|
59
|
+
spec.metadata["rubygems_mfa_required"] = "true"
|
60
|
+
|
61
|
+
# Specify which files are part of the released package.
|
62
|
+
spec.files = Dir[
|
63
|
+
# Splats (alphabetical)
|
64
|
+
"lib/**/*.rb",
|
65
|
+
]
|
66
|
+
# Automatically included with gem package, no need to list again in files.
|
67
|
+
spec.extra_rdoc_files = Dir[
|
68
|
+
# Splats (alphabetical)
|
69
|
+
"checksums/**/*.sha256",
|
70
|
+
"checksums/**/*.sha512",
|
71
|
+
"sig/**/*.rbs",
|
72
|
+
# Files (alphabetical)
|
73
|
+
"CHANGELOG.md",
|
74
|
+
"CITATION.cff",
|
75
|
+
"CODE_OF_CONDUCT.md",
|
76
|
+
"CONTRIBUTING.md",
|
77
|
+
"LICENSE.txt",
|
78
|
+
"README.md",
|
79
|
+
"REEK",
|
80
|
+
"RUBOCOP.md",
|
81
|
+
"SECURITY.md",
|
82
|
+
]
|
83
|
+
spec.rdoc_options += [
|
84
|
+
"--title",
|
85
|
+
"#{spec.name} - #{spec.summary}",
|
86
|
+
"--main",
|
87
|
+
"checksums/**/*.sha256",
|
88
|
+
"checksums/**/*.sha512",
|
89
|
+
"sig/**/*.rbs",
|
90
|
+
"CHANGELOG.md",
|
91
|
+
"CITATION.cff",
|
92
|
+
"CODE_OF_CONDUCT.md",
|
93
|
+
"CONTRIBUTING.md",
|
94
|
+
"LICENSE.txt",
|
95
|
+
"README.md",
|
96
|
+
"REEK",
|
97
|
+
"RUBOCOP.md",
|
98
|
+
"SECURITY.md",
|
99
|
+
"--line-numbers",
|
100
|
+
"--inline-source",
|
101
|
+
"--quiet",
|
102
|
+
]
|
103
|
+
spec.require_paths = ["lib"]
|
104
|
+
spec.bindir = "exe"
|
105
|
+
# files listed are relative paths from bindir above.
|
106
|
+
spec.executables = []
|
107
|
+
|
108
|
+
spec.files = %x(git ls-files -z).split("\x0").reject do |f|
|
109
|
+
f.match(%r{^(test|spec|features)/})
|
110
|
+
end
|
111
|
+
spec.bindir = "exe"
|
112
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
113
|
+
spec.require_paths = ["lib"]
|
114
|
+
|
115
|
+
spec.add_dependency("activesupport", ">= 4.0") # ruby > 1.8.7
|
116
|
+
spec.add_dependency("rspec", "~> 3.0") # ruby > 0
|
117
|
+
spec.add_dependency("timecop", ">= 0.7", "< 1") # ruby >= 1.9.2, for time-based testing
|
118
|
+
|
119
|
+
# NOTE: It is preferable to list development dependencies in the gemspec due to increased
|
120
|
+
# visibility and discoverability on RubyGems.org.
|
121
|
+
# However, development dependencies in gemspec will install on
|
122
|
+
# all versions of Ruby that will run in CI.
|
123
|
+
# This gem, and its runtime dependencies, will install on Ruby down to 1.9.2.
|
124
|
+
# This gem, and its development dependencies, will install on Ruby down to 2.3.x.
|
125
|
+
# This is because in CI easy installation of Ruby, via setup-ruby, is for >= 2.3.
|
126
|
+
# Thus, dev dependencies in gemspec must have
|
127
|
+
#
|
128
|
+
# required_ruby_version ">= 2.3" (or lower)
|
129
|
+
#
|
130
|
+
# Development dependencies that require strictly newer Ruby versions should be in a "gemfile",
|
131
|
+
# and preferably a modular one (see gemfiles/modular/*.gemfile).
|
132
|
+
|
133
|
+
# Release Tasks
|
134
|
+
spec.add_development_dependency("stone_checksums", "~> 1.0") # ruby >= 2.2.0
|
135
|
+
|
136
|
+
### Testing
|
137
|
+
spec.add_development_dependency("appraisal2", "~> 3.0") # ruby >= 1.8.7, for testing against multiple versions of dependencies
|
138
|
+
spec.add_development_dependency("rspec-block_is_expected", "~> 1.0") # ruby >= 1.8.7, for block_is_expected.to syntax
|
139
|
+
spec.add_development_dependency("rspec_junit_formatter", "~> 0.6") # ruby >= 2.3.0, for GitLab Test Result Parsing
|
140
|
+
spec.add_development_dependency("rspec-stubbed_env", "~> 1.0") # ruby >= 2.3.0, helper for stubbing ENV in specs
|
141
|
+
spec.add_development_dependency("silent_stream", "~> 1.0", ">= 1.0.11") # ruby >= 2.3.0, for output capture
|
142
|
+
spec.add_development_dependency("timecop", "~> 0.9", ">= 0.9.10") # ruby >= 1.9.2, for time-based testing
|
143
|
+
|
144
|
+
# Development tasks
|
145
|
+
spec.add_development_dependency("rake", "~> 13.0") # ruby >= 2.2
|
146
|
+
end
|
data.tar.gz.sig
ADDED
@@ -0,0 +1,2 @@
|
|
1
|
+
JC]%]w����ٍy�T�p�ϑ��`�Iu3�ξY/��i15�KM㙬U)c�>~H�&��@�@���>��[�:�Z;`�$C+�6&��,t�E�A�P*�Qe-�Ckd\:{j-^Q���:�c�s���Z]�<s��O;���@岽?�i��"ㅋ^Y��u����md̶>��N
|
2
|
+
VQ� .nۘя"�-V�T��2r�xIJM���l��@ޛ<�`jOQ�2�����^��8���ma�����We{mZ8.!l������HC��Ҹ�8x5�M��ξ����8F8J�*�{y^������&/g� �%��I"�!�~�ֶ��L���U���Ώ^� 0/{��|{X�(^������
|
metadata
ADDED
@@ -0,0 +1,434 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: timecop-rspec
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Peter H. Boling
|
8
|
+
- Zach Taylor
|
9
|
+
- Tim Mertens
|
10
|
+
bindir: exe
|
11
|
+
cert_chain:
|
12
|
+
- |
|
13
|
+
-----BEGIN CERTIFICATE-----
|
14
|
+
MIIEgDCCAuigAwIBAgIBATANBgkqhkiG9w0BAQsFADBDMRUwEwYDVQQDDAxwZXRl
|
15
|
+
ci5ib2xpbmcxFTATBgoJkiaJk/IsZAEZFgVnbWFpbDETMBEGCgmSJomT8ixkARkW
|
16
|
+
A2NvbTAeFw0yNTA1MDQxNTMzMDlaFw00NTA0MjkxNTMzMDlaMEMxFTATBgNVBAMM
|
17
|
+
DHBldGVyLmJvbGluZzEVMBMGCgmSJomT8ixkARkWBWdtYWlsMRMwEQYKCZImiZPy
|
18
|
+
LGQBGRYDY29tMIIBojANBgkqhkiG9w0BAQEFAAOCAY8AMIIBigKCAYEAruUoo0WA
|
19
|
+
uoNuq6puKWYeRYiZekz/nsDeK5x/0IEirzcCEvaHr3Bmz7rjo1I6On3gGKmiZs61
|
20
|
+
LRmQ3oxy77ydmkGTXBjruJB+pQEn7UfLSgQ0xa1/X3kdBZt6RmabFlBxnHkoaGY5
|
21
|
+
mZuZ5+Z7walmv6sFD9ajhzj+oIgwWfnEHkXYTR8I6VLN7MRRKGMPoZ/yvOmxb2DN
|
22
|
+
coEEHWKO9CvgYpW7asIihl/9GMpKiRkcYPm9dGQzZc6uTwom1COfW0+ZOFrDVBuV
|
23
|
+
FMQRPswZcY4Wlq0uEBLPU7hxnCL9nKK6Y9IhdDcz1mY6HZ91WImNslOSI0S8hRpj
|
24
|
+
yGOWxQIhBT3fqCBlRIqFQBudrnD9jSNpSGsFvbEijd5ns7Z9ZMehXkXDycpGAUj1
|
25
|
+
to/5cuTWWw1JqUWrKJYoifnVhtE1o1DZ+LkPtWxHtz5kjDG/zR3MG0Ula0UOavlD
|
26
|
+
qbnbcXPBnwXtTFeZ3C+yrWpE4pGnl3yGkZj9SMTlo9qnTMiPmuWKQDatAgMBAAGj
|
27
|
+
fzB9MAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQWBBQE8uWvNbPVNRXZ
|
28
|
+
HlgPbc2PCzC4bjAhBgNVHREEGjAYgRZwZXRlci5ib2xpbmdAZ21haWwuY29tMCEG
|
29
|
+
A1UdEgQaMBiBFnBldGVyLmJvbGluZ0BnbWFpbC5jb20wDQYJKoZIhvcNAQELBQAD
|
30
|
+
ggGBAJbnUwfJQFPkBgH9cL7hoBfRtmWiCvdqdjeTmi04u8zVNCUox0A4gT982DE9
|
31
|
+
wmuN12LpdajxZONqbXuzZvc+nb0StFwmFYZG6iDwaf4BPywm2e/Vmq0YG45vZXGR
|
32
|
+
L8yMDSK1cQXjmA+ZBKOHKWavxP6Vp7lWvjAhz8RFwqF9GuNIdhv9NpnCAWcMZtpm
|
33
|
+
GUPyIWw/Cw/2wZp74QzZj6Npx+LdXoLTF1HMSJXZ7/pkxLCsB8m4EFVdb/IrW/0k
|
34
|
+
kNSfjtAfBHO8nLGuqQZVH9IBD1i9K6aSs7pT6TW8itXUIlkIUI2tg5YzW6OFfPzq
|
35
|
+
QekSkX3lZfY+HTSp/o+YvKkqWLUV7PQ7xh1ZYDtocpaHwgxe/j3bBqHE+CUPH2vA
|
36
|
+
0V/FwdTRWcwsjVoOJTrYcff8pBZ8r2MvtAc54xfnnhGFzeRHfcltobgFxkAXdE6p
|
37
|
+
DVjBtqT23eugOqQ73umLcYDZkc36vnqGxUBSsXrzY9pzV5gGr2I8YUxMqf6ATrZt
|
38
|
+
L9nRqA==
|
39
|
+
-----END CERTIFICATE-----
|
40
|
+
date: 2025-08-17 00:00:00.000000000 Z
|
41
|
+
dependencies:
|
42
|
+
- !ruby/object:Gem::Dependency
|
43
|
+
name: activesupport
|
44
|
+
requirement: !ruby/object:Gem::Requirement
|
45
|
+
requirements:
|
46
|
+
- - ">="
|
47
|
+
- !ruby/object:Gem::Version
|
48
|
+
version: '4.0'
|
49
|
+
type: :runtime
|
50
|
+
prerelease: false
|
51
|
+
version_requirements: !ruby/object:Gem::Requirement
|
52
|
+
requirements:
|
53
|
+
- - ">="
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: '4.0'
|
56
|
+
- !ruby/object:Gem::Dependency
|
57
|
+
name: rspec
|
58
|
+
requirement: !ruby/object:Gem::Requirement
|
59
|
+
requirements:
|
60
|
+
- - "~>"
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: '3.0'
|
63
|
+
type: :runtime
|
64
|
+
prerelease: false
|
65
|
+
version_requirements: !ruby/object:Gem::Requirement
|
66
|
+
requirements:
|
67
|
+
- - "~>"
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '3.0'
|
70
|
+
- !ruby/object:Gem::Dependency
|
71
|
+
name: timecop
|
72
|
+
requirement: !ruby/object:Gem::Requirement
|
73
|
+
requirements:
|
74
|
+
- - ">="
|
75
|
+
- !ruby/object:Gem::Version
|
76
|
+
version: '0.7'
|
77
|
+
- - "<"
|
78
|
+
- !ruby/object:Gem::Version
|
79
|
+
version: '1'
|
80
|
+
type: :runtime
|
81
|
+
prerelease: false
|
82
|
+
version_requirements: !ruby/object:Gem::Requirement
|
83
|
+
requirements:
|
84
|
+
- - ">="
|
85
|
+
- !ruby/object:Gem::Version
|
86
|
+
version: '0.7'
|
87
|
+
- - "<"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '1'
|
90
|
+
- !ruby/object:Gem::Dependency
|
91
|
+
name: stone_checksums
|
92
|
+
requirement: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '1.0'
|
97
|
+
type: :development
|
98
|
+
prerelease: false
|
99
|
+
version_requirements: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - "~>"
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '1.0'
|
104
|
+
- !ruby/object:Gem::Dependency
|
105
|
+
name: appraisal2
|
106
|
+
requirement: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - "~>"
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '3.0'
|
111
|
+
type: :development
|
112
|
+
prerelease: false
|
113
|
+
version_requirements: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - "~>"
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '3.0'
|
118
|
+
- !ruby/object:Gem::Dependency
|
119
|
+
name: rspec-block_is_expected
|
120
|
+
requirement: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - "~>"
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '1.0'
|
125
|
+
type: :development
|
126
|
+
prerelease: false
|
127
|
+
version_requirements: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - "~>"
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: '1.0'
|
132
|
+
- !ruby/object:Gem::Dependency
|
133
|
+
name: rspec_junit_formatter
|
134
|
+
requirement: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - "~>"
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: '0.6'
|
139
|
+
type: :development
|
140
|
+
prerelease: false
|
141
|
+
version_requirements: !ruby/object:Gem::Requirement
|
142
|
+
requirements:
|
143
|
+
- - "~>"
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: '0.6'
|
146
|
+
- !ruby/object:Gem::Dependency
|
147
|
+
name: rspec-stubbed_env
|
148
|
+
requirement: !ruby/object:Gem::Requirement
|
149
|
+
requirements:
|
150
|
+
- - "~>"
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: '1.0'
|
153
|
+
type: :development
|
154
|
+
prerelease: false
|
155
|
+
version_requirements: !ruby/object:Gem::Requirement
|
156
|
+
requirements:
|
157
|
+
- - "~>"
|
158
|
+
- !ruby/object:Gem::Version
|
159
|
+
version: '1.0'
|
160
|
+
- !ruby/object:Gem::Dependency
|
161
|
+
name: silent_stream
|
162
|
+
requirement: !ruby/object:Gem::Requirement
|
163
|
+
requirements:
|
164
|
+
- - "~>"
|
165
|
+
- !ruby/object:Gem::Version
|
166
|
+
version: '1.0'
|
167
|
+
- - ">="
|
168
|
+
- !ruby/object:Gem::Version
|
169
|
+
version: 1.0.11
|
170
|
+
type: :development
|
171
|
+
prerelease: false
|
172
|
+
version_requirements: !ruby/object:Gem::Requirement
|
173
|
+
requirements:
|
174
|
+
- - "~>"
|
175
|
+
- !ruby/object:Gem::Version
|
176
|
+
version: '1.0'
|
177
|
+
- - ">="
|
178
|
+
- !ruby/object:Gem::Version
|
179
|
+
version: 1.0.11
|
180
|
+
- !ruby/object:Gem::Dependency
|
181
|
+
name: timecop
|
182
|
+
requirement: !ruby/object:Gem::Requirement
|
183
|
+
requirements:
|
184
|
+
- - "~>"
|
185
|
+
- !ruby/object:Gem::Version
|
186
|
+
version: '0.9'
|
187
|
+
- - ">="
|
188
|
+
- !ruby/object:Gem::Version
|
189
|
+
version: 0.9.10
|
190
|
+
type: :development
|
191
|
+
prerelease: false
|
192
|
+
version_requirements: !ruby/object:Gem::Requirement
|
193
|
+
requirements:
|
194
|
+
- - "~>"
|
195
|
+
- !ruby/object:Gem::Version
|
196
|
+
version: '0.9'
|
197
|
+
- - ">="
|
198
|
+
- !ruby/object:Gem::Version
|
199
|
+
version: 0.9.10
|
200
|
+
- !ruby/object:Gem::Dependency
|
201
|
+
name: rake
|
202
|
+
requirement: !ruby/object:Gem::Requirement
|
203
|
+
requirements:
|
204
|
+
- - "~>"
|
205
|
+
- !ruby/object:Gem::Version
|
206
|
+
version: '13.0'
|
207
|
+
type: :development
|
208
|
+
prerelease: false
|
209
|
+
version_requirements: !ruby/object:Gem::Requirement
|
210
|
+
requirements:
|
211
|
+
- - "~>"
|
212
|
+
- !ruby/object:Gem::Version
|
213
|
+
version: '13.0'
|
214
|
+
description: Help overlooked open source projects - the ones at the bottom of the
|
215
|
+
stack, and the dev dependencies - by funding them.
|
216
|
+
email:
|
217
|
+
- floss@galtzo.com
|
218
|
+
executables: []
|
219
|
+
extensions: []
|
220
|
+
extra_rdoc_files:
|
221
|
+
- CHANGELOG.md
|
222
|
+
- CITATION.cff
|
223
|
+
- CODE_OF_CONDUCT.md
|
224
|
+
- CONTRIBUTING.md
|
225
|
+
- LICENSE.txt
|
226
|
+
- README.md
|
227
|
+
- REEK
|
228
|
+
- RUBOCOP.md
|
229
|
+
- SECURITY.md
|
230
|
+
- checksums/timecop-rspec-1.0.0.gem.sha256
|
231
|
+
- checksums/timecop-rspec-1.0.0.gem.sha512
|
232
|
+
- sig/timecop.rbs
|
233
|
+
- sig/timecop/rspec.rbs
|
234
|
+
files:
|
235
|
+
- ".devcontainer/devcontainer.json"
|
236
|
+
- ".env.local.example"
|
237
|
+
- ".envrc"
|
238
|
+
- ".github/FUNDING.yml"
|
239
|
+
- ".github/dependabot.yml"
|
240
|
+
- ".github/workflows/ancient.yml"
|
241
|
+
- ".github/workflows/auto-assign.yml"
|
242
|
+
- ".github/workflows/codeql-analysis.yml"
|
243
|
+
- ".github/workflows/coverage.yml"
|
244
|
+
- ".github/workflows/current.yml"
|
245
|
+
- ".github/workflows/dependency-review.yml"
|
246
|
+
- ".github/workflows/deps_locked.yml"
|
247
|
+
- ".github/workflows/deps_unlocked.yml"
|
248
|
+
- ".github/workflows/discord-notifier.yml"
|
249
|
+
- ".github/workflows/heads.yml"
|
250
|
+
- ".github/workflows/jruby.yml"
|
251
|
+
- ".github/workflows/legacy.yml"
|
252
|
+
- ".github/workflows/style.yml"
|
253
|
+
- ".github/workflows/supported.yml"
|
254
|
+
- ".github/workflows/truffle.yml"
|
255
|
+
- ".github/workflows/unsupported.yml"
|
256
|
+
- ".gitignore"
|
257
|
+
- ".gitlab-ci.yml"
|
258
|
+
- ".idea/.gitignore"
|
259
|
+
- ".idea/GitLink.xml"
|
260
|
+
- ".idea/misc.xml"
|
261
|
+
- ".idea/modules.xml"
|
262
|
+
- ".idea/timecop-rspec.iml"
|
263
|
+
- ".idea/vcs.xml"
|
264
|
+
- ".junie/TASK_NOTE.md"
|
265
|
+
- ".junie/guidelines.md"
|
266
|
+
- ".qlty/qlty.toml"
|
267
|
+
- ".rspec"
|
268
|
+
- ".rubocop.yml"
|
269
|
+
- ".rubocop_gradual.lock"
|
270
|
+
- ".simplecov"
|
271
|
+
- ".tool-versions"
|
272
|
+
- ".yard_gfm_support.rb"
|
273
|
+
- ".yardopts"
|
274
|
+
- Appraisal.root.gemfile
|
275
|
+
- Appraisals
|
276
|
+
- CHANGELOG.md
|
277
|
+
- CITATION.cff
|
278
|
+
- CNAME
|
279
|
+
- CODE_OF_CONDUCT.md
|
280
|
+
- CONTRIBUTING.md
|
281
|
+
- Gemfile
|
282
|
+
- Gemfile.lock
|
283
|
+
- LICENSE.txt
|
284
|
+
- README.md
|
285
|
+
- REEK
|
286
|
+
- RUBOCOP.md
|
287
|
+
- Rakefile
|
288
|
+
- SECURITY.md
|
289
|
+
- bin/appraisal
|
290
|
+
- bin/bundle-audit
|
291
|
+
- bin/bundler-audit
|
292
|
+
- bin/code_climate_reek
|
293
|
+
- bin/coderay
|
294
|
+
- bin/console
|
295
|
+
- bin/erb
|
296
|
+
- bin/gem_checksums
|
297
|
+
- bin/htmldiff
|
298
|
+
- bin/irb
|
299
|
+
- bin/kramdown
|
300
|
+
- bin/ldiff
|
301
|
+
- bin/nokogiri
|
302
|
+
- bin/pry
|
303
|
+
- bin/racc
|
304
|
+
- bin/rake
|
305
|
+
- bin/rdbg
|
306
|
+
- bin/rdoc
|
307
|
+
- bin/reek
|
308
|
+
- bin/ri
|
309
|
+
- bin/rspec
|
310
|
+
- bin/rubocop
|
311
|
+
- bin/rubocop-gradual
|
312
|
+
- bin/ruby-parse
|
313
|
+
- bin/ruby-rewrite
|
314
|
+
- bin/setup
|
315
|
+
- bin/standardrb
|
316
|
+
- bin/thor
|
317
|
+
- bin/yard
|
318
|
+
- bin/yard-junk
|
319
|
+
- bin/yardoc
|
320
|
+
- bin/yri
|
321
|
+
- certs/pboling.pem
|
322
|
+
- checksums/timecop-rspec-1.0.0.gem.sha256
|
323
|
+
- checksums/timecop-rspec-1.0.0.gem.sha512
|
324
|
+
- docs/Timecop.html
|
325
|
+
- docs/Timecop/Rspec.html
|
326
|
+
- docs/Timecop/Rspec/ExampleDecorator.html
|
327
|
+
- docs/Timecop/Rspec/SequentialTimeMachine.html
|
328
|
+
- docs/Timecop/Rspec/TimeMachine.html
|
329
|
+
- docs/Timecop/Rspec/TravelLog.html
|
330
|
+
- docs/Timecop/Rspec/Traveler.html
|
331
|
+
- docs/Timecop/Rspec/Version.html
|
332
|
+
- docs/_index.html
|
333
|
+
- docs/class_list.html
|
334
|
+
- docs/css/common.css
|
335
|
+
- docs/css/full_list.css
|
336
|
+
- docs/css/style.css
|
337
|
+
- docs/file.CHANGELOG.html
|
338
|
+
- docs/file.CITATION.html
|
339
|
+
- docs/file.CODE_OF_CONDUCT.html
|
340
|
+
- docs/file.CONTRIBUTING.html
|
341
|
+
- docs/file.LICENSE.html
|
342
|
+
- docs/file.README.html
|
343
|
+
- docs/file.REEK.html
|
344
|
+
- docs/file.RUBOCOP.html
|
345
|
+
- docs/file.SECURITY.html
|
346
|
+
- docs/file.rspec.html
|
347
|
+
- docs/file.timecop.html
|
348
|
+
- docs/file_list.html
|
349
|
+
- docs/frames.html
|
350
|
+
- docs/index.html
|
351
|
+
- docs/js/app.js
|
352
|
+
- docs/js/full_list.js
|
353
|
+
- docs/js/jquery.js
|
354
|
+
- docs/method_list.html
|
355
|
+
- docs/top-level-namespace.html
|
356
|
+
- gemfiles/audit.gemfile
|
357
|
+
- gemfiles/coverage.gemfile
|
358
|
+
- gemfiles/current.gemfile
|
359
|
+
- gemfiles/deps_unlocked.gemfile
|
360
|
+
- gemfiles/head.gemfile
|
361
|
+
- gemfiles/modular/audit.gemfile
|
362
|
+
- gemfiles/modular/coverage.gemfile
|
363
|
+
- gemfiles/modular/documentation.gemfile
|
364
|
+
- gemfiles/modular/style.gemfile
|
365
|
+
- gemfiles/ruby_2_3.gemfile
|
366
|
+
- gemfiles/ruby_2_4.gemfile
|
367
|
+
- gemfiles/ruby_2_5.gemfile
|
368
|
+
- gemfiles/ruby_2_6.gemfile
|
369
|
+
- gemfiles/ruby_2_7.gemfile
|
370
|
+
- gemfiles/ruby_3_0.gemfile
|
371
|
+
- gemfiles/ruby_3_1.gemfile
|
372
|
+
- gemfiles/ruby_3_2.gemfile
|
373
|
+
- gemfiles/ruby_3_3.gemfile
|
374
|
+
- gemfiles/style.gemfile
|
375
|
+
- lib/timecop/rspec.rb
|
376
|
+
- lib/timecop/rspec/example_decorator.rb
|
377
|
+
- lib/timecop/rspec/sequential_time_machine.rb
|
378
|
+
- lib/timecop/rspec/time_machine.rb
|
379
|
+
- lib/timecop/rspec/travel_log.rb
|
380
|
+
- lib/timecop/rspec/traveler.rb
|
381
|
+
- lib/timecop/rspec/version.rb
|
382
|
+
- sig/timecop.rbs
|
383
|
+
- sig/timecop/rspec.rbs
|
384
|
+
- timecop-rspec.gemspec
|
385
|
+
homepage: https://github.com/galtzo-floss/timecop-rspec
|
386
|
+
licenses:
|
387
|
+
- MIT
|
388
|
+
metadata:
|
389
|
+
homepage_uri: https://timecop-rspec.galtzo.com/
|
390
|
+
source_code_uri: https://github.com/galtzo-floss/timecop-rspec/tree/v1.0.0
|
391
|
+
changelog_uri: https://github.com/galtzo-floss/timecop-rspec/blob/v1.0.0/CHANGELOG.md
|
392
|
+
bug_tracker_uri: https://github.com/galtzo-floss/timecop-rspec/issues
|
393
|
+
documentation_uri: https://www.rubydoc.info/gems/timecop-rspec/1.0.0
|
394
|
+
funding_uri: https://github.com/sponsors/pboling
|
395
|
+
wiki_uri: https://github.com/galtzo-floss/timecop-rspec/wiki
|
396
|
+
news_uri: https://www.railsbling.com/tags/timecop-rspec
|
397
|
+
discord_uri: https://discord.gg/3qme4XHNKN
|
398
|
+
rubygems_mfa_required: 'true'
|
399
|
+
rdoc_options:
|
400
|
+
- "--title"
|
401
|
+
- timecop-rspec - Timecop time-machines for RSpec
|
402
|
+
- "--main"
|
403
|
+
- checksums/**/*.sha256
|
404
|
+
- checksums/**/*.sha512
|
405
|
+
- sig/**/*.rbs
|
406
|
+
- CHANGELOG.md
|
407
|
+
- CITATION.cff
|
408
|
+
- CODE_OF_CONDUCT.md
|
409
|
+
- CONTRIBUTING.md
|
410
|
+
- LICENSE.txt
|
411
|
+
- README.md
|
412
|
+
- REEK
|
413
|
+
- RUBOCOP.md
|
414
|
+
- SECURITY.md
|
415
|
+
- "--line-numbers"
|
416
|
+
- "--inline-source"
|
417
|
+
- "--quiet"
|
418
|
+
require_paths:
|
419
|
+
- lib
|
420
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
421
|
+
requirements:
|
422
|
+
- - ">="
|
423
|
+
- !ruby/object:Gem::Version
|
424
|
+
version: 1.9.2
|
425
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
426
|
+
requirements:
|
427
|
+
- - ">="
|
428
|
+
- !ruby/object:Gem::Version
|
429
|
+
version: '0'
|
430
|
+
requirements: []
|
431
|
+
rubygems_version: 3.7.1
|
432
|
+
specification_version: 4
|
433
|
+
summary: Timecop time-machines for RSpec
|
434
|
+
test_files: []
|
metadata.gz.sig
ADDED
Binary file
|