-
Notifications
You must be signed in to change notification settings - Fork 0
/
environment_helpers.gemspec
39 lines (33 loc) · 1.4 KB
/
environment_helpers.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
32
33
34
35
36
37
38
39
require_relative "lib/environment_helpers/version"
Gem::Specification.new do |spec|
spec.name = "environment_helpers"
spec.version = EnvironmentHelpers::VERSION
spec.authors = ["Eric Mueller"]
spec.email = ["[email protected]"]
spec.summary = "A set of convenience methods for accessing environment data"
spec.description = <<~DESC
Convenience helpers for more simply accessing data passed to applications through the
environment that may have types and/or defaults
DESC
spec.homepage = "https://github.com/nevinera/environment_helpers"
spec.license = "MIT"
spec.required_ruby_version = Gem::Requirement.new(">= 2.7.0")
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
spec.files = Dir.chdir(File.expand_path(__dir__)) do
`git ls-files -z`
.split("\x0")
.reject { |f| f.start_with?("spec") }
end
spec.bindir = "bin"
spec.executables = []
spec.require_paths = ["lib"]
spec.add_development_dependency "rspec", "~> 3.10"
spec.add_development_dependency "simplecov", "~> 0.22.0"
spec.add_development_dependency "rspec-cover_it", "~> 0.1.0"
spec.add_development_dependency "pry", "~> 0.14"
spec.add_development_dependency "standard", "~> 1.28"
spec.add_development_dependency "rubocop", "~> 1.50"
spec.add_development_dependency "quiet_quality", "~> 1.3.0"
spec.add_development_dependency "mdl", "~> 0.12"
end