Sha256: ad5731c4fca159d7c6e72ecd69624c1f0ca009b33f7f67a8f1c3206c83227c97

Contents?: true

Size: 716 Bytes

Versions: 3

Compression:

Stored size: 716 Bytes

Contents

### fastlane Helper

You can put shared code into this folder. Use this if you need to access the same code from multiple actions or to just clean up the actual action.

To create a new helper, duplicate the `podspec_helper.rb`, rename the class and put your code inside the class. 

Make sure it's structured like this:

```ruby
module Fastlane
  module Helper
    class PodspecHelper
      ...
    end
  end
end
```

The `git_helper` and `sh_helper` are different, please make sure to build something like `podspec_helper`.

### Use of the helper class

To access the helper class use

```ruby
Helper::PodspecHelper....
```

Make sure to prefix your helper with the `Helper::` module.

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
fastlane_hotfix-2.165.1 fastlane/lib/fastlane/helper/README.md
fastlane_hotfix-2.165.0 fastlane/lib/fastlane/helper/README.md
fastlane_hotfix-2.187.0 fastlane/lib/fastlane/helper/README.md