-
Notifications
You must be signed in to change notification settings - Fork 22
/
bitmovin-ruby.gemspec
33 lines (29 loc) · 1.33 KB
/
bitmovin-ruby.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
31
32
33
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'bitmovin/version'
Gem::Specification.new do |spec|
spec.name = "bitmovin-ruby"
spec.version = Bitmovin::VERSION
spec.authors = ["Daniel Hoelbling-Inzko"]
spec.email = ["[email protected]"]
spec.summary = %q{Api Client for the Bitmovin API}
spec.description = %q{Provides full access to the Bitmovin API (http://https://bitmovin.com/encoding-documentation/bitmovin-api/)}
spec.homepage = "https://github.com/bitmovin/bitmovin-ruby"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features|examples)/})
end
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_dependency "faraday", "~> 2.2.0"
spec.add_dependency "faraday-httpclient"
spec.add_dependency "faraday-multipart"
spec.add_dependency "faraday-retry"
spec.add_dependency "httpclient", "~> 2.8.3", ">= 2.8.3"
spec.add_dependency "activesupport", ">= 7.0.8"
spec.add_development_dependency "bundler", "~> 2.2.11"
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "rspec", "~> 3.12"
end