Sha256: 905aaf0225bc29e3db3efe58589283360dbe568750a3895aa626df5f48035021

Contents?: true

Size: 981 Bytes

Versions: 3

Compression:

Stored size: 981 Bytes

Contents

SocialStream::Presence.setup do |config| 
  #Configures XMPP Server Domain
  config.domain = "localhost"
  #Configures Bosh Service Path
  #config.bosh_service = "http://xmpp-proxy/http-bind"
  #Configures Authentication Method: "cookie" or "password"
  config.auth_method = "cookie"
  #Configures XMPP Server Password
  config.xmpp_server_password = "password"
  #Remote or local mode
  config.remote_xmpp_server = false
  #Scripts path to execute ejabberd scripts: local or remote
  config.scripts_path = "/scripts_path"
  #False to disable Social Stream Presence
  #config.enable = false
  
  #Parameters for remote mode
  #SSH Login
  #config.ssh_domain = "domain"
  #config.ssh_user = "login"
  #config.ssh_password= "password"

  #Configure to use a Xmpp Client on Rails App
  #Username of the the Social Stream Admin sid
  config.social_stream_presence_username = "social_stream-presence"
  #Configures Social Stream Rails App Password
  config.password = "password"  

end

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
social_stream-presence-0.0.19 lib/generators/social_stream/presence/templates/initializer.rb
social_stream-0.12.2 presence/lib/generators/social_stream/presence/templates/initializer.rb
social_stream-presence-0.0.18 lib/generators/social_stream/presence/templates/initializer.rb