Files

Kaminari::Generators::GitHubApiHelper

Public Class Methods

get_content_for(path) click to toggle source
# File lib/generators/kaminari/views_generator.rb, line 110
def get_content_for(path)
  open('https://api.github.com/repos/amatsuda/kaminari_themes/contents/' + path) do |json|
    Base64.decode64(ActiveSupport::JSON.decode(json.read)['content'])
  end
end
get_files_in_master() click to toggle source
# File lib/generators/kaminari/views_generator.rb, line 97
def get_files_in_master
  master_tree_sha = open('https://api.github.com/repos/amatsuda/kaminari_themes/git/refs/heads/master') do |json|
    ActiveSupport::JSON.decode(json.read)['object']['sha']
  end
  open('https://api.github.com/repos/amatsuda/kaminari_themes/git/trees/' + master_tree_sha + '?recursive=1') do |json|
    blobs = ActiveSupport::JSON.decode(json.read)['tree'].find_all {|i| i['type'] == 'blob' }
    blobs.map do |blob|
      [blob['path'], blob['sha']]
    end
  end
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.