Class: Nokaya::Instagram

Inherits:
Basic
  • Object
show all
Defined in:
lib/nokaya/instagram.rb

Instance Attribute Summary collapse

Attributes inherited from Basic

#args, #filenames, #name, #options, #path, #type, #urls

Instance Method Summary collapse

Methods inherited from Basic

#get_basic, #parse, #save

Constructor Details

#initialize(args, options = {}) ⇒ Instagram

Returns a new instance of Instagram.



8
9
10
11
12
13
14
15
# File 'lib/nokaya/instagram.rb', line 8

def initialize args, options = {}
  super(args, options)
  @type = :instagram
  parsed = parse(args[0])
  @urls = [get_basic(parsed)].compact
  @author = author_name(parsed)
  @filenames = name_files()
end

Instance Attribute Details

#authorObject (readonly)

Returns the value of attribute author.



6
7
8
# File 'lib/nokaya/instagram.rb', line 6

def author
  @author
end