lib/exvo_helpers/helpers.rb in exvo_helpers-0.5.0 vs lib/exvo_helpers/helpers.rb in exvo_helpers-0.5.1
- old
+ new
@@ -3,11 +3,11 @@
module Helpers
# Dynamically define class methods
class << self
- %w(auth cdn cfs desktop themes blog contacts inbox music pics preview).each do |service|
+ %w(auth cdn cfs desktop themes blog contacts inbox music pics preview store).each do |service|
# def self.cdn_uri
# protocol = 'http://'
# protocol = 'https://' if service == "auth" && auth_require_ssl
# protocol = '//' if ["cdn", "cfs", "themes"].include?(service) && env.to_sym == :production
@@ -197,11 +197,12 @@
:blog_host => 'blog.exvo.com',
:contacts_host => 'contacts.exvo.com',
:inbox_host => 'inbox.exvo.com',
:music_host => 'music.exvo.com',
:pics_host => 'pics.exvo.com',
- :preview_host => 'preview.exvo.com'
+ :preview_host => 'preview.exvo.com',
+ :store_host => 'store.exvo.com'
},
:staging => {
:auth_debug => false,
:auth_host => 'auth.exvo.co',
:auth_require_ssl => false,
@@ -213,11 +214,12 @@
:blog_host => 'blog.exvo.co',
:contacts_host => 'contacts.exvo.co',
:inbox_host => 'inbox.exvo.co',
:music_host => 'music.exvo.co',
:pics_host => 'pics.exvo.co',
- :preview_host => 'preview.exvo.co'
+ :preview_host => 'preview.exvo.co',
+ :store_host => 'store.exvo.co'
},
:development => {
:auth_debug => false,
:auth_host => 'auth.exvo.local',
:auth_require_ssl => false,
@@ -229,11 +231,12 @@
:blog_host => 'blog.exvo.local',
:contacts_host => 'contacts.exvo.local',
:inbox_host => 'inbox.exvo.local',
:music_host => 'music.exvo.local',
:pics_host => 'pics.exvo.local',
- :preview_host => 'preview.exvo.local'
+ :preview_host => 'preview.exvo.local',
+ :store_host => 'store.exvo.local'
},
:test => {
:auth_debug => false,
:auth_host => 'auth.exvo.local',
:auth_require_ssl => false,
@@ -245,10 +248,11 @@
:blog_host => 'blog.exvo.local',
:contacts_host => 'contacts.exvo.local',
:inbox_host => 'inbox.exvo.local',
:music_host => 'music.exvo.local',
:pics_host => 'pics.exvo.local',
- :preview_host => 'preview.exvo.local'
+ :preview_host => 'preview.exvo.local',
+ :store_host => 'store.exvo.local'
}
}
end
end