A summary of data about the Ruby ecosystem.

https://github.com/travisjeffery/timecop

A gem providing "time travel", "time freezing", and "time acceleration" capabilities, making it simple to test time-dependent code. It provides a unified method to mock Time.now, Date.today, and DateTime.now in a single call.
https://github.com/travisjeffery/timecop

Keywords

rails ruby test time

Keywords from Contributors

activerecord activejob mvc rubygems rubocop rspec static-code-analysis code-formatter ruby-gem rack

Last synced: about 2 hours ago
JSON representation

Repository metadata

A gem providing "time travel", "time freezing", and "time acceleration" capabilities, making it simple to test time-dependent code. It provides a unified method to mock Time.now, Date.today, and DateTime.now in a single call.

README.markdown

timecop

Gem Version
Build Status

DESCRIPTION

A gem providing "time travel" and "time freezing" capabilities, making it dead simple to test time-dependent code. It provides a unified method to mock Time.now, Date.today, DateTime.now, and Process.clock_gettime in a single call.

INSTALL

bundle add timecop

FEATURES

  • Freeze time to a specific point.
  • Travel back to a specific point in time, but allow time to continue moving forward from there.
  • Scale time by a given scaling factor that will cause time to move at an accelerated pace.
  • No dependencies, can be used with any ruby project
  • Timecop api allows arguments to be passed into #freeze and #travel as one of the following:
    • Time instance
    • DateTime instance
    • Date instance
    • individual arguments (year, month, day, hour, minute, second)
    • a single integer argument that is interpreted as an offset in seconds from Time.now
  • Nested calls to Timecop#travel and Timecop#freeze are supported -- each block will maintain its interpretation of now.
  • Works with regular Ruby projects, and Ruby on Rails projects

USAGE

Run a time-sensitive test

joe = User.find(1)
joe.purchase_home()
assert !joe.mortgage_due?
# move ahead a month and assert that the mortgage is due
Timecop.freeze(Date.today + 30) do
  assert joe.mortgage_due?
end

You can mock the time for a set of tests easily via setup/teardown methods

describe "some set of tests to mock" do
  before do
    Timecop.freeze(Time.local(1990))
  end

  after do
    Timecop.return
  end

  it "should do blah blah blah" do
  end
end

Set the time for the test environment of a rails app -- this is particularly
helpful if your whole application is time-sensitive. It allows you to build
your test data at a single point in time, and to move in/out of that time as
appropriate (within your tests)

in config/environments/test.rb

config.after_initialize do
  # Set Time.now to September 1, 2008 10:05:00 AM (at this instant), but allow it to move forward
  t = Time.local(2008, 9, 1, 10, 5, 0)
  Timecop.travel(t)
end

The difference between Timecop.freeze and Timecop.travel

freeze is used to statically mock the concept of now. As your program executes,
Time.now will not change unless you make subsequent calls into the Timecop API.
travel, on the other hand, computes an offset between what we currently think
Time.now is (recall that we support nested traveling) and the time passed in.
It uses this offset to simulate the passage of time. To demonstrate, consider
the following code snippets:

new_time = Time.local(2008, 9, 1, 12, 0, 0)
Timecop.freeze(new_time)
sleep(10)
new_time == Time.now # ==> true

Timecop.return # "turn off" Timecop
Timecop.travel(new_time)
sleep(10)
new_time == Time.now # ==> false

Timecop.scale

Let's say you want to test a "live" integration wherein entire days could pass by
in minutes while you're able to simulate "real" activity. For example, one such use case
is being able to test reports and invoices that run in 30 day cycles in very little time, while also
being able to simulate activity via subsequent calls to your application.

# seconds will now seem like hours
Timecop.scale(3600)
Time.now
# => 2012-09-20 21:23:25 -0500
# seconds later, hours have passed and it's gone from 9pm at night to 6am in the morning
Time.now
# => 2012-09-21 06:22:59 -0500

See #42 for more information, thanks to Ken Mayer, David Holcomb, and Pivotal Labs.

Timecop.safe_mode

Safe mode forces you to use Timecop with the block syntax since it always puts time back the way it was. If you are running in safe mode and use Timecop without the block syntax Timecop::SafeModeException will be raised to tell the user they are not being safe.

# turn on safe mode
Timecop.safe_mode = true

# check if you are in safe mode
Timecop.safe_mode?
# => true

# using method without block
Timecop.freeze
# => Timecop::SafeModeException: Safe mode is enabled, only calls passing a block are allowed.

Configuring Mocking Process.clock_gettime

By default Timecop does not mock Process.clock_gettime. You must enable it like this:

# turn on
Timecop.mock_process_clock = true

Rails v Ruby Date/Time libraries

Sometimes Rails Date/Time methods don't play nicely with Ruby Date/Time methods.

Be careful mixing Ruby Date.today with Rails Date.tomorrow / Date.yesterday as things might break.

Contribute

timecop is maintained by travisjeffery, and
was created by jtrupiano.

Here's the most direct way to get your work merged into the project.

  • Fork the project
  • Clone down your fork
  • Create a feature branch
  • Hack away and add tests, not necessarily in that order
  • Make sure everything still passes by running tests
  • If necessary, rebase your commits into logical chunks without errors
  • Push the branch up to your fork
  • Send a pull request for your branch

Owner metadata


GitHub Events

Total
Last Year

Committers metadata

Last synced: 3 days ago

Total Commits: 409
Total Committers: 91
Avg Commits per committer: 4.495
Development Distribution Score (DDS): 0.809

Commits in past year: 0
Committers in past year: 0
Avg Commits per committer in past year: 0.0
Development Distribution Score (DDS) in past year: 0.0

Name Email Commits
Travis Jeffery t****y@g****m 78
John Trupiano j****o@g****m 63
Josh Cronemeyer j****r@g****m 45
Tim t****m@m****k 22
Travis Jeffery tj@t****m 21
Olle Jonsson o****n@g****m 12
Ryan Biesemeyer r****n@s****m 11
John Trupiano j****n@j****l 7
Micah Chalmer m****h@m****t 7
Paweł Trela p****o@g****m 7
Jamie McCarthy j****e@m****g 5
Kurt Werle k****t@C****g 5
Mikhail Pospelov m****6@g****m 5
stopdropandrew a****w@k****m 4
Michael Grosser m****l@g****t 4
Johnny Willemsen j****y@j****l 4
Adam Milligan & Andrew Bruce p****e@p****m 3
mishina t****8@g****m 3
dependabot[bot] 4****] 3
Yoshiki Takagi y****g@g****m 3
Peter Goldstein p****n@g****m 3
Larry Marburger l****y@m****c 3
John W Higgins w****v@g****m 3
Andrew Lazarus n****w@g****m 2
Chris Gunther c****s@r****m 2
David Graham d****m@f****m 2
Tom Lord l****m@g****m 2
paul p****l@d****m 2
Tuomas Kareinen t****e@g****m 2
Shu Fujita s****a@n****h 2
and 61 more...

Committer domains:


Issue and Pull Request metadata

Last synced: about 1 month ago

Total issues: 81
Total pull requests: 120
Average time to close issues: over 4 years
Average time to close pull requests: over 1 year
Total issue authors: 74
Total pull request authors: 55
Average comments per issue: 3.8
Average comments per pull request: 1.82
Merged pull request: 80
Bot issues: 0
Bot pull requests: 3

Past year issues: 0
Past year pull requests: 2
Past year average time to close issues: N/A
Past year average time to close pull requests: N/A
Past year issue authors: 0
Past year pull request authors: 2
Past year average comments per issue: 0
Past year average comments per pull request: 2.5
Past year merged pull request: 0
Past year bot issues: 0
Past year bot pull requests: 0

More stats: https://issues.ecosyste.ms/repositories/lookup?url=https://github.com/travisjeffery/timecop

Top Issue Authors

  • joshuacronemeyer (6)
  • ytkg (2)
  • grosser (2)
  • mottalrd (1)
  • catmando (1)
  • ilyakuzmin (1)
  • dogweather (1)
  • ksbek (1)
  • sanfrecce-osaka (1)
  • coorasse (1)
  • gareth (1)
  • olly (1)
  • davidpdrsn (1)
  • maurogeorge (1)
  • mockdeep (1)

Top Pull Request Authors

  • joshuacronemeyer (41)
  • alexcwatt (6)
  • wishdev (4)
  • jwillemsen (4)
  • mishina2228 (3)
  • ytkg (3)
  • dependabot[bot] (3)
  • jchapa (2)
  • mlarraz (2)
  • gogainda (2)
  • ptrela (2)
  • tom-lord (2)
  • nard-tech (2)
  • dgholz (2)
  • petergoldstein (2)

Top Issue Labels

Top Pull Request Labels

  • dependencies (3)
  • github_actions (2)
  • ruby (1)

Package metadata

gem.coop: timecop

A gem providing "time travel" and "time freezing" capabilities, making it dead simple to test time-dependent code. It provides a unified method to mock Time.now, Date.today, and DateTime.now in a single call.

  • Homepage: https://github.com/travisjeffery/timecop
  • Documentation: http://www.rubydoc.info/gems/timecop/
  • Licenses: MIT
  • Latest release: 0.9.10 (published over 1 year ago)
  • Last Synced: 2026-03-02T00:32:30.111Z (1 day ago)
  • Versions: 50
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 249,479,899 Total
  • Docker Downloads: 555,455,914
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 0.069%
    • Downloads: 0.102%
    • Docker downloads count: 0.172%
  • Maintainers (3)
rubygems.org: timecop

A gem providing "time travel" and "time freezing" capabilities, making it dead simple to test time-dependent code. It provides a unified method to mock Time.now, Date.today, and DateTime.now in a single call.

  • Homepage: https://github.com/travisjeffery/timecop
  • Documentation: http://www.rubydoc.info/gems/timecop/
  • Licenses: MIT
  • Latest release: 0.9.10 (published over 1 year ago)
  • Last Synced: 2026-03-01T21:33:17.409Z (2 days ago)
  • Versions: 50
  • Dependent Packages: 2,033
  • Dependent Repositories: 20,866
  • Downloads: 249,475,612 Total
  • Docker Downloads: 555,455,914
  • Rankings:
    • Dependent packages count: 0.026%
    • Downloads: 0.091%
    • Dependent repos count: 0.248%
    • Docker downloads count: 0.3%
    • Average: 0.514%
    • Stargazers count: 0.627%
    • Forks count: 1.79%
  • Maintainers (3)
alpine-v3.18: ruby-timecop

A gem providing 'time travel' and 'time freezing' capabilities

  • Homepage: https://github.com/travisjeffery/timecop
  • Licenses: MIT
  • Latest release: 0.9.8-r0 (published over 2 years ago)
  • Last Synced: 2026-03-01T02:56:33.040Z (3 days ago)
  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 2.603%
    • Stargazers count: 4.129%
    • Forks count: 6.284%
  • Maintainers (1)
alpine-edge: ruby-timecop

A gem providing 'time travel' and 'time freezing' capabilities

  • Homepage: https://github.com/travisjeffery/timecop
  • Licenses: MIT
  • Latest release: 0.9.10-r1 (published 10 months ago)
  • Last Synced: 2026-03-01T02:29:35.385Z (3 days ago)
  • Versions: 6
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Stargazers count: 4.051%
    • Average: 6.479%
    • Forks count: 7.224%
    • Dependent packages count: 14.641%
  • Maintainers (1)
alpine-v3.13: ruby-timecop

A gem providing 'time travel' and 'time freezing' capabilities

  • Homepage: https://github.com/travisjeffery/timecop
  • Licenses: MIT
  • Latest release: 0.9.3-r0 (published about 5 years ago)
  • Last Synced: 2026-03-01T00:39:37.192Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Stargazers count: 2.677%
    • Forks count: 4.67%
    • Average: 6.717%
    • Dependent packages count: 19.522%
  • Maintainers (1)
alpine-v3.12: ruby-timecop

A gem providing 'time travel' and 'time freezing' capabilities

  • Homepage: https://github.com/travisjeffery/timecop
  • Licenses: MIT
  • Latest release: 0.9.1-r3 (published almost 6 years ago)
  • Last Synced: 2026-03-01T00:49:15.719Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Stargazers count: 2.429%
    • Forks count: 4.176%
    • Average: 7.018%
    • Dependent packages count: 21.468%
  • Maintainers (1)
alpine-v3.9: ruby-timecop

A gem providing 'time travel' and 'time freezing' capabilities

  • Homepage: https://github.com/travisjeffery/timecop
  • Licenses: MIT
  • Latest release: 0.9.1-r1 (published about 7 years ago)
  • Last Synced: 2026-02-03T03:41:56.036Z (29 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Stargazers count: 2.185%
    • Forks count: 3.723%
    • Average: 7.265%
    • Dependent packages count: 23.151%
  • Maintainers (1)
alpine-v3.14: ruby-timecop

A gem providing 'time travel' and 'time freezing' capabilities

  • Homepage: https://github.com/travisjeffery/timecop
  • Licenses: MIT
  • Latest release: 0.9.4-r0 (published almost 5 years ago)
  • Last Synced: 2026-03-01T00:45:35.003Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Stargazers count: 2.768%
    • Forks count: 4.646%
    • Average: 7.274%
    • Dependent packages count: 21.681%
  • Maintainers (1)
alpine-v3.11: ruby-timecop

A gem providing 'time travel' and 'time freezing' capabilities

  • Homepage: https://github.com/travisjeffery/timecop
  • Licenses: MIT
  • Latest release: 0.9.1-r2 (published over 6 years ago)
  • Last Synced: 2026-03-01T00:52:08.653Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Stargazers count: 2.626%
    • Forks count: 4.24%
    • Average: 7.367%
    • Dependent packages count: 22.601%
  • Maintainers (1)
alpine-v3.8: ruby-timecop

A gem providing 'time travel' and 'time freezing' capabilities

  • Homepage: https://github.com/travisjeffery/timecop
  • Licenses: MIT
  • Latest release: 0.9.1-r1 (published almost 8 years ago)
  • Last Synced: 2026-03-01T00:47:13.284Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Stargazers count: 2.076%
    • Forks count: 3.449%
    • Average: 7.688%
    • Dependent packages count: 25.225%
  • Maintainers (1)
alpine-v3.15: ruby-timecop

A gem providing 'time travel' and 'time freezing' capabilities

  • Homepage: https://github.com/travisjeffery/timecop
  • Licenses: MIT
  • Latest release: 0.9.4-r1 (published over 4 years ago)
  • Last Synced: 2026-03-01T00:56:19.027Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Stargazers count: 2.977%
    • Forks count: 4.755%
    • Average: 8.329%
    • Dependent packages count: 25.585%
  • Maintainers (1)
alpine-v3.16: ruby-timecop

A gem providing 'time travel' and 'time freezing' capabilities

  • Homepage: https://github.com/travisjeffery/timecop
  • Licenses: MIT
  • Latest release: 0.9.5-r1 (published almost 4 years ago)
  • Last Synced: 2026-03-01T00:58:40.314Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Stargazers count: 3.099%
    • Forks count: 4.79%
    • Average: 8.8%
    • Dependent packages count: 27.311%
  • Maintainers (1)
alpine-v3.10: ruby-timecop

A gem providing 'time travel' and 'time freezing' capabilities

  • Homepage: https://github.com/travisjeffery/timecop
  • Licenses: MIT
  • Latest release: 0.9.1-r1 (published almost 7 years ago)
  • Last Synced: 2026-03-01T00:53:38.508Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Stargazers count: 2.273%
    • Forks count: 3.752%
    • Average: 8.895%
    • Dependent packages count: 29.555%
  • Maintainers (1)
alpine-v3.17: ruby-timecop

A gem providing 'time travel' and 'time freezing' capabilities

  • Homepage: https://github.com/travisjeffery/timecop
  • Licenses: MIT
  • Latest release: 0.9.5-r1 (published almost 4 years ago)
  • Last Synced: 2026-03-01T02:59:06.002Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Stargazers count: 3.727%
    • Forks count: 5.524%
    • Average: 9.126%
    • Dependent packages count: 27.254%
  • Maintainers (1)
ubuntu-22.04: ruby-timecop

  • Homepage: https://github.com/travisjeffery/timecop
  • Licenses:
  • Latest release: 0.9.1-1 (published 18 days ago)
  • Last Synced: 2026-02-13T13:27:36.671Z (18 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
debian-10: ruby-timecop

  • Homepage: https://github.com/travisjeffery/timecop
  • Documentation: https://packages.debian.org/buster/ruby-timecop
  • Licenses:
  • Latest release: 0.8.0-1 (published 20 days ago)
  • Last Synced: 2026-02-13T04:26:35.754Z (18 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
alpine-v3.19: ruby-timecop

A gem providing 'time travel' and 'time freezing' capabilities

  • Homepage: https://github.com/travisjeffery/timecop
  • Licenses: MIT
  • Latest release: 0.9.8-r0 (published over 2 years ago)
  • Last Synced: 2026-03-01T02:47:58.730Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
  • Maintainers (1)
alpine-v3.20: ruby-timecop

A gem providing 'time travel' and 'time freezing' capabilities

  • Homepage: https://github.com/travisjeffery/timecop
  • Licenses: MIT
  • Latest release: 0.9.8-r1 (published about 2 years ago)
  • Last Synced: 2026-03-01T01:52:45.798Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
  • Maintainers (1)
debian-13: ruby-timecop

  • Homepage: https://github.com/travisjeffery/timecop
  • Documentation: https://packages.debian.org/trixie/ruby-timecop
  • Licenses:
  • Latest release: 0.9.10-1.1 (published 19 days ago)
  • Last Synced: 2026-02-13T13:20:22.180Z (18 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
debian-12: ruby-timecop

  • Homepage: https://github.com/travisjeffery/timecop
  • Documentation: https://packages.debian.org/bookworm/ruby-timecop
  • Licenses:
  • Latest release: 0.9.6-1 (published 19 days ago)
  • Last Synced: 2026-02-12T23:42:48.776Z (19 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
alpine-v3.22: ruby-timecop

A gem providing 'time travel' and 'time freezing' capabilities

  • Homepage: https://github.com/travisjeffery/timecop
  • Licenses: MIT
  • Latest release: 0.9.10-r1 (published 10 months ago)
  • Last Synced: 2026-03-01T01:16:38.926Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
  • Maintainers (1)
alpine-v3.21: ruby-timecop

A gem providing 'time travel' and 'time freezing' capabilities

  • Homepage: https://github.com/travisjeffery/timecop
  • Licenses: MIT
  • Latest release: 0.9.10-r0 (published over 1 year ago)
  • Last Synced: 2026-03-01T01:22:04.779Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
  • Maintainers (1)
alpine-v3.23: ruby-timecop

A gem providing 'time travel' and 'time freezing' capabilities

  • Homepage: https://github.com/travisjeffery/timecop
  • Licenses: MIT
  • Latest release: 0.9.10-r1 (published 10 months ago)
  • Last Synced: 2026-02-03T15:56:47.422Z (28 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
ubuntu-24.04: ruby-timecop

  • Homepage: https://github.com/travisjeffery/timecop
  • Licenses:
  • Latest release: 0.9.8-1 (published 25 days ago)
  • Last Synced: 2026-02-06T16:08:36.773Z (25 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
ubuntu-23.04: ruby-timecop

  • Homepage: https://github.com/travisjeffery/timecop
  • Licenses:
  • Latest release: 0.9.6-1 (published 20 days ago)
  • Last Synced: 2026-02-11T06:51:21.609Z (20 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
ubuntu-24.10: ruby-timecop

  • Homepage: https://github.com/travisjeffery/timecop
  • Licenses:
  • Latest release: 0.9.8-1 (published 22 days ago)
  • Last Synced: 2026-02-09T17:26:51.390Z (22 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
debian-11: ruby-timecop

  • Homepage: https://github.com/travisjeffery/timecop
  • Documentation: https://packages.debian.org/bullseye/ruby-timecop
  • Licenses:
  • Latest release: 0.9.1-1 (published 21 days ago)
  • Last Synced: 2026-02-13T08:25:44.615Z (18 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
ubuntu-23.10: ruby-timecop

  • Homepage: https://github.com/travisjeffery/timecop
  • Licenses:
  • Latest release: 0.9.6-1 (published 18 days ago)
  • Last Synced: 2026-02-13T18:34:25.310Z (18 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
ubuntu-20.04: ruby-timecop

  • Homepage: https://github.com/travisjeffery/timecop
  • Licenses:
  • Latest release: 0.9.1-1 (published 18 days ago)
  • Last Synced: 2026-02-13T07:24:15.739Z (18 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%

Dependencies

Gemfile rubygems
  • activesupport >= 0 development
  • i18n >= 0 development
  • jeweler < 2.1.3 development
  • minitest >= 0 development
  • minitest-rg >= 0 development
  • mocha >= 0 development
  • nokogiri >= 0 development
  • pry >= 0 development
  • rake >= 0 development
  • tzinfo >= 0 development
.github/workflows/CI.yml actions
  • actions/checkout v3 composite
  • ruby/setup-ruby v1 composite
Dockerfile docker
  • ruby latest build
timecop.gemspec rubygems

Score: 33.84856461957851