Support for the Ruby 2.4 series has ended. See here for reference.

In Files

  • rss/rss.rb

Parent

Methods

Class/Module Index [+]

Quicksearch

RSS::NotSetError

Raised when a required variable is not set.

Attributes

name[R]
variables[R]

Public Class Methods

new(name, variables) click to toggle source
 
               # File rss/rss.rb, line 189
def initialize(name, variables)
  @name = name
  @variables = variables
  super("required variables of #{@name} are not set: #{@variables.join(', ')}")
end