Class: Kaminari::Generators::Theme

Inherits:
Object
  • Object
show all
Defined in:
lib/generators/kaminari/views_generator.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, templates) ⇒ Theme

:nodoc:



88
89
90
# File 'lib/generators/kaminari/views_generator.rb', line 88

def initialize(name, templates) #:nodoc:
  @name, @templates = name, templates.map {|fn, sha| Template.new fn.sub(/^#{name}\//, ''), sha}
end

Instance Attribute Details

#nameObject

Returns the value of attribute name.



87
88
89
# File 'lib/generators/kaminari/views_generator.rb', line 87

def name
  @name
end

Instance Method Details

#descriptionObject

:nodoc:



92
93
94
95
96
# File 'lib/generators/kaminari/views_generator.rb', line 92

def description #:nodoc:
  file = @templates.detect(&:description?)
  return "#{' ' * 12}#{name}" unless file
  open("#{SHOW_API}/#{file.sha}").read.chomp.gsub /^/, ' ' * 12
end

#templates_for(template_engine) ⇒ Object

:nodoc:



98
99
100
# File 'lib/generators/kaminari/views_generator.rb', line 98

def templates_for(template_engine) #:nodoc:
  @templates.select {|t| !t.description?}.select {|t| !t.view? || (t.engine == template_engine)}
end