Skip to content

Instantly share code, notes, and snippets.

View rdsubhas's full-sized avatar

Subhas Dandapani (RDX) rdsubhas

View GitHub Profile
@rdsubhas
rdsubhas / data.json
Created May 19, 2014 14:31
sample_data
{
"first_name" : "first",
"last_name" : "last",
"gender" : "M",
"birthdate" : "1990-01-01",
"father_name" : "father",
"mother_name" : "mother",
"caregiver_name" : "caregiver",
"caregiver_relationship" : "aunt",
@rdsubhas
rdsubhas / gist:5546071
Last active December 17, 2015 03:49
RapidFTR Addon
# This is a marker for all addons, be it ExportTask or anything else
# All these will become class methods, and not instance methods
module Addon
def enabled?
@@enabled
end
def enable
@@enabled = true
end