brainiac-basecamp 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,20 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Lightweight metadata — loaded by `brainiac help` without the full plugin runtime.
4
+
5
+ require_relative "version"
6
+
7
+ module Brainiac
8
+ module Plugins
9
+ module Basecamp
10
+ def self.configured?
11
+ config_file = File.join(ENV.fetch("BRAINIAC_DIR", File.join(Dir.home, ".brainiac")), "basecamp.json")
12
+ File.exist?(config_file)
13
+ end
14
+
15
+ def self.help_text
16
+ " brainiac basecamp <command> Manage Basecamp epic orchestration"
17
+ end
18
+ end
19
+ end
20
+ end