# 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)['content']) end end
# 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)['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)['tree'].find_all {|i| i['type'] == 'blob' } blobs.map do |blob| [blob['path'], blob['sha']] end end end
Generated with the Darkfish Rdoc Generator 2.