From d8819feb1e35ba6e6e020c4574f6715c2c43f7fa Mon Sep 17 00:00:00 2001 From: Zakir Date: Wed, 10 Jul 2024 17:08:59 +0300 Subject: [PATCH] Add missing dependency to gemspec (#18) --- 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