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

kaltura_box

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

kaltura_box

  • 0.0.3
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

KalturaBox

Build Status Gem Version

Customized Ruby wrapper for Kaltura API on Active Record

THIS GEM IS NOT BEING MAINTAINED ANYMORE

Heavily influenced and continuation of Kaltura_Fu

Installation

Add this line to your application's Gemfile:

gem 'kaltura_box'

And then execute:

$ bundle

Or install it yourself as:

$ gem install kaltura_box

Usage

# For the Entry class
class Video < ActiveRecord::Base
  include KalturaBox::Entry
end

# Category class
class Category < ActiveRecord::Base
  include KalturaBox::Category
end

# Entry listing from Kaltura
Video.video_list

# Search
Video.video_list("search string here")

# Create videos based on Kaltura entries
Video.update_all_videos!

# Retrieve a kaltura entry
video = Video.new(entry_id: "0_7ivwzhbh")
video.get

# Tagging
video.set_tags = "noodles, food, yummy" # Create a new set of tags
video.add_tags = "rice, fruits" # Add more tags to the existing tag list
video.add_tag("bacon") # Add a single tag
video.get_tags # Retrieve tags

# Kaltura Metadata
video.set(name: "bla", description: "blablabla")
video.set_name = "bla"
video.set_description = "blablabla"

Contributing

  1. Fork it ( https://github.com/shinnyx/kaltura_box/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

FAQs

Package last updated on 10 Dec 2015

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