-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathazure-blob.gemspec
More file actions
28 lines (22 loc) · 963 Bytes
/
Copy pathazure-blob.gemspec
File metadata and controls
28 lines (22 loc) · 963 Bytes
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
# frozen_string_literal: true
require_relative "lib/azure_blob/version"
Gem::Specification.new do |spec|
spec.name = "azure-blob"
spec.version = AzureBlob::VERSION
spec.authors = [ "Joé Dupuis" ]
spec.email = [ "joe@dupuis.io" ]
spec.summary = "Azure Blob client and Active Storage adapter"
spec.homepage = "https://github.com/testdouble/azure-blob"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.1"
spec.metadata["rubygems_mfa_required"] = "true"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["changelog_uri"] = "https://github.com/testdouble/azure-blob/blob/main/CHANGELOG.md"
spec.add_dependency "cgi"
spec.add_dependency "rexml"
spec.files = Dir['lib/**/*.rb', 'Rakefile', 'README.md', 'CHANGELOG.md', 'LICENSE.txt']
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = [ "lib" ]
end