bskim45/fastlane-plugin-google_drive

View on GitHub
lib/fastlane/plugin/google_drive.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
require 'fastlane/plugin/google_drive/version'

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