-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtalkable-style.gemspec
More file actions
38 lines (31 loc) · 1.48 KB
/
talkable-style.gemspec
File metadata and controls
38 lines (31 loc) · 1.48 KB
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
33
34
35
36
37
38
# frozen_string_literal: true
require_relative "lib/talkable/style/version"
Gem::Specification.new do |spec|
spec.name = "talkable-style"
spec.version = Talkable::Style::VERSION
spec.authors = ["Talkable"]
spec.email = ["dev@talkable.com"]
spec.summary = "Talkable style guides and shared style configs."
spec.homepage = "https://github.com/talkable/talkable-style"
spec.required_ruby_version = Gem::Requirement.new(">= 4.0.0")
spec.metadata["allowed_push_host"] = "https://rubygems.org"
spec.metadata["rubygems_mfa_required"] = "true"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
spec.files = Dir.chdir(File.expand_path(__dir__)) do
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) }
end
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_dependency "rubocop", "~> 1.85.0"
spec.add_dependency "rubocop-capybara", "~> 2.22.0"
spec.add_dependency "rubocop-discourse", "~> 3.14.0"
spec.add_dependency "rubocop-factory_bot", "~> 2.28.0"
spec.add_dependency "rubocop-graphql", "~> 1.6.0"
spec.add_dependency "rubocop-performance", "~> 1.26.1"
spec.add_dependency "rubocop-rails", "~> 2.34.3"
spec.add_dependency "rubocop-rake", "~> 0.7.1"
spec.add_dependency "rubocop-rspec", "~> 3.9.0"
spec.add_dependency "rubocop-rspec_rails", "~> 2.32.0"
end