Sha256: 035c2170418f28b5a975ae9d7c63907121cf8ec5bd406e1530a944e88a054d22
Contents?: true
Size: 378 Bytes
Versions: 17
Compression:
Stored size: 378 Bytes
Contents
# frozen_string_literal: true module Synvert::Core # Synvert global configuration. class Configuration class << self attr_writer :path, :skip_files, :show_run_process def path @path || '.' end def skip_files @skip_files || [] end def show_run_process @show_run_process || false end end end end
Version data entries
17 entries across 17 versions & 1 rubygems