Application.rb:
require File.expand_path('../boot', __FILE__)
require 'rails/all'
require 'parse-ruby-client'
Parse.init :application_id => "<APP_ID>",
:api_key => "<API_KEY>"
# Require the gems listed in Gemfile, including any gems
# you've limited to :test, :development, or :production.
Bundler.require(*Rails.groups)
module GarmentsROR
class Application < Rails::Application
end
end
My gem parse-ruby-client doesn't seem to allow my rails app to connect to my parse.com account. I have a feeling I've put Parse.init in the wrong place.
The instructions weren't very clear. It assumes I should know where they go.
Would appreciate some help