-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgoogle_cloud_env_secrets.gemspec
More file actions
32 lines (26 loc) · 1.21 KB
/
Copy pathgoogle_cloud_env_secrets.gemspec
File metadata and controls
32 lines (26 loc) · 1.21 KB
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
31
32
$:.push File.expand_path("lib", __dir__)
# Maintain your gem's version:
require "google_cloud_env_secrets/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |spec|
spec.name = "google_cloud_env_secrets"
spec.version = GoogleCloudEnvSecrets::VERSION
spec.authors = ["Matthias Kadenbach"]
spec.homepage = "https://github.com/mattes/rails_google_cloud_env_secrets"
spec.summary = "Load Google Cloud Secrets into ENV"
spec.license = "MIT"
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
# to allow pushing to a single host or delete this section to allow pushing to any host.
if spec.respond_to?(:metadata)
spec.metadata["allowed_push_host"] = "https://rubygems.org"
else
raise "RubyGems 2.0 or newer is required to protect against " \
"public gem pushes."
end
spec.files = Dir["{app,config,db,lib}/**/*", "LICENSE", "Rakefile", "README.md"]
spec.add_dependency "rails", "~> 6"
spec.add_dependency "google-cloud-secret_manager", "~> 1.0.0"
spec.add_dependency "google-cloud-env", "~> 1.3.3"
spec.add_dependency "concurrent-ruby", "~> 1.1.7"
spec.add_development_dependency "sqlite3"
end