public
Description: An integration server written in Rails and integrated with metric_fu, rspec and cucumber,easy to install and easy to use
Homepage: http://www.diegocarrion.com
Clone URL: git://github.com/dcrec1/signal.git
signal /
name age message
file .gitignore Tue Oct 20 17:48:55 -0700 2009 added some files to gitignore [dcrec1]
file README.textile Fri Nov 13 14:09:27 -0800 2009 Updating the documentation to include the fact ... [Austin Fonacier]
file Rakefile Thu Oct 22 19:27:36 -0700 2009 build runs the features [dcrec1]
directory app/ Tue Nov 03 16:32:15 -0800 2009 project is only checked to branch if it's not m... [dcrec1]
directory config/ Tue Nov 10 13:21:50 -0800 2009 updated deploy.rb.sample with environment option [dcrec1]
directory db/ Tue Nov 03 15:29:52 -0800 2009 projects have a branch column [dcrec1]
directory doc/ Tue Sep 15 18:26:59 -0700 2009 Initial commit [dcrec1]
directory features/ Mon Nov 02 16:21:46 -0800 2009 added missed route to /projects/status.xml [dcrec1]
directory lib/ Thu Oct 22 17:59:23 -0700 2009 features output is doc/features.html [dcrec1]
directory public/ Mon Oct 26 17:24:48 -0700 2009 better deploy page and some view refactors, als... [dcrec1]
directory script/ Mon Sep 21 12:37:19 -0700 2009 generated delayed_job [dcrec1]
directory spec/ Tue Nov 03 16:32:15 -0800 2009 project is only checked to branch if it's not m... [dcrec1]
directory vendor/ Tue Nov 10 13:18:47 -0800 2009 atualizado o inploy [dcrec1]
README.textile

INSTALLATION:

1. Download the code:

git clone git://github.com/dcrec1/signal.git

If your installing the application on a remote machine:

2. Copy config/deploy.rb.sample to config/deploy.rb

2.1 Configure config/deploy.rb

2.2 Setup the application in the remote host:

rake inploy:remote:setup

Or if youre installing the application in the local machine:

2. Setup the application

rake inploy:local:setup

3. Configure config/mailer.yml

4. Start a job:

RAILS_ENV=production script/delayed_job start

5. Startup the application in your favourite server (passenger recommended)

If you want to use somer other database than SQLite (recommended):

6. Configure config/database.yml

7. Re-initialize the database:

rake db:migrate RAILS_ENV=production

UPDATE

From a remote machine:

rake inploy:remote:update

Or from the local machine:

rake inploy:local:update

2. Restart the server

PROJECTS

Every project you are importing needs to have a rake build task.

rake build

The task in your project should look something like this:

task: build => ['db:migrate', :spec, :cucumber, 'metrics:all']

USAGE

To fire a build from a script you can ping:

http://myserver/projects/id/build

where myserver is the location of your application and id the id of the project.

LICENSE:

(The MIT License)

Copyright © 2009

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
‘Software’), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED ‘AS IS’, WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.