No release in over 3 years
Low commit activity in last 3 years
Time Travel with timecop for your Rails app
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0

Runtime

>= 0
 Project Readme

Rails Time Travel

CI RailsJazz https://www.patreon.com/igorkasyanchuk Listed on OpenSource-Heroes.com

Time travel with timecop for your Rails app (in development, staging or other env).

Very often you need to create objects or other things in the "past". With thins gem and excellent timecop gem you can freeze time to any date/time.

For developers & QA's.

Usage

Open /rails/time_travel to see

Now you can adjust the datetime. Once you are done - just reset time (you will see a red button).

Note, that this datetime change is related only to your session.

Installation

Add this line to your application's Gemfile:

group :development do
  gem 'rails_time_travel' # you can also use it on staging env or production
end

Limitations

  • this approach has all limitation which timecop has. In addition it won't work on your background jobs or SQL's with NOW(), because this gem doesn't change system time and background job is a separate process.
  • selected datetime is static, it means that value is freezed, if you need to change it you need to reset or adjust it with buttons

Contributing

  • BUNDLE_GEMFILE=gemfiles/rails_6_1.gemfile bundle exec rake test to run for Rails 6.1
  • BUNDLE_GEMFILE=gemfiles/rails_6_0.gemfile bundle exec rake test to run for Rails 6.0
  • BUNDLE_GEMFILE=gemfiles/rails_5_2.gemfile bundle exec rake test to run for Rails 5.2

TODO

  • jump to a specific datetime with datetime picker?
  • CI for Rails 4.X
  • protect with password (for example how I did in rails_performance gem)
  • go the the future?
  • make datetime not static? (use lambda)

Credits

https://stackoverflow.com/questions/32129741/can-you-use-timecop-gem-for-development-in-rails

License

The gem is available as open source under the terms of the MIT License.