Method: GCM::Connection#client
- Defined in:
- lib/mercurius/gcm/connection.rb
#client ⇒ Object
15 16 17 18 19 20 21 |
# File 'lib/mercurius/gcm/connection.rb', line 15 def client @_client ||= Faraday.new(host) do |http| http.headers['Authorization'] = "key=#{key}" http.request :json http.adapter :net_http end end |