Questions tagged [zeus]

Zeus is an environment preloader for Ruby, so that your development tasks such as console, server, generate, and specs/tests take less time to load.

Zeus is an environment preloader for Ruby, so that your development tasks such as console, server, generate, and specs/tests take less time to load. See the docs for more information.

99 questions
1
vote
1 answer

How do you use cucumber with zeus?

When I start up zeus, it does not offer zeus cucumber as one of the possible commands. Others seem to get this by default; At least I have seen a couple zeus write-ups that show the output from zeus start including zeus cucumber, and they don't say…
Avram
  • 193
  • 11
1
vote
1 answer

Zeus IDE autocomplete option for Golang (intellisense macros missing)

I have installed Zeus IDE v397 to run, compile and debug Golang scripts successfully as i work on win32 platform. The new version v398 of Zeus is for win64 ONLY because i can not open it! I would like to ask you how can i set up the autocomplete…
asimkon
  • 915
  • 1
  • 14
  • 21
1
vote
1 answer

Use zeus with Rails 3 and docker

We have a Rails 3.2.9 app, and recently switched to Docker in development. By now, I've always used zeus local on my machine to preload my codebase and execute tests with Rspec faster. But how would you achieve this with docker? When I try to…
23tux
  • 14,104
  • 15
  • 88
  • 187
1
vote
0 answers

Guard + Zeus + RSpec: RSpec triggered before zeus load the changes

After running zeus start and bundle exec guard, rspec is triggered immediately when I save a file guard is watching. At that point zeus is still reloading the file. Therefore, I have to save the file a second time for the changes to be reflected by…
wesley6j
  • 1,393
  • 9
  • 17
1
vote
1 answer

Apache mod rewrite rules to Zeus rewrite rules

This morning I wanted to move my development website online (in a protected folder), but I figured out that our host (on a shared server) does not use apache mod_rewrite but Zeus rules. I've never heard about that before but it seems that apache…
Nicolas
  • 2,754
  • 6
  • 26
  • 41
1
vote
1 answer

zeus + guard + rspec "Couldn't find test file 'rspec'

My Rails application has installed the guard-zeus and rspec-rails gems. My Guardfile has the default watch code generated by guard init zeus I run guard. When I save a file, specs in that file run correctly. However, when I press return in the…
mehulkar
  • 4,895
  • 5
  • 35
  • 55
1
vote
1 answer

No DRb server is running. Running in local process instead ...(Rails 4/Zeus/guard/rspec 3)

I have just switched from using Spork with Guard to using Zeus I used this step by step guide: http://blog.blenderbox.com/2014/04/10/testing-rails-3-with-guard-and-zeus/ The thing, is now my routine is in a terminal window do $ zeus start in…
Mathieu
  • 4,587
  • 11
  • 57
  • 112
1
vote
0 answers

Zeus under Rubymine runs routing specs but not model specs

Rubymine 6.3.2 This command works from console: /Users/batman/.rvm/rubies/ruby-2.0.0-p353/bin/ruby /Users/batman/work/marvin/marvin/bin/zeus rspec /Users/batman/work/marvin/marvin/spec/models --require…
antiqe
  • 1,125
  • 8
  • 17
1
vote
1 answer

Rails Model changes causing full Zeus restart

Whenever I save a Rails model while running Zeus, the Zeus server appears to be completely reloading. The Zeus output generally turns yellow ("waiting") for about 10 seconds. This only happens with some models. I have yet to figure out the…
Matt Fordham
  • 3,147
  • 10
  • 34
  • 51
1
vote
1 answer

Why is Zeus running slower than RSpec?

Some of the individual tests are lightning fast with Zeus, and others are pretty dang slow. If I do: time rspec spec/ The result is: Finished in 35.36 seconds 220 examples, 0 failures real 0m59.018s user 0m43.723s sys 0m2.495s But if I use…
trevorhinesley
  • 845
  • 1
  • 10
  • 36
1
vote
1 answer

zeus rspec doesn't return to shell when js:true and driver=:poltergeist_debug

After running zeus rspec spec/, the command doesn't return control back to the bash shell if there is an example that uses js:true. It runs the test and reports the result, but it doesn't exit. However, it runs fine if I just run rspec without…
Chris Beck
  • 1,899
  • 2
  • 19
  • 26
1
vote
1 answer

Is there a way to keep Guard from ever running my entire spec?

I'm using Guard along with Zeus and RSpec for testing a Rails 3.2.16 application. When I change an RSpec support file, Guard wants to re-run the whole spec. I really would like to turn that behavior off. I'd like to only run the whole spec by hand,…
RubyRedGrapefruit
  • 12,066
  • 16
  • 92
  • 193
1
vote
1 answer

Zeus not reloading code changes in model files in Rails

I've recently discovered Zeus and it's fantastic really speeds up my feedback loop when developing it's just that when I'm making changes to my model like adding a new method Zeus doesn't restart and the new method isn't loaded. I'm not sure where…
user827570
  • 491
  • 1
  • 8
  • 15
1
vote
3 answers

Zeus + Vagrant remove .zeus.sock and try again

Vagrant with Ubuntu, Ruby 2.0, Rails 4.0.1, Zeus 0.13.3.rc2 I'm going to the /vagrant directory then export ZEUSSOCK=/tmp/zeus.sock zeus start Starting Zeus server Unable to accept socket connection. It looks like Zeus is already running. If not,…
Kazmin
  • 1,003
  • 1
  • 10
  • 26
1
vote
2 answers

How to correctly run minitest with Guard, through zeus

I have a Rails 4 application, tested with stock minitest. Zeus is set-up and working, so is Guard. However, when I have Zeus running and fire Guard, it does not speed up: Guard does not seem to use Zeus for faster booting, despite having guard…
berkes
  • 26,996
  • 27
  • 115
  • 206