Class: Fastlane::Actions::NpmPostInstallAction

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

Class Method Summary collapse

Class Method Details

.authorsObject



19
20
21
# File 'lib/fastlane/plugin/npm/actions/npm_post_install_action.rb', line 19

def self.authors
  ["Erick Martins"]
end

.available_optionsObject



32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# File 'lib/fastlane/plugin/npm/actions/npm_post_install_action.rb', line 32

def self.available_options
  [
    FastlaneCore::ConfigItem.new(key: :step_name,
                       default_value: "Running npm post install script",
                         description: "Name for this step",
                            optional: true,
                                type: String),

    FastlaneCore::ConfigItem.new(key: :arguments,
                        default_value: [],
                          description: "Script arguments",
                            optional: true,
                                type: Array),
  ]
end

.descriptionObject



15
16
17
# File 'lib/fastlane/plugin/npm/actions/npm_post_install_action.rb', line 15

def self.description
  "A very simple plugin to run npm scripts"
end

.detailsObject



27
28
29
30
# File 'lib/fastlane/plugin/npm/actions/npm_post_install_action.rb', line 27

def self.details
  # Optional:
  "A very simple plugin to run npm scripts"
end

.is_supported?(platform) ⇒ Boolean

Returns:

  • (Boolean)


48
49
50
51
52
53
54
# File 'lib/fastlane/plugin/npm/actions/npm_post_install_action.rb', line 48

def self.is_supported?(platform)
  # Adjust this if your plugin only works for a particular platform (iOS vs. Android, for example)
  # See: https://docs.fastlane.tools/advanced/#control-configuration-by-lane-and-by-platform
  #
  # [:ios, :mac, :android].include?(platform)
  true
end

.return_valueObject



23
24
25
# File 'lib/fastlane/plugin/npm/actions/npm_post_install_action.rb', line 23

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

.run(params) ⇒ Object



7
8
9
10
11
12
13
# File 'lib/fastlane/plugin/npm/actions/npm_post_install_action.rb', line 7

def self.run(params)
  other_action.npm_run(
    script: 'postinstall', 
    step_name: params[:step_name],
    arguments: params[:arguments]
  )
end