-
Notifications
You must be signed in to change notification settings - Fork 1
/
rf-stylez.gemspec
32 lines (27 loc) · 1.26 KB
/
rf-stylez.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
31
32
# frozen_string_literal: true
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "rf/stylez/version"
Gem::Specification.new do |spec|
spec.name = "rf-stylez"
spec.version = Rf::Stylez::VERSION
spec.authors = ["Emanuel Evans"]
spec.email = ["[email protected]"]
spec.license = "MIT"
spec.summary = %q{Styles for Rainforest code}
spec.description = "Configurations for Rubocop and other style enforcers/linters"
spec.homepage = "https://github.com/rainforestapp/rf-stylez"
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.bindir = "bin"
spec.executables = ["rf-stylez"]
spec.require_paths = ["lib"]
spec.add_runtime_dependency "get_env", "~> 0.2.1"
spec.add_runtime_dependency "pronto", "~> 0.11.2"
spec.add_runtime_dependency "pronto-rubocop", "~> 0.11.5"
spec.add_runtime_dependency "reek", "~> 6.2"
spec.add_runtime_dependency "rubocop", "1.65.1"
spec.add_runtime_dependency "rubocop-performance", "1.21.1"
spec.add_runtime_dependency "rubocop-rails", "2.25.1"
spec.add_runtime_dependency "rubocop-rspec", "3.0.4"
spec.add_runtime_dependency "unparser", "~> 0.6"
end