forked from 12finger/cloudinary_gem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cloudinary.gemspec
37 lines (30 loc) · 1.39 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
# -*- 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") - `git ls-files samples`.split("\n")) + Dir.glob("vendor/assets/javascripts/*/*") + Dir.glob("vendor/assets/html/*")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_dependency "aws_cf_signer"
s.add_development_dependency "rspec", '>=2.11'
s.add_development_dependency "rspec-rails"
if RUBY_VERSION > "1.9"
s.add_dependency "rest-client"
s.add_development_dependency "actionpack"
s.add_development_dependency "simplecov"
else
s.add_dependency "i18n", "<0.7.0"
s.add_dependency "rest-client", "<=1.6.8"
s.add_development_dependency "actionpack", "~>3.2.0"
end
end