Class: Fastlane::Actions::CodePushReleaseReactAction

Inherits:
Action
  • Object
show all
Defined in:
lib/fastlane/plugin/code_push/actions/code_push_release_react_action.rb

Class Method Summary collapse

Class Method Details

.authorsObject



24
25
26
# File 'lib/fastlane/plugin/code_push/actions/code_push_release_react_action.rb', line 24

def self.authors
  ["Manuel Koch"]
end

.available_optionsObject



37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# File 'lib/fastlane/plugin/code_push/actions/code_push_release_react_action.rb', line 37

def self.available_options
  [
    FastlaneCore::ConfigItem.new(key: :app_name,
                               env_name: "FASTLANE_CODE_PUSH_APP_NAME",
                               type: String,
                               optional: false,
                               description: "CodePush app name for releasing"),
    FastlaneCore::ConfigItem.new(key: :platform,
                                type: String,
                                optional: true,
                                default_value: "android",
                                description: "Platform for releasing to"),
    FastlaneCore::ConfigItem.new(key: :deployment,
                                type: String,
                                optional: true,
                                default_value: "Staging",
                                description: "Deployment name for releasing to"),
    FastlaneCore::ConfigItem.new(key: :target_binary_version,
                                is_string: false,
                                optional: true,
                                description: "Target binary version for example 1.0.1"),
    FastlaneCore::ConfigItem.new(key: :mandatory,
                                is_string: false,
                                default_value: true,
                                optional: true,
                                description: "mandatory update or not"),
    FastlaneCore::ConfigItem.new(key: :description,
                                type: String,
                                optional: true,
                                default_value: "no description for release",
                                description: "Release description for CodePush"),
    FastlaneCore::ConfigItem.new(key: :dry_run,
                                 description: "Print the command that would be run, and don't run it",
                                 is_string: false,
                                 default_value: false)
  ]
end

.descriptionObject



20
21
22
# File 'lib/fastlane/plugin/code_push/actions/code_push_release_react_action.rb', line 20

def self.description
  "CodePush release-react functionality for fastlane"
end

.detailsObject



32
33
34
35
# File 'lib/fastlane/plugin/code_push/actions/code_push_release_react_action.rb', line 32

def self.details
  # Optional:
  "Fastlane Cli Wrapper for CodePush's release-react command"
end

.is_supported?(platform) ⇒ Boolean

Returns:

  • (Boolean)


75
76
77
# File 'lib/fastlane/plugin/code_push/actions/code_push_release_react_action.rb', line 75

def self.is_supported?(platform)
  true
end

.return_valueObject



28
29
30
# File 'lib/fastlane/plugin/code_push/actions/code_push_release_react_action.rb', line 28

def self.return_value
  # If your method provides a return value, you can describe here what it does
end

.run(params) ⇒ Object



4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# File 'lib/fastlane/plugin/code_push/actions/code_push_release_react_action.rb', line 4

def self.run(params)
  command = "code-push release-react #{params[:app_name]} #{params[:platform]} -d #{params[:deployment]} "\
    "--des \"#{params[:description]}\" "
  if params[:mandatory]
    command += "-m "
  end
  if params[:target_binary_version]
    command += "-t #{params[:target_binary_version]} "
  end
  if params[:dry_run]
    UI.message("Dry run!".red + " Would have run: " + command + "\n")
  else
    sh(command.to_s)
  end
end