Sha256: 7d2060c2bfaede5f6c9c09de2e85f63f99263cf19abe360f9c5419fa0169b004
Contents?: true
Size: 472 Bytes
Versions: 1
Compression:
Stored size: 472 Bytes
Contents
require 'fastlane/plugin/testintask/version' module Fastlane module Testintask # 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::Testintask.all_classes.each do |current| require current end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
testin-0.1.0 | fastlane-plugin-testintask/lib/fastlane/plugin/testintask.rb |