-
Notifications
You must be signed in to change notification settings - Fork 15
/
global.gemspec
31 lines (24 loc) · 1.08 KB
/
global.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
31
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path('lib', __dir__)
require 'global/version'
Gem::Specification.new do |s|
s.name = 'global'
s.version = Global::VERSION
s.authors = ['Railsware LLC']
s.email = '[email protected]'
s.description = 'Simple way to load your configs from yaml/aws/gcp'
s.summary = 'Simple way to load your configs from yaml/aws/gcp'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
s.require_paths = ['lib']
s.homepage = 'https://github.com/railsware/global'
s.licenses = ['MIT']
s.add_development_dependency 'aws-sdk-ssm', '~> 1'
s.add_development_dependency 'google-cloud-secret_manager', '~> 0'
s.add_development_dependency 'rake', '~> 12.3.1'
s.add_development_dependency 'rspec', '>= 3.0'
s.add_development_dependency 'rubocop', '~> 0.81.0'
s.add_development_dependency 'simplecov', '~> 0.16.1'
s.add_runtime_dependency 'activesupport', '>= 2.0'
end