-
Notifications
You must be signed in to change notification settings - Fork 27
/
filestack-ruby.gemspec
35 lines (30 loc) · 1.42 KB
/
filestack-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
34
35
# coding: utf-8
lib = File.expand_path("../lib", __FILE__)
puts lib
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "filestack/ruby/version"
Gem::Specification.new do |spec|
spec.name = "filestack"
spec.version = Filestack::Ruby::VERSION
spec.authors = ["Filestack"]
spec.email = ["dev@filestack.com"]
spec.required_ruby_version = '>= 3.0.0'
spec.summary = %q{Official Ruby SDK for the Filestack API}
spec.description = %q{This is the official Ruby SDK for Filestack - API and content management system that makes it easy to add powerful file uploading and transformation capabilities to any web or mobile application.}
spec.homepage = "https://github.com/filestack/filestack-ruby"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features|test-files)/})
end
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_dependency "typhoeus", "~> 1.1"
spec.add_dependency "parallel", "~> 1.11", ">= 1.11.2"
spec.add_dependency "mini_mime", "~> 1.0"
spec.add_dependency "progress_bar"
spec.add_development_dependency "bundler", "~> 1.7"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "rspec", "~> 3.0"
spec.add_development_dependency "simplecov", "~> 0.14"
end