-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathABB-API-Data.stencil
More file actions
40 lines (36 loc) · 1.63 KB
/
ABB-API-Data.stencil
File metadata and controls
40 lines (36 loc) · 1.63 KB
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
// sourcery:file:ABBAPIData.swift
/*
* This file is part of Adblock Plus <https://adblockplus.org/>,
* Copyright (C) 2006-present eyeo GmbH
*
* Adblock Plus is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* Adblock Plus is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
*/
/// API data values are loaded in at build time.
final class ABBAPIData: NSObject {
/// - Returns: A HockeyApp API Key (for Debug Scheme) or default string ("DEBUG").
@objc
class func hockeyAppIdDebug() -> NSString {
{% if argument.hockeyAppIdDebug %}return {{ argument.hockeyAppIdDebug }}{% else %}return "DEBUG"{% endif %}
}
/// - Returns: A HockeyApp API Key (for DevBuild Scheme) or default string ("DEVBUILD").
@objc
class func hockeyAppIdDevBuild() -> NSString {
{% if argument.hockeyAppIdDevBuild %}return {{ argument.hockeyAppIdDevBuild }}{% else %}return "DEVBUILD"{% endif %}
}
/// - Returns: A HockeyApp API Key (for Release Scheme) or default string ("RELEASE").
@objc
class func hockeyAppIdRelease() -> NSString {
{% if argument.hockeyAppIdRelease %}return {{ argument.hockeyAppIdRelease }}{% else %}return "RELEASE"{% endif %}
}
}
// sourcery:end