-
-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathclimate_control.gemspec
More file actions
26 lines (22 loc) · 950 Bytes
/
climate_control.gemspec
File metadata and controls
26 lines (22 loc) · 950 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
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "climate_control/version"
Gem::Specification.new do |gem|
gem.name = "climate_control"
gem.version = ClimateControl::VERSION
gem.authors = ["Joshua Clayton", "Dorian Marié"]
gem.email = ["joshua.clayton@gmail.com", "dorian@dorianmarie.fr"]
gem.description = "Modify your ENV"
gem.summary = "Modify your ENV easily with ClimateControl"
gem.homepage = "https://github.com/thoughtbot/climate_control"
gem.license = "MIT"
gem.metadata["changelog_uri"] = "#{gem.homepage}/blob/main/CHANGELOG.md"
gem.metadata["rubygems_mfa_required"] = "true"
gem.files = `git ls-files`.split($/)
gem.require_paths = ["lib"]
gem.required_ruby_version = ">= 2.7.0"
gem.add_development_dependency "rake"
gem.add_development_dependency "rspec"
gem.add_development_dependency "simplecov"
gem.add_development_dependency "standard"
end