Class: Pod::Command::FastlaneSign
- Inherits:
-
Pod::Command
- Object
- Pod::Command
- Pod::Command::FastlaneSign
- Defined in:
- lib/cocoapods-hooks/command/fastlane_sign.rb
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(argv) ⇒ FastlaneSign
constructor
A new instance of FastlaneSign.
- #run ⇒ Object
- #validate! ⇒ Object
Constructor Details
#initialize(argv) ⇒ FastlaneSign
8 9 10 |
# File 'lib/cocoapods-hooks/command/fastlane_sign.rb', line 8 def initialize(argv) super end |
Class Method Details
.options ⇒ Object
12 13 14 15 16 |
# File 'lib/cocoapods-hooks/command/fastlane_sign.rb', line 12 def self. [ ].concat(super) end |
Instance Method Details
#run ⇒ Object
22 23 24 25 |
# File 'lib/cocoapods-hooks/command/fastlane_sign.rb', line 22 def run # 执行你的业务逻辑 system("fastlane ios configAllProject") end |
#validate! ⇒ Object
18 19 20 |
# File 'lib/cocoapods-hooks/command/fastlane_sign.rb', line 18 def validate! super end |