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



86
87
88
89
90
# File 'lib/jekyll-github-metadata/metadata_drop.rb', line 86

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

#content_methodsObject



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

def content_methods
  super - %w(to_s to_str)
end

#key?(key) ⇒ Boolean

Returns:

  • (Boolean)


15
16
17
18
19
20
# 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



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

def keys
  super.sort
end

#to_sObject Also known as: to_str



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

def to_s
  require "json"
  JSON.pretty_generate to_h
end

#versionsObject



75
76
77
78
79
80
81
82
83
84
# File 'lib/jekyll-github-metadata/metadata_drop.rb', line 75

def versions
  return @versions if defined?(@versions)

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