Class: YouTubeIt::Record

Inherits:
Object
  • Object
show all
Defined in:
lib/youtube_it/record.rb

Overview

:nodoc:

Instance Method Summary collapse

Constructor Details

#initialize(params) ⇒ Record

Returns a new instance of Record.



3
4
5
6
7
8
9
10
# File 'lib/youtube_it/record.rb', line 3

def initialize (params)
  return if params.nil?

  params.each do |key, value| 
    name = key.to_s
    instance_variable_set("@#{name}", value) if respond_to?(name)
  end
end