-
Notifications
You must be signed in to change notification settings - Fork 0
/
bucket_store.gemspec
30 lines (24 loc) · 1.07 KB
/
bucket_store.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
# frozen_string_literal: true
require File.expand_path("lib/bucket_store/version", __dir__)
Gem::Specification.new do |s|
s.name = "bucket_store"
s.version = BucketStore::VERSION.dup
s.authors = ["GoCardless Engineering"]
s.email = ["[email protected]"]
s.summary = "A helper library to access cloud storage services"
s.description = <<-DESCRIPTION
A helper library to access cloud storage services such as Google Cloud Storage or S3.
DESCRIPTION
s.homepage = "https://github.com/gocardless/bucket-store"
s.license = "MIT"
s.files = Dir["lib/**/*", "README.md"]
s.required_ruby_version = ">= 2.7"
s.add_dependency "aws-sdk-s3", ">= 1.147"
s.add_dependency "google-cloud-storage", ">= 1.50"
s.add_development_dependency "gc_ruboconfig", "~> 4.4.2"
s.add_development_dependency "pry-byebug", "~> 3.10"
s.add_development_dependency "rspec", "~> 3.13"
s.add_development_dependency "rspec-github", "~> 2.4.0"
s.add_development_dependency "rubocop", ">= 1.63"
s.metadata["rubygems_mfa_required"] = "true"
end