Class: Jekyll::GitHubMetadata::MetadataDrop

Inherits:
Drops::Drop
  • Object
show all
Extended by:
Forwardable
Defined in:
lib/jekyll-github-metadata/metadata_drop.rb

Instance Method Summary collapse

Instance Method Details

#build_revisionObject



82
83
84
85
86
# File 'lib/jekyll-github-metadata/metadata_drop.rb', line 82

def build_revision
  @build_revision ||= begin
    ENV["JEKYLL_BUILD_REVISION"] || `git rev-parse HEAD`.strip
  end
end

#content_methodsObject



27
28
29
# File 'lib/jekyll-github-metadata/metadata_drop.rb', line 27

def content_methods
  super - %w(to_s to_str)
end

#key?(key) ⇒ Boolean

Returns:

  • (Boolean)


15
16
17
18
19
# File 'lib/jekyll-github-metadata/metadata_drop.rb', line 15

def key?(key)
  return false if key.nil?
  return true if self.class.mutable? && @mutations.key?(key)
  respond_to?(key) || fallback_data.key?(key)
end

#keysObject



31
32
33
# File 'lib/jekyll-github-metadata/metadata_drop.rb', line 31

def keys
  super.sort
end

#to_sObject Also known as: to_str



21
22
23
24
# File 'lib/jekyll-github-metadata/metadata_drop.rb', line 21

def to_s
  require "json"
  JSON.pretty_generate to_h
end

#versionsObject



73
74
75
76
77
78
79
80
# File 'lib/jekyll-github-metadata/metadata_drop.rb', line 73

def versions
  @versions ||= begin
    require "github-pages"
    GitHubPages.versions
  rescue LoadError
    {}
  end
end