-
Notifications
You must be signed in to change notification settings - Fork 15
/
zencoder.gemspec
30 lines (28 loc) · 1.1 KB
/
zencoder.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
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'zencoder/version'
Gem::Specification.new do |s|
s.name = "zencoder"
s.version = Zencoder::GEM_VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Nathan Sutton", "Brandon Arbini"]
s.email = "[email protected]"
s.homepage = "http://github.com/zencoder/zencoder-rb"
s.summary = "Zencoder <http://zencoder.com> integration library."
s.description = "Zencoder <http://zencoder.com> integration library."
s.rubyforge_project = "zencoder"
s.add_dependency "multi_json"
if RUBY_PLATFORM =~ /java/
s.platform = "java"
s.add_development_dependency "jruby-openssl"
else
s.add_development_dependency "typhoeus"
s.add_development_dependency "byebug"
end
s.add_development_dependency "rspec", "~> 3.8.0"
s.add_development_dependency "webmock", "~> 3.4.2"
s.add_development_dependency "rake"
s.add_development_dependency "test-unit"
s.files = Dir.glob("bin/**/*") + Dir.glob("lib/**/*") + %w(LICENSE README.markdown Rakefile)
s.require_path = "lib"
end