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

Detect the rails zeus start complete

I have 2 terminals running, and I'd like to run #on term1 zeus start #on term2 zeus server The problem is that normally it should wait for the start process to complete. My question is how could I make the second terminal to auto start the server…
Transparency
  • 365
  • 3
  • 10
1
vote
2 answers

Cucumber and RSpec testing with zeus: Postgres is being accessed by other users

In my Rails 3.2.13 app, I'm using Zeus. In the test environment I use PostgreSQL. When I run Cucumber and then RSpec (or the other way around), 9 out of 10 times I get the message: PG::Error: ERROR: database "bp_test" is being accessed by other…
Pascal Lindelauf
  • 4,782
  • 4
  • 40
  • 55
1
vote
0 answers

Rails: guard does not use zeus if model file changed

Trying to use guard-rspec with zeus: # Gemfile (the meaning part) group :development, :test do gem 'rspec-rails' gem 'guard-rspec' gem 'guard-cucumber' end group :test do gem 'cucumber-rails', require: false gem 'capybara' gem…
Darkside
  • 659
  • 8
  • 20
1
vote
1 answer

Ruby Rails 1.9.4-perf Zeus server not working, dies

Terminal Output: joe@peteimac:~ > zeus start Starting Zeus server ready : boot died : boot :After this it doesn't quit, it just seems to hang... Zeus is like Spork only more so. It lets you load your application in the background so things…
xxjjnn
  • 14,591
  • 19
  • 61
  • 94
1
vote
1 answer

Zeus rewrite.script - multiple directories

Looking for a little help with Zeus Rewrite.Script for multiple directories - I have a working script that operates in I place Wordpress in a sub-directory - however, If I want to run another Wordpress installation in another directory I can't get…
Ben21
  • 35
  • 6
0
votes
2 answers

Zeus server doesn't redirect on RewriteCond HTTP_USER_AGENT rule

I can't get this redirect to function: RewriteEngine on RewriteBase / RewriteCond %{HTTP_USER_AGENT} iPad|iPod|iPhone|Android|s+Mobile RewriteRule .* mobile.php I'm testing it using my Android phone, and also using the user-agent switcher in Google…
Jason
  • 15,064
  • 15
  • 65
  • 105
0
votes
0 answers

uwsgi package build error in yocto imx6ul zeus

I´m trying add the package uwsgi to fsl-image-machine-test image using bitbake, The depends are correctly added in the local.conf file DEPENDS += " e2fsprogs python-pip python-six yajl " When try compile the UWSGI package this error is…
0
votes
1 answer

mod_rewrite to zeus rewrite

Can the server I am working on for a client only runs zeus rewrite rules and the CMS I am using requires the following code Options +FollowSymLinks -Indexes RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME}…
Brob
  • 665
  • 2
  • 13
  • 23
0
votes
0 answers

Zeus Yocto build linux cpp application development

for the zeus release of yocto there is plug-in support for eclipse to develop applications. Can anyone help to how to set up eclipse for cross-compile the code? Presently I have installed the standard sdk on my pc. I need to know how to set up…
0
votes
3 answers

Zeus Rewrite Rules

I have a website that renders the URL: /work.php?cat=identity Normally I would research how to use mod_rewrite but unfortunately my hosting (Namesco) uses Zeus and not Apache, which is strange. How would I use Zeus' rewrite rules to convert…
Dan Hanly
  • 7,829
  • 13
  • 73
  • 134
0
votes
1 answer

Redirecting Entire Site with Zeus

I am trying to redirect an entire site that is on a Zeus server. I have only managed to successfully redirect the homepage. Other pages are coming up with "Page not found". Here's the code I used: match URL into $ with ^\/$ if matched set…
0
votes
1 answer

Rails Spring configuration similar like in Zeus?

I have something like this in Zeus custom plan, where I run some rake tasks: require 'zeus/rails' class CustomPlan < Zeus::Rails def rots `bundle exec rots 1> log/rots.log &` end def stripe_mock `bundle exec stripe-mock-server 1>…
0
votes
1 answer

Remove /index.php/ from Zeus rewrite.script WordPress permalinks

I have set up a WordPress site for a client of mine on my own server. When I was ready to transfer it over to his server I noticed that his host uses Zeus instead of Apache. I have never used Zeus before. The only problem is that Zeus doesn't use…
gteh
  • 741
  • 10
  • 17
0
votes
2 answers

Url rewriting for Zeus - regex help

I've been landed with the unenviable task of putting a site live today only to find out its not running on Apache but instead is using Zeus. Now this breaks my mod_rewrite script rather messily. Its a simple script which I've rewrote into Zeus…
DMA
  • 21
  • 1
  • 4
0
votes
1 answer

How to do url rewriting for zeus server?

My site is in zeus server. Now i need to redirect my site to secure site using https. I found that url rewriting code different for zeus server. How do i use url rewriting code? Any help will be appreciated. Thanks in advance.
user75472
  • 1,277
  • 4
  • 28
  • 53