-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfix-command.gemspec
More file actions
27 lines (24 loc) · 1.08 KB
/
fix-command.gemspec
File metadata and controls
27 lines (24 loc) · 1.08 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
# frozen_string_literal: true
Gem::Specification.new do |spec|
spec.name = "fix-command"
spec.version = File.read("VERSION.semver").chomp
spec.author = "Cyril Kato"
spec.email = "contact@cyril.email"
spec.summary = "Fix extension gem for the fix command."
spec.description = "Provides the fix command to run specs."
spec.homepage = "https://github.com/fixrb/fix-command"
spec.required_ruby_version = Gem::Requirement.new(">= 2.7.0")
spec.license = "MIT"
spec.files = Dir["LICENSE.md", "README.md", "lib/**/*", "bin/fix"]
spec.executables = ["fix"]
spec.add_dependency "fix", "~> 0.18.0"
spec.add_development_dependency "bundler"
spec.add_development_dependency "rake"
spec.add_development_dependency "rubocop-md"
spec.add_development_dependency "rubocop-performance"
spec.add_development_dependency "rubocop-rake"
spec.add_development_dependency "rubocop-thread_safety"
spec.add_development_dependency "simplecov"
spec.add_development_dependency "spectus"
spec.add_development_dependency "yard"
end