forked from cloudinary/cloudinary_gem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcloudinary.gemspec
63 lines (49 loc) · 2.03 KB
/
cloudinary.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "cloudinary/version"
Gem::Specification.new do |s|
s.name = "cloudinary"
s.version = Cloudinary::VERSION
s.authors = ["Nadav Soferman","Itai Lahan","Tal Lev-Ami"]
s.homepage = "http://cloudinary.com"
s.license = "MIT"
s.summary = %q{Client library for easily using the Cloudinary service}
s.description = %q{Client library for easily using the Cloudinary service}
s.rubyforge_project = "cloudinary"
s.files = `git ls-files`.split("\n").select { |f| !f.start_with?("test", "spec", "features", "samples") } + Dir.glob("vendor/assets/javascripts/*/*") + Dir.glob("vendor/assets/html/*")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_dependency "aws_cf_signer"
if RUBY_VERSION >= "2.0.0"
s.add_dependency "rest-client", ">= 2.0.0"
else
s.add_dependency "rest-client"
end
if RUBY_VERSION >= "3.0.0"
s.add_development_dependency "rexml"
end
s.add_development_dependency "actionpack"
s.add_development_dependency "nokogiri"
if RUBY_VERSION >= "2.2.0"
s.add_development_dependency "rake", ">= 13.0.1"
else
s.add_development_dependency "rake", "<= 12.2.1"
end
s.add_development_dependency "sqlite3"
s.add_development_dependency "rspec", '>=3.5'
s.add_development_dependency "rspec-retry"
if RUBY_VERSION >= "3.0.0"
s.add_development_dependency "rails", "~> 6.0.3"
elsif RUBY_VERSION >= "2.2.2"
s.add_development_dependency "rails", "~> 5.2"
end
s.add_development_dependency "railties", "<= 4.2.7" if RUBY_VERSION <= "1.9.3"
s.add_development_dependency "rspec-rails"
s.add_development_dependency "rubyzip"
if RUBY_VERSION <= "2.4.0"
s.add_development_dependency "simplecov", "<= 0.17.1" # support testing Ruby 1.9
else
s.add_development_dependency "simplecov", "> 0.18.0"
end
end