Class: Jekyll::Theme
- Inherits:
-
Object
- Object
- Jekyll::Theme
- Extended by:
- Forwardable
- Defined in:
- lib/jekyll/theme.rb
Instance Attribute Summary collapse
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Instance Method Summary collapse
- #assets_path ⇒ Object
-
#basename ⇒ Object
The name of theme directory.
- #data_path ⇒ Object
- #includes_path ⇒ Object
-
#initialize(name) ⇒ Theme
constructor
A new instance of Theme.
- #layouts_path ⇒ Object
- #root ⇒ Object
- #runtime_dependencies ⇒ Object
- #sass_path ⇒ Object
Constructor Details
Instance Attribute Details
#name ⇒ Object (readonly)
Returns the value of attribute name.
6 7 8 |
# File 'lib/jekyll/theme.rb', line 6 def name @name end |
Instance Method Details
#assets_path ⇒ Object
42 43 44 |
# File 'lib/jekyll/theme.rb', line 42 def assets_path @assets_path ||= path_for "assets" end |
#basename ⇒ Object
The name of theme directory
26 27 28 |
# File 'lib/jekyll/theme.rb', line 26 def basename @basename ||= File.basename(root) end |
#data_path ⇒ Object
46 47 48 |
# File 'lib/jekyll/theme.rb', line 46 def data_path @data_path ||= path_for "_data" end |
#includes_path ⇒ Object
30 31 32 |
# File 'lib/jekyll/theme.rb', line 30 def includes_path @includes_path ||= path_for "_includes" end |
#layouts_path ⇒ Object
34 35 36 |
# File 'lib/jekyll/theme.rb', line 34 def layouts_path @layouts_path ||= path_for "_layouts" end |
#root ⇒ Object
16 17 18 19 20 21 22 23 |
# File 'lib/jekyll/theme.rb', line 16 def root # Must use File.realpath to resolve symlinks created by rbenv # Otherwise, Jekyll.sanitized path with prepend the unresolved root @root ||= File.realpath(gemspec.full_gem_path) rescue Errno::ENOENT, Errno::EACCES, Errno::ELOOP raise "Path #{gemspec.full_gem_path} does not exist, is not accessible or includes " \ "a symbolic link loop" end |
#runtime_dependencies ⇒ Object
50 51 52 |
# File 'lib/jekyll/theme.rb', line 50 def runtime_dependencies gemspec.runtime_dependencies end |
#sass_path ⇒ Object
38 39 40 |
# File 'lib/jekyll/theme.rb', line 38 def sass_path @sass_path ||= path_for "_sass" end |