Class: Kaminari::Generators::Theme
- Inherits:
-
Object
- Object
- Kaminari::Generators::Theme
- Defined in:
- lib/generators/kaminari/views_generator.rb
Instance Attribute Summary collapse
-
#name ⇒ Object
Returns the value of attribute name.
Instance Method Summary collapse
-
#description ⇒ Object
:nodoc:.
-
#initialize(name, templates) ⇒ Theme
constructor
:nodoc:.
-
#templates_for(template_engine) ⇒ Object
:nodoc:.
Constructor Details
Instance Attribute Details
#name ⇒ Object
Returns the value of attribute name.
83 84 85 |
# File 'lib/generators/kaminari/views_generator.rb', line 83 def name @name end |
Instance Method Details
#description ⇒ Object
:nodoc:
88 89 90 91 92 |
# File 'lib/generators/kaminari/views_generator.rb', line 88 def description #:nodoc: file = @templates.detect {|t| t.name == "#{name}/DESCRIPTION"} return "#{' ' * 12}#{name}" unless file open("#{SHOW_API}/#{file.sha}").read.chomp.gsub /^/, ' ' * 12 end |
#templates_for(template_engine) ⇒ Object
:nodoc:
94 95 96 |
# File 'lib/generators/kaminari/views_generator.rb', line 94 def templates_for(template_engine) #:nodoc: @templates.select {|t| t.engine == template_engine} end |