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
|
lib = File.expand_path("../lib", __FILE__)
$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.files = `git ls-files`.split($/)
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.required_ruby_version = ">= 2.5.0"
gem.add_development_dependency "rspec"
gem.add_development_dependency "rake"
gem.add_development_dependency "simplecov"
gem.add_development_dependency "standard"
end
|