Module: Sigh
- Defined in:
- sigh/lib/sigh/module.rb,
sigh/lib/sigh/repair.rb,
sigh/lib/sigh/resign.rb,
sigh/lib/sigh/runner.rb,
sigh/lib/sigh/manager.rb,
sigh/lib/sigh/options.rb,
sigh/lib/sigh/download_all.rb,
sigh/lib/sigh/local_manage.rb,
sigh/lib/sigh/commands_generator.rb
Defined Under Namespace
Classes: CommandsGenerator, DownloadAll, LocalManage, Manager, Options, Repair, Resign, Runner
Constant Summary
collapse
- Helper =
you gotta love Ruby: Helper.* should use the Helper class contained in FastlaneCore
FastlaneCore::Helper
- UI =
FastlaneCore::UI
- ROOT =
Pathname.new(File.expand_path('../../..', __FILE__))
Class Attribute Summary collapse
Class Method Summary
collapse
Class Attribute Details
.config ⇒ Object
Returns the value of attribute config.
7
8
9
|
# File 'sigh/lib/sigh/module.rb', line 7
def config
@config
end
|
Class Method Details
.profile_pretty_type(profile_type) ⇒ Object
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
|
# File 'sigh/lib/sigh/module.rb', line 9
def profile_pretty_type(profile_type)
require 'spaceship'
case profile_type
when Spaceship::ConnectAPI::Profile::ProfileType::IOS_APP_DEVELOPMENT,
Spaceship::ConnectAPI::Profile::ProfileType::MAC_APP_DEVELOPMENT,
Spaceship::ConnectAPI::Profile::ProfileType::TVOS_APP_DEVELOPMENT,
Spaceship::ConnectAPI::Profile::ProfileType::MAC_CATALYST_APP_DEVELOPMENT
"Development"
when Spaceship::ConnectAPI::Profile::ProfileType::IOS_APP_STORE,
Spaceship::ConnectAPI::Profile::ProfileType::MAC_APP_STORE,
Spaceship::ConnectAPI::Profile::ProfileType::TVOS_APP_STORE,
Spaceship::ConnectAPI::Profile::ProfileType::MAC_CATALYST_APP_STORE
"AppStore"
when Spaceship::ConnectAPI::Profile::ProfileType::IOS_APP_ADHOC,
Spaceship::ConnectAPI::Profile::ProfileType::TVOS_APP_ADHOC
"AdHoc"
when Spaceship::ConnectAPI::Profile::ProfileType::IOS_APP_INHOUSE,
Spaceship::ConnectAPI::Profile::ProfileType::TVOS_APP_INHOUSE
"InHouse"
when Spaceship::ConnectAPI::Profile::ProfileType::MAC_APP_DIRECT,
Spaceship::ConnectAPI::Profile::ProfileType::MAC_CATALYST_APP_DIRECT
"Direct"
end
end
|