-
Notifications
You must be signed in to change notification settings - Fork 0
/
defog.gemspec
28 lines (24 loc) · 1.23 KB
/
defog.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/defog/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["ronen barzel"]
gem.email = ["[email protected]"]
gem.description = %q{Wrapper to fog gem, proxying access to cloud files as local files.}
gem.summary = %q{Wrapper to fog gem, proxying access to cloud files as local files. Access can be read-only (local cache), write-only (upload), or read-write (mirror)}
gem.homepage = "http://github.com/ronen/defog"
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "defog"
gem.require_paths = ["lib"]
gem.version = Defog::VERSION
gem.add_dependency 'fog', '~> 1.37'
gem.add_dependency 'mime-types' # need to add this explicitly for fog-storage
gem.add_dependency 'hash_keyword_args'
gem.add_dependency 'fastandand'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'rdoc'
gem.add_development_dependency 'rspec', "~> 3.0"
gem.add_development_dependency 'simplecov'
gem.add_development_dependency 'simplecov-gem-profile'
end