Sha256: 12256ce3a3874ef88aac64fe2608e3cfc606d63f5339df4032302f9c4dd575b9

Contents?: true

Size: 579 Bytes

Versions: 135

Compression:

Stored size: 579 Bytes

Contents

 module System
   def get_locale
    'en'
  end
 end
 include System

 class RhoLog
   def error(cat,msg)
     puts cat + "|" + msg
   end
   def info(cat,msg)
     puts cat + "|" + msg
   end
 end

 class SyncEngine
   @@mutex = ::Mutex.new()
   def self.lock_sync_mutex
     @@mutex.lock
   end
   def self.unlock_sync_mutex
     @@mutex.unlock
   end
 end

 class RhoConf
   @@conf = {}
   def self.set_property_by_name(name,value)
     @@conf[name] = value
   end
 end

module Rho
   class RhoFSConnector
     def self.__rhoGetCurrentDir
       Dir.pwd
     end
   end
 end

Version data entries

135 entries across 135 versions & 2 rubygems

Version Path
rhodes-7.6.0 lib/test/rho_stubs.rb
rhodes-7.5.1 lib/test/rho_stubs.rb
rhodes-7.4.1 lib/test/rho_stubs.rb
rhodes-7.1.17 lib/test/rho_stubs.rb
rhodes-6.2.0 lib/test/rho_stubs.rb
rhodes-6.0.11 lib/test/rho_stubs.rb
rhodes-5.5.18 lib/test/rho_stubs.rb
rhodes-5.5.17 lib/test/rho_stubs.rb
rhodes-5.5.15 lib/test/rho_stubs.rb
rhodes-5.5.0.22 lib/test/rho_stubs.rb
rhodes-5.5.2 lib/test/rho_stubs.rb
rhodes-5.5.0.7 lib/test/rho_stubs.rb
rhodes-5.5.0.3 lib/test/rho_stubs.rb
rhodes-5.5.0 lib/test/rho_stubs.rb
tauplatform-1.0.3 lib/test/rho_stubs.rb
tauplatform-1.0.2 lib/test/rho_stubs.rb
tauplatform-1.0.1 lib/test/rho_stubs.rb
rhodes-3.5.1.12 lib/test/rho_stubs.rb
rhodes-3.3.5 lib/test/rho_stubs.rb
rhodes-3.4.2 lib/test/rho_stubs.rb