forked from gooddata/gooddata-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.rb
40 lines (32 loc) · 1.04 KB
/
default.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# encoding: UTF-8
#
# Copyright (c) 2010-2017 GoodData Corporation. All rights reserved.
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.
module GoodData
module Environment
set_const :LOCALSTACK, ENV['GD_LOCALSTACK'] == 'true' || false
module ConnectionHelper
set_const :GD_PROJECT_TOKEN, ''
set_const :GD_MAX_RETRY, Helpers::GD_MAX_RETRY
set_const :DEFAULT_USERNAME, "[email protected]"
set_const :DEFAULT_DOMAIN, ''
set_const :DEFAULT_USER_URL, ''
set_const :TEST_USERNAME, "[email protected]"
set_const :DEFAULT_SERVER, ''
set_const :STAGING_URI, ''
end
module ProcessHelper
set_const :PROCESS_ID, ''
set_const :DEPLOY_NAME, 'main.rb'
end
module ProjectHelper
set_const :PROJECT_ID, ''
set_const :PROJECT_TITLE, 'GoodTravis'
set_const :PROJECT_SUMMARY, 'No summary'
end
module ScheduleHelper
set_const :SCHEDULE_ID, ''
end
end
end