-
Notifications
You must be signed in to change notification settings - Fork 0
/
much-config.gemspec
30 lines (23 loc) · 1.07 KB
/
much-config.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
# -*- encoding: utf-8 -*-
# frozen_string_literal: true
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "much-config/version"
Gem::Specification.new do |gem|
gem.name = "much-config"
gem.version = MuchConfig::VERSION
gem.authors = ["Kelly Redding", "Collin Redding"]
gem.email = ["[email protected]", "[email protected]"]
gem.summary = "Configuration for Ruby objects."
gem.description = "Configuration for Ruby objects."
gem.homepage = "https://github.com/redding/much-config"
gem.license = "MIT"
gem.files = `git ls-files | grep "^[^.]"`.split($INPUT_RECORD_SEPARATOR)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.required_ruby_version = "~> 2.5"
gem.add_development_dependency("much-style-guide", ["~> 0.6.4"])
gem.add_development_dependency("assert", ["~> 2.19.6"])
gem.add_dependency("much-mixin", ["~> 0.2.4"])
end