video_channel/video_channel.gemspec

22 lines
782 B
Ruby

$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "video_channel/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "video_channel"
s.version = VideoChannel::VERSION
s.authors = ["Saurabh Bhatia"]
s.email = ["saurabh@rulingcom.com"]
s.homepage = "http://www.rulingcom.com"
s.summary = "This module allows the University to Embed their Youtube Channel in a Page"
s.description = "This module allows the University to Embed their Youtube Channel in a Page"
s.files = Dir["{app,config,db,lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.rdoc"]
s.test_files = Dir["test/**/*"]
s.add_dependency "rails", "~> 3.2.16"
s.add_dependency "jquery-rails"
end