-
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathfog-backblaze.gemspec
More file actions
21 lines (16 loc) · 764 Bytes
/
fog-backblaze.gemspec
File metadata and controls
21 lines (16 loc) · 764 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# coding: utf-8
require_relative 'lib/fog/backblaze/version'
Gem::Specification.new do |spec|
spec.name = "fog-backblaze"
spec.version = Fog::Backblaze::VERSION
spec.authors = ["Pavel Evstigneev"]
spec.email = ["pavel.evst@gmail.com"]
spec.summary = "Module for the 'fog' gem to support Blackblade B2 stogate."
spec.description = "Blackblade B2 stogate client for 'fog' gem, can be used for working with files and buckets. E.g. carrierwave uploads"
spec.homepage = "https://github.com/fog/fog-backblaze"
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.require_paths = ["lib"]
spec.add_dependency "fog-core", ">= 1.40", "<3"
end