Sha256: ee66f24a5809526f91d29aa104be54c7c123b21b95e43d08ec95b0d0f9d081f7
Contents?: true
Size: 460 Bytes
Versions: 10
Compression:
Stored size: 460 Bytes
Contents
require 'fastlane/plugin/simctl/version' module Fastlane module Simctl # 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::Simctl.all_classes.each do |current| require current end
Version data entries
10 entries across 10 versions & 2 rubygems