forked from qltysh/qlty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcodeclimate.gemspec
29 lines (25 loc) · 984 Bytes
/
codeclimate.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
$LOAD_PATH.unshift(File.join(__FILE__, "../lib"))
VERSION = File.read(File.expand_path("../VERSION", __FILE__))
Gem::Specification.new do |s|
s.name = "codeclimate"
s.version = VERSION
s.summary = "Code Climate CLI"
s.license = "AGPL"
s.authors = "Code Climate"
s.email = "hello@codeclimate.com"
s.homepage = "https://codeclimate.com"
s.description = "Code Climate command line tool"
s.files = Dir["lib/**/*.rb"] + Dir["bin/*"] + Dir.glob("config/**/*", File::FNM_DOTMATCH)
s.require_paths = ["lib"]
s.bindir = "bin"
s.executables = ["codeclimate"]
s.required_ruby_version = "~> 2.6"
s.add_dependency "activesupport", "~> 5.2.3"
s.add_dependency "tty-spinner", "~> 0.1.0"
s.add_dependency "highline", "~> 1.7", ">= 1.7.2"
s.add_dependency "posix-spawn", "~> 0.3", ">= 0.3.11"
s.add_dependency "pry", "~> 0.10.1"
s.add_dependency "rainbow", "~> 2.0", ">= 2.0.0"
s.add_dependency "redcarpet", "~> 3.2"
s.add_dependency "uuid", "~> 2.3"
end