File: climate_control.gemspec

package info (click to toggle)
ruby-climate-control 1.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 140 kB
  • sloc: ruby: 374; makefile: 4
file content (25 lines) | stat: -rw-r--r-- 892 bytes parent folder | download
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