Sha256: 082a71075d45ec4b78a1d4a38c9a78a5e7aaaac6d6836541189740ae49e07817

Contents?: true

Size: 307 Bytes

Versions: 1

Compression:

Stored size: 307 Bytes

Contents

module PansophyAuthenticator
  module Configuration
    class Remote < Base
      def errors
        errors = super
        return errors + ['Bucket name is not defined'] if @bucket_name.nil?
        return errors + ['File path is not defined'] if @file_path.nil?
        errors
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
pansophy_authenticator-0.5.0 lib/pansophy_authenticator/configuration/remote.rb