Sha256: 2f0c6f9851d72659bb765851f49b4027dd9ad4bab95624d1199566d061690e4b
Contents?: true
Size: 554 Bytes
Versions: 1
Compression:
Stored size: 554 Bytes
Contents
module Rho class RhoFSConnector class << self def get_app_path(appname) 'apps/'+appname+'/' end def get_base_app_path 'apps/' end def get_app_manifest_filename get_base_app_path+'app_manifest.txt' end def get_model_path(appname, modelname) 'apps/'+appname+'/'+modelname+'/' end def get_db_fullpathname if defined? SYNC_DB_FILE SYNC_DB_FILE else 'syncdb_.dbs' end end end end # RhoApplication end # Rho
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rhodes-0.1.3 | lib/rho/rhofsconnectorME.rb |