Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fastlane-plugin-import_from_template / lib / fastlane / plugin / import_from_template.rb
Size: Mime:
require "fastlane/plugin/import_from_template/version"

module Fastlane
  module ImportFromTemplate
    # 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::ImportFromTemplate.all_classes.each do |current|
  require current
end