From 131adb87b9fdcce39ef70ce452c5905a711a4273 Mon Sep 17 00:00:00 2001 From: Zakir Dzhamaliddinov Date: Wed, 10 Jul 2024 16:36:08 +0300 Subject: [PATCH] Add missing dependency to gemspec --- lib/uber_task/task_context.rb | 2 ++ uber_task.gemspec | 2 ++ 2 files changed, 4 insertions(+) diff --git a/lib/uber_task/task_context.rb b/lib/uber_task/task_context.rb index fc28824..89d0544 100644 --- a/lib/uber_task/task_context.rb +++ b/lib/uber_task/task_context.rb @@ -1,5 +1,7 @@ # frozen_string_literal: true +require 'colorize' + module UberTask class TaskContext attr_reader :body, diff --git a/uber_task.gemspec b/uber_task.gemspec index 1e3e547..7f49879 100644 --- a/uber_task.gemspec +++ b/uber_task.gemspec @@ -32,4 +32,6 @@ Gem::Specification.new do |s| s.require_paths = ['lib'] s.files = Dir['lib/**/*', 'LICENSE', 'README.md'] + + s.add_dependency('colorize', '~> 1.1.0') end