This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ BUNDLE_GEMFILE=gemfiles/rails3.gemfile bundle exec rake | |
/Users/avokhmin/.rvm/rubies/jruby-src-1.7.19/bin/jruby -w -I"lib:test" -I"/Users/avokhmin/.rvm/gems/jruby-src-1.7.19@dalli/gems/rake-10.4.2/lib" "/Users/avokhmin/.rvm/gems/jruby-src-1.7.19@dalli/gems/rake-10.4.2/lib/rake/rake_test_loader.rb" "test/**/test_*.rb" | |
Testing with Rails 3.2.21 | |
Using standard socket IO (jruby 1.7.19 (1.9.3p551) 2015-01-29 20786bd on Java HotSpot(TM) 64-Bit Server VM 1.6.0_51-b11-457 +jit [darwin-x86_64]) | |
Run options: --seed 13597 | |
# Running tests: | |
Found memcached 1.4.20 in PATH | |
............#<Errno::ECHILD: No child processes - No child processes> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
user rosa; | |
worker_processes 2; | |
#error_log logs/error.log; | |
#error_log logs/error.log notice; | |
#error_log logs/error.log info; | |
#pid logs/nginx.pid; | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
upstream rosa_build_backend { | |
# server 127.0.0.1:8080; | |
server unix:/tmp/rosa_build_unicorn.sock; | |
} | |
server { | |
listen 80; | |
server_name 127.0.0.1; | |
root /srv/rosa_build/current/public; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# From here: http://www.codingsteps.com/install-redis-2-6-on-amazon-ec2-linux-ami-or-centos/ | |
# Based on: https://github.com/saxenap/install-redis-amazon-linux-centos | |
# Thanks to https://raw.github.com/gist/2776679/b4f5f5ff85bddfa9e07664de4e8ccf0e115e7b83/install-redis.sh | |
# Uses redis-server init script from https://raw.github.com/saxenap/install-redis-amazon-linux-centos/master/redis-server | |
############################################### | |
# To use: | |
## wget https://raw.github.com/jorgerc/install-redis-amazon-linux-centos/master/redis-install-script.sh | |
## chmod 777 redis-install-script.sh | |
## ./redis-install-script.sh |