jseifer (owner)

Forks

Revisions

gist: 93256 Download_button fork
public
Public Clone URL: git://gist.github.com/93256.git
Embed All Files: show embed
Bash #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
sudo port install beanstalkd
sudo port install memcached
 
sudo gem install beanstalk-client
sudo gem install memcache-client
 
# to start
beanstalkd -d
memcached -d
 
# if you get connection refused errors, make sure beanstalkd is running
ps aux | grep beanstalk | grep -v grep
 
# if you don't see it:
nohup beanstalkd > /dev/null &
 
# if you get the following error:
# /cores/ruby-enterprise/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require': no such file to load -- spec/test/unit (MissingSourceFile)
sudo gem install rspec-rails