RailsCasts Pro episodes are now free!

Learn more or hide this

Ikenna Okpala's Profile

GitHub User: ikennaokpala

Site: www.ikennaokpala.com

Comments by Ikenna Okpala

Avatar

On point (+1) reminds me of my java days.. soon we could be singing value objects!!

Avatar

Celluloid is really impressive (configurable concurrency solution) based on what i have seen so far.. a good option for ruby projects.. reducing or zero the learning curve or adoption of the likes of Scala (AKKA) or Erlang etc.. awesome.. soon, gone will be the days when ruby would be mocked for concurrency..

Avatar

@blackpond: Homebrew by design requires that in your user profile file (i.e. .bashrc or .profile or .bash_profile), that your set /usr/local/bin ahead of /usr/bin to avoid clashes with system software tools that may exist in other paths on your machine. it is important that you override the system paths to use homebrew installations as default.

Avatar

Excellent!! as usual...

Would like contribute a little tweek to this with installing gems on production.

create a gemrc (touch ~/.gemrc)

and then copy paste this to avoid fetching the gem docs on install, update and sources, plus some other defualts i use.

bash
---
:verbose: true
:bulk_threshold: 1000
install: --no-ri --no-rdoc --env-shebang
:sources:
- http://gemcutter.org
- http://gems.rubyforge.org/
- http://gems.github.com
:benchmark: false
:backtrace: false
update: --no-ri --no-rdoc --env-shebang
:update_sources: true