Skip to content

Instantly share code, notes, and snippets.

View Bijendra's full-sized avatar

Bijendra singh Bijendra

View GitHub Profile
@Bijendra
Bijendra / journey_planner
Created July 13, 2012 10:17
Unzipping a file to parse and save dat from each file using nokogiri is time consuming as there are 739 files and each of 1.2-1.5 mb which comes down to total as 1.2 GB.This operation runs as a background job using redis-resque.
require 'open-uri' #Open-uri is a part of ruby standard library. It just need to be required when used.
require 'zip/zip'
require 'active_support/core_ext'
require 'nokogiri'
class JourneyPlanner
@queue = :journey_planner
class << self
def perform
@Bijendra
Bijendra / gist:3047566
Created July 4, 2012 14:11
rails g model modelname gives the error. there is no mongoid.yml file i have created. i was able to create models using this command. One reason i could see that i created config/mongoid.yml file and then deleted as though will configure it later.
Vamsi-iMac:tfl bijendra$ rails g model StandardService
**Notice: C extension not loaded. This is required for optimum MongoDB Ruby driver performance.
You can install the extension as follows:
gem install bson_ext
If you continue to receive this message after installing, make sure that the
bson_ext gem is in your load path and that the bson_ext and mongo gems are of the same version.