Module: Love::Share

Defined in:
lib/love/share.rb

Class Method Summary collapse

Class Method Details

.html(by_gemname = false) ⇒ Object



13
14
15
16
17
18
19
# File 'lib/love/share.rb', line 13

def html(by_gemname = false)
  if by_gemname
    render_by 'gem', 'html', Love.gems
  else
    render_by 'author', 'html', Love.authors
  end
end

.md(by_gemname = false) ⇒ Object



5
6
7
8
9
10
11
# File 'lib/love/share.rb', line 5

def md(by_gemname = false)
  if by_gemname
    render_by 'gem', 'md', Love.gems
  else
    render_by 'author', 'md', Love.authors
  end
end