Sha256: a3a46a80aa4d8cec239b183b1145fa5d6eeae197bb688635cc6c36fdeec20e6f

Contents?: true

Size: 1.71 KB

Versions: 7

Compression:

Stored size: 1.71 KB

Contents

module Constants

  PACKAGES                = ["zlib1g-dev",
                           "libcurl4-openssl-dev",
                           "apache2-mpm-prefork",
                           "apache2-prefork-dev",
                           "libapr1-dev",
                           "libaprutil1-dev",
                           "dtach"]

  RUBY                    = "ruby-1.9.3-p194"
  REDIS                   = "redis-2.4.13"
  SQLITE3                 = "sqlite-autoconf-3071000"
  NGINX                   = "nginx-1.3.0"
  PASSENGER_ROOT          = "/opt/rhoconnect/lib/ruby/gems/1.9.1/gems/passenger"

  SOFTWARE                = [ REDIS, SQLITE3, RUBY, NGINX ]

  REDIS_URL               = "http://redis.googlecode.com/files/#{REDIS}.tar.gz"
  SQLITE3_URL             = "http://www.sqlite.org/sqlite-autoconf-3071000.tar.gz"
  NGINX_URL               = "http://nginx.org/download/#{NGINX}.tar.gz"
  EVENTMACHINE_URL        = "https://github.com/rhomobile/eventmachine/tarball/master"
  URLS                    = [ REDIS_URL, SQLITE3_URL, NGINX_URL]
  GEMS                    = ["bundler", "thin"] #, foreman"
    
  SUPPORTED_PKG_MGRS      = ["apt-get", "yum"]
  SUPPORTED_WEB_SERVERS   = ["apache2", "nginx"]

  WEB_SERVER_URL          = "http://localhost/"

  CHECKS                  = ["check_all_packages", "check_all_gems", "check_web_server_running"]

  DEFAULT_INSTALL_DIR     = "/opt/rhoconnect"

  DEFAULTS                = {"Packages" => PACKAGES, "Software" => SOFTWARE, "Gems" => GEMS,
                             "Supported Package Managers" => SUPPORTED_PKG_MGRS,
                             "Supported Web Servers" => SUPPORTED_WEB_SERVERS,
                             "Default Install Directory" => DEFAULT_INSTALL_DIR}

end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
rhoconnect-3.3.4 installer/unix-like/rho_connect_install_constants.rb
rhoconnect-3.3.3 installer/unix-like/rho_connect_install_constants.rb
rhoconnect-3.3.2 installer/unix-like/rho_connect_install_constants.rb
rhoconnect-3.3.1 installer/unix-like/rho_connect_install_constants.rb
rhoconnect-3.3.1.beta4 installer/unix-like/rho_connect_install_constants.rb
rhoconnect-3.3.1.beta3 installer/unix-like/rho_connect_install_constants.rb
rhoconnect-3.3.1.beta2 installer/unix-like/rho_connect_install_constants.rb