forked from cloudinary/cloudinary_gem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cloudinary.gemspec
26 lines (21 loc) · 1.07 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
# -*- 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.email = ["nadav.soferman@cloudinary.com","itai.lahan@cloudinary.com","tal.levami@cloudinary.com"]
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 "rest-client"
s.add_dependency "aws_cf_signer"
s.add_development_dependency "rspec"
end