https://github.com/makevoid/ooyala_fb
Ooyala player Facebook integration packaged as a gem
https://github.com/makevoid/ooyala_fb
Last synced: 8 months ago
JSON representation
Ooyala player Facebook integration packaged as a gem
- Host: GitHub
- URL: https://github.com/makevoid/ooyala_fb
- Owner: makevoid
- Created: 2010-11-09T10:42:45.000Z (over 15 years ago)
- Default Branch: master
- Last Pushed: 2010-11-09T16:28:19.000Z (over 15 years ago)
- Last Synced: 2024-12-22T05:31:56.707Z (over 1 year ago)
- Language: Ruby
- Homepage: http://www.ooyala.com/support/docs/facebook_sharing_sdk
- Size: 97.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Ooyala Fb
### easilly enables meta tag creation on your ruby/rails/rack app for Ooyala Facebook sharing
this is the code found on: http://www.ooyala.com/support/docs/facebook_sharing_sdk
repackaged as a gem
You can find your Partner and Secret codes under the Developers area of the Backlot Account tab.
## Install:
gem install ooyala_fb
### In your Gemfile:
from rubygems:
gem "ooyala_fb"
or from the git repo:
gem "ooyala_fb", :git => "git://github.com/makevoid/ooyala_fb"
## Usage:
require "ooyala_fb"
fbs = OoyalaFb.new partner_code: 'partner_code', secret_code: 'secret_code'
puts fbs.header 'movie_embed'
### Changes:
- 0.2.2 - constructor takes an hash as argument, logger is now optional
- 0.2.1 - first release