class MoronepoConfiguration
Attributes
command[RW]
filter[RW]
project[RW]
working_directory[RW]
Public Class Methods
new(dictionary)
click to toggle source
# File lib/fastlane/plugin/moronepo/helper/moronepo_configuration.rb, line 7 def initialize(dictionary) @working_directory = dictionary[:working_directory] @project = dictionary[:project] @filter = dictionary[:filter] @command = dictionary[:command] end