Class: Blogpostify::Configuration

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

Instance Method Summary collapse

Instance Method Details

#add_blog(title, url, options = {}) ⇒ Object



19
20
21
# File 'lib/blogpostify.rb', line 19

def add_blog(title, url, options={})
  self.blogs << Blog.new(title, url, options)
end

#blogsObject



15
16
17
# File 'lib/blogpostify.rb', line 15

def blogs
  @blogs ||= []
end