Sha256: c7b36289fb3a52d7404a2600e9da99e355e24289e4282d46f90cc985c14d3fb5

Contents?: true

Size: 458 Bytes

Versions: 1

Compression:

Stored size: 458 Bytes

Contents

require 'formatafacil/tarefa'

module Formatafacil

  class ArquivoConfiguracaoAusenteException < Exception
  end

  class TarefaChooser

    def escolhe_tarefa
      raise Formatafacil::ArquivoConfiguracaoAusenteException, "Não foi possível localizar o arquivo de configuração: #{Formatafacil::Tarefa.arquivo_configuracao}" unless File.exist?(Formatafacil::Tarefa.arquivo_configuracao)
      Formatafacil::ArtigoTarefa.new
    end
    
  end
  
  

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
formatafacil-0.1.0 lib/formatafacil/tarefa_chooser.rb