This repository has been archived by the owner on May 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mosaik.gemspec
35 lines (29 loc) · 1.54 KB
/
mosaik.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
33
34
35
# frozen_string_literal: true
require_relative "lib/mosaik/version"
Gem::Specification.new do |spec|
spec.name = "mosaik"
spec.version = MOSAIK::VERSION
spec.authors = ["Florian Dejonckheere"]
spec.email = ["[email protected]"]
spec.summary = "Modular Optimization to Service-oriented Architecture Identification Kit"
spec.description = "Toolkit for converting monolithic applications into modular, service-oriented architectures."
spec.homepage = "https://github.com/floriandejonckheere/mosaik"
spec.license = "MIT"
spec.required_ruby_version = Gem::Requirement.new("~> 3.3")
spec.metadata["source_code_uri"] = "https://github.com/floriandejonckheere/mosaik.git"
spec.metadata["rubygems_mfa_required"] = "true"
spec.files = Dir["README.md", "LICENSE.md", "CHANGELOG.md", "Gemfile", "bin/mosaik", "lib/**/*.rb", "config/*.rb"]
spec.bindir = "bin"
spec.executables = ["mosaik"]
spec.require_paths = ["lib"]
spec.add_runtime_dependency "activesupport", "~> 7.1"
spec.add_runtime_dependency "colorize", "~> 1.1"
spec.add_runtime_dependency "csv", "~> 3.3"
spec.add_runtime_dependency "git", "~> 1.19.1"
spec.add_runtime_dependency "parser", ">= 3.3.0.5", "< 3.3.2.0"
spec.add_runtime_dependency "rubocop", "~> 1.63.1"
spec.add_runtime_dependency "rubocop-ast", "~> 1.31.2"
spec.add_runtime_dependency "ruby-progressbar", "~> 1.13.0"
spec.add_runtime_dependency "sorbet-runtime", "~> 0.5.11346"
spec.add_runtime_dependency "zeitwerk", "~> 2.6"
end