-
Notifications
You must be signed in to change notification settings - Fork 0
/
much-style-guide.gemspec
30 lines (23 loc) · 1.06 KB
/
much-style-guide.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-style-guide/version"
Gem::Specification.new do |gem|
gem.name = "much-style-guide"
gem.version = MuchStyleGuide::VERSION
gem.authors = ["Kelly Redding", "Collin Redding"]
gem.email = ["[email protected]", "[email protected]"]
gem.summary = "A style-guide with Rubocop configs."
gem.description = "A style-guide with Rubocop configs."
# gem.homepage = "TODO: homepage"
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("assert", ["~> 2.19.6"])
gem.add_dependency("rubocop", ["~> 1.22.0"])
gem.add_dependency("rubocop-performance", ["~> 1.11.2"])
end