Class: Jekyll::Drops::ThemeDrop
- Inherits:
-
Drop
- Object
- Liquid::Drop
- Drop
- Jekyll::Drops::ThemeDrop
show all
- Defined in:
- lib/jekyll/drops/theme_drop.rb
Constant Summary
Constants inherited
from Drop
Drop::NON_CONTENT_METHODS
Instance Method Summary
collapse
Methods inherited from Drop
#[], #[]=, #content_methods, data_delegator, data_delegators, delegate_method, delegate_method_as, delegate_methods, #each, #each_key, #fetch, getter_method_names, #hash_for_json, #initialize, #inspect, #key?, #keys, #merge, #merge!, mutable, mutable?, private_delegate_methods, #to_h, #to_json
Instance Method Details
#authors ⇒ Object
12
13
14
|
# File 'lib/jekyll/drops/theme_drop.rb', line 12
def authors
@authors ||= gemspec.authors.join(", ")
end
|
#description ⇒ Object
20
21
22
|
# File 'lib/jekyll/drops/theme_drop.rb', line 20
def description
@description ||= gemspec.description || gemspec.summary
end
|
24
25
26
|
# File 'lib/jekyll/drops/theme_drop.rb', line 24
def metadata
@metadata ||= gemspec.metadata
end
|
#root ⇒ Object
8
9
10
|
# File 'lib/jekyll/drops/theme_drop.rb', line 8
def root
@root ||= ENV["JEKYLL_ENV"] == "development" ? @obj.root : ""
end
|
#version ⇒ Object
16
17
18
|
# File 'lib/jekyll/drops/theme_drop.rb', line 16
def version
@version ||= gemspec.version.to_s
end
|