Zeus solves long rails init problem by releu

Zeus preloads your app and when you run console, generate or rspec tasks it loads much faster - less than a second!

How to start:

gem install zeus
zeus init
zeus start

And then start testing instantly!

zeus rspec spec/models/your_model_spec.rb

Benchmarks:

time rails g
rails g  8.48s user 1.68s system 97% cpu 10.449 total
time zeus rails g
zeus g  0.18s user 0.03s system 11% cpu 1.809 total

Also other commands are available:

zeus console
zeus server
zeus testrb test/unit/widget_test.rb
zeus rspec spec/widget_spec.rb
zeus generate model omg
zeus rake -T
zeus runner omg.rb

Zeus on GitHub

#rails #zeus #rspec

Similar posts

Comments

tomasv commented 8 months ago

8c3641f0bcf82735dadbf7a88be68173?size=52

I tried using it with RubyMine, but wasn't able to make it play along well (tried to hack it together through custom runner scripts). Anyone had any luck?

releu commented 8 months ago

757fb0d5ec7560b6f25f5bd98eadc020?size=52

I don't use rubymine but you can ask their support for help. They are friendly.

releu
tomasv