Sha256: 9ab1cad3932c2b2005f26d133ef0492d7f2a3cec9c2d5ff9cdff1b9ebfe48c99

Contents?: true

Size: 527 Bytes

Versions: 3

Compression:

Stored size: 527 Bytes

Contents

require '<%= require_path %>/version'

module Fastlane
  module <%= plugin_name.fastlane_class %>
    # Return all .rb files inside the "actions" and "helper" directory
    def self.all_classes
      Dir[File.expand_path('**/{actions,helper}/*.rb', File.dirname(__FILE__))]
    end
  end
end

# By default we want to import all available actions and helpers
# A plugin can contain any number of actions and plugins
Fastlane::<%= plugin_name.fastlane_class %>.all_classes.each do |current|
  require current
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
fastlane_hotfix-2.165.1 fastlane/lib/fastlane/plugins/template/lib/fastlane/plugin/%plugin_name%.rb.erb
fastlane_hotfix-2.165.0 fastlane/lib/fastlane/plugins/template/lib/fastlane/plugin/%plugin_name%.rb.erb
fastlane_hotfix-2.187.0 fastlane/lib/fastlane/plugins/template/lib/fastlane/plugin/%plugin_name%.rb.erb