module Gahh::ApiScopeParser

Public Class Methods

convert_api_scope_to_uri(api_scope) click to toggle source
# File lib/gahh/api_scope_parser.rb, line 9
def self.convert_api_scope_to_uri(api_scope)
  return "https://www.googleapis.com/auth/#{api_scope[:api]}.readonly" if api_scope[:scope] == "read"
end
testing_method(word) click to toggle source
# File lib/gahh/api_scope_parser.rb, line 5
def self.testing_method(word)
  puts "testing with #{word}"
end