Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

motion-converser

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

motion-converser

  • 1.0
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

RubyMotion-Converser

Allows RubyMotion projects to easily embed the Converser SDK.

Requirements

  • RubyMotion 1.0 or greater (see http://www.rubymotion.com).

Setup

  1. Download the Converser SDK from http://converser.io/downloads/ and copy the ios-converser-sdk folder into vendor directory (or alternatively just create a symbolic link). Create the vendor directory if it does not exist. You should have something like this.
$ ls vendor/ios-converser-sdk
/ConverserResources/ libVGConversationKit_universal.a  include/
  1. Edit the Rakefile of your RubyMotion project and add the following require lines.
require 'rubygems'
require 'motion-converser'
  1. Still in the Rakefile, set up the app_api_key, server_url and framework variables in your application configuration block.
Motion::Project::App.setup do |app|
  # ...
  app.converser.framework = 'vendor/ios-converser-sdk'
  app.converser.app_api_key = 'APP API KEY'
  app.converser.server_url = 'SERVER URL'
end
  1. The ConverserEngine singleton is available from any class in your application. You access this singleton by calling the ConverserEngine.instance method.

  2. See included sample-app for further information.

FAQs

Package last updated on 26 Jun 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc