-
Notifications
You must be signed in to change notification settings - Fork 0
/
zencodable.gemspec
30 lines (24 loc) · 1.16 KB
/
zencodable.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
30
$:.push File.expand_path("../lib", __FILE__)
require "zencodable/version"
Gem::Specification.new do |s|
s.name = "zencodable"
s.version = Zencodable::VERSION
s.authors = ["Sam Beam"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/sbeam/zencodable"
s.summary = "mindful multiformat video encoding for AR models with Zencoder API"
s.description = "provides a `has_video_encodings` class method to your models that \
allows you to configure and set up any Zencoder settings you will need \
to create multiple output video container formats (mp4, ogg, wmv, etc) from a single \
uploaded source file. Uses the Zencoder API (zencoder.com) and (as of now) expects \
you to have an S3 bucket where we can ask zencoder to place the generated files."
s.files = Dir["{app,config,db,lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.md"]
s.test_files = Dir["test/**/*"]
s.add_dependency "rails"
s.add_dependency "aws-s3"
s.add_dependency "zencoder"
s.add_runtime_dependency "typhoeus"
s.add_development_dependency "sqlite3"
s.add_development_dependency "mocha"
s.add_development_dependency "factory_girl"
end