class Rapa::Language

Attributes

source[R]

@return [Hash]

Public Class Methods

new(source) click to toggle source

@param source [Hash]

# File lib/rapa/language.rb, line 7
def initialize(source)
  @source = source
end

Public Instance Methods

name() click to toggle source

@return [String]

# File lib/rapa/language.rb, line 12
def name
  source["Name"]
end
type() click to toggle source

@return [String]

# File lib/rapa/language.rb, line 17
def type
  source["Type"]
end