-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathhati-command.gemspec
More file actions
35 lines (26 loc) · 1.58 KB
/
hati-command.gemspec
File metadata and controls
35 lines (26 loc) · 1.58 KB
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
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'hati_command/version'
Gem::Specification.new do |spec|
spec.name = 'hati-command'
spec.version = HatiCommand::VERSION
spec.authors = ['Mariya Giy', 'Yuri Gi']
spec.email = %w[yurigi.pro@gmail.com giy.mariya@gmail.com]
spec.license = 'MIT'
spec.summary = 'A Ruby gem for creating modular, agent-ready service objects and command-pattern interactors, following Railway-oriented design principles with structured, explicit result handling.'
spec.description = 'hati-command offers a clear, minimal abstraction for implementing composable service objects and command-pattern interactors. By enforcing explicit Success and Failure result pathways, it aligns well with autonomous system pipelines, decision-chain architectures, and AI-driven orchestration flows.'
spec.homepage = "https://github.com/hackico-ai/#{spec.name}"
spec.required_ruby_version = '>= 3.0.0'
spec.files = Dir['CHANGELOG.md', 'LICENSE', 'README.md', 'hati-command.gemspec', 'lib/**/*']
spec.bindir = 'bin'
spec.executables = []
spec.require_paths = ['lib']
spec.metadata['repo_homepage'] = spec.homepage
spec.metadata['allowed_push_host'] = 'https://rubygems.org'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['changelog_uri'] = "#{spec.homepage}/blob/main/CHANGELOG.md"
spec.metadata['source_code_uri'] = spec.homepage
spec.metadata['bug_tracker_uri'] = "#{spec.homepage}/issues"
spec.metadata['rubygems_mfa_required'] = 'true'
end