No commit activity in last 3 years
No release in over 3 years
A Rails Engine to Control the passage of time as a test bed
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

>= 4.2.7.1
>= 0.8.1
 Project Readme

Delorean

CircleCI

A Rails Engine to Control the passage of time in a test bed. alt text

Video

Video on Youtube

Installation

Add this line to your application's Gemfile:

group :test, :development do
  gem 'delorean_test_bed'
end

And then execute:

$ bundle

Or install it yourself as:

$ gem install delorean_test_bed

Add routes to your routes.rb

  mount DeloreanTestBed::Engine, at: '/delorean'

Usage

Browse to localhost:3000/delorean, stop (pause), flux (scale), or accelerate (jump) to the times you need to test.

image

  1. To Reset, Turn the Time Circuits off and Back on
  2. To Freeze Time, Turn the Time Circuits Off
  3. To Scale Time, enter a value > 1 and flux
  4. To Jump to A Time, accelerate (to 88mph) Time will change and continue to run.

Usage in Test Beds

You may want to know the time factors (start, scale) when writing test beds. We've built a cache store so that any application (backend/frontend) can share this information.

  DeloreanTestBed::Cache.read(:start)
  DeloreanTestBed::Cache.read(:scale)
  DeloreanTestBed::Cache.read(:future)

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake spec to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

Testing

Please locally test your code. You can test your engine within the dummy app with

  $ cd test/dummy
  $ rails s

Automated tests are handled by mintest (limited to controller thus far)

  $ rake tests

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/delorean. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

License

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