Module: ParseAPI
- Defined in:
- lib/parseapi.rb,
lib/parseapi/client.rb,
lib/parseapi/version.rb
Overview
Official parseAPI client for Ruby.
parse = ParseAPI.new('your-api-key')
parse.country('US')
Defined Under Namespace
Constant Summary collapse
- VERSION =
'0.1.0'.freeze
Class Method Summary collapse
-
.new(api_key = nil, **options) ⇒ Object
Sugar so
ParseAPI.newbuilds a Client.
Class Method Details
.new(api_key = nil, **options) ⇒ Object
Sugar so ParseAPI.new builds a Client.
10 11 12 |
# File 'lib/parseapi.rb', line 10 def self.new(api_key = nil, **) Client.new(api_key, **) end |