Blogspot - bparanj.blogspot.com - Software Development
General Information:
Latest News:
bundler not installing gems in the current gemset 9 Aug 2013 | 01:41 am
To force bundler install gems for the current gemset run: GEM_PATH=$GEM_HOME bundle install
List gems for current gemset in rvm 9 Aug 2013 | 01:10 am
$ GEM_PATH=$GEM_HOME gem list
PATH is not properly set up RVM 8 Aug 2013 | 09:52 pm
Run : rvm get head
undefined method your_method for Syck::Object Delayed job 7 Aug 2013 | 03:43 am
Add : require 'yaml' YAML::ENGINE.yamler = 'syck' lines to the top of application.rb.
Three Rules of TDD 22 Jul 2013 | 02:20 am
Notes from Bob Martin's screencast: 1. Write the test first. 2. Write only enough of a test to demonstrate a failure. 3. Write only enough of production code to pass the test.
Authlogic::Session::Activation::NotActivatedError: You must activate the Authlogic::Session::Base.controller with a controller object before creating ... 18 Jul 2013 | 04:07 am
In rails console run : Authlogic::Session::Base.controller = Authlogic::ControllerAdapters::RailsAdapter.new(self) Reference
iomega external drive is not showing up on Mac OS 13 Jul 2013 | 04:41 am
1. In a terminal run : sudo chflags nohidden /Volumes/* Since I did not know the name of my iomega drive I used the wildcard * instead of the name for the external drive. 2. Unplug the power to the ...
How to Setup Amazon Cloud Front in Rails 3.2 app 2 Jul 2013 | 03:27 am
I bought my domain at namecheap.com. It is hosted at Linode. Step 1 : I used Linode control panel to create a CNAME. It looks like this: CNAME Records Hostname Aliases to TTL cdn amazon-provided-i...
How to stop Rails 3.2 from including javascript twice 4 Jun 2013 | 02:28 am
Make sure the development.rb has : config.assets.debug = false
How to stop Rails 3.2 from including javascript twice 4 Jun 2013 | 02:28 am
Make sure the development.rb has : config.assets.debug = false