forked from fschwahn/videojs_rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
videojs_rails.gemspec
29 lines (25 loc) · 1.07 KB
/
videojs_rails.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "videojs_rails/version"
Gem::Specification.new do |s|
s.name = "videojs_rails"
s.version = VideojsRails::VERSION
s.authors = ["Sean Behan"]
s.email = ["[email protected]"]
s.homepage = ""
s.summary = %q{VideoJS plugin for Rails 3.1 Asset Pipeline}
s.description = %q{HTML5 VideoJS plugin}
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
# to allow pushing to a single host or delete this section to allow pushing to any host.
if s.respond_to?(:metadata)
s.metadata["allowed_push_host"] = "https://rubygems.pkg.github.com/denkungsart"
else
raise "RubyGems 2.0 or newer is required to protect against " \
"public gem pushes."
end
s.rubyforge_project = "videojs_rails"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
end