Sha256: 0840fa02cfda1359110e0533a649e7a5035c8536099b038fe5bd11274bbc76a0

Contents?: true

Size: 1.09 KB

Versions: 2

Compression:

Stored size: 1.09 KB

Contents

# ReportingCloud Ruby Wrapper
#
# Official wrapper (authored by Text Control GmbH, publisher of ReportingCloud) to access 
# ReportingCloud in Ruby.
#
# Go to http://www.reporting.cloud to learn more about ReportingCloud
# Go to https://github.com/TextControl/txtextcontrol-reportingcloud-ruby for the 
# canonical source repository.
#
# License: https://raw.githubusercontent.com/TextControl/txtextcontrol-reportingcloud-ruby/master/LICENSE.md
#
# Copyright: © 2016 Text Control GmbH

module TXTextControl
  module ReportingCloud
  
    # Internal method parameter validator class.
    # @author Thorsten Kummerow (@thomerow)
    class TemplateDataValidator
    
      # Checks if a given value is a String, is not nil and not empty.
      # @param template_data [String] The string to validate.
      # @return [Boolean]
      def self.validate(template_data)
        raise ArgumentError, "Template data must be a Base64 encoded string." if !template_data.kind_of? String
        raise ArgumentError, "No template data given." if template_data.to_s.empty?
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
txtextcontrol-reportingcloud-1.0.1 lib/txtextcontrol/reportingcloud/template_data_validator.rb
txtextcontrol-reportingcloud-1.0.0 lib/txtextcontrol/reportingcloud/template_data_validator.rb