generated from mattbrictson/gem
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
76 additions
and
345 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
Release notes for this project are kept here: https://github.com/mattbrictson/gem/releases | ||
Release notes for this project are kept here: https://github.com/b08x/flowbots/releases |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,16 @@ | ||
source "https://rubygems.org" | ||
gemspec | ||
|
||
|
||
gem "minitest", "~> 5.11" | ||
gem "minitest-rg", "~> 5.3" | ||
gem "pry", "~> 0.14.2" | ||
gem "pry-doc", "~> 1.5" | ||
gem "rake", "~> 13.0" | ||
gem "rb-readline", "~> 0.5.5" | ||
gem "rubocop", "1.64.1" | ||
gem "rubocop-minitest", "0.35.0" | ||
gem "rubocop-packaging", "0.5.2" | ||
gem "rubocop-performance", "1.21.1" | ||
gem "rubocop-rake", "0.6.0" | ||
gem "ruby-lsp", "~> 0.17.4" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,13 @@ | ||
#!/usr/bin/env ruby | ||
|
||
require "bundler/setup" | ||
require "example" | ||
require "flowbots" | ||
|
||
# You can add fixtures and/or initialization code here to make experimenting | ||
# with your gem easier. You can also use a different console, if you like. | ||
|
||
# (If you use this, don't forget to add pry to your Gemfile!) | ||
# require "pry" | ||
# Pry.start | ||
|
||
require "irb" | ||
IRB.start(__FILE__) | ||
require "pry" | ||
Pry.start | ||
|
||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/usr/bin/env ruby | ||
# frozen_string_literal: true | ||
|
||
lib_dir = File.expand_path(File.join(__dir__, '..', 'lib')) | ||
$LOAD_PATH.unshift lib_dir unless $LOAD_PATH.include?(lib_dir) | ||
|
||
require "flowbots" | ||
Flowbots::CLI.start(ARGV) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
require_relative "lib/flowbots/version" | ||
|
||
Gem::Specification.new do |spec| | ||
spec.name = "flowbots" | ||
spec.version = Flowbots::VERSION | ||
spec.authors = ["Robert Pannick"] | ||
spec.email = ["[email protected]"] | ||
|
||
spec.summary = "It's basically a workflow orchestration system. \"Workflow orchestration system\" - sounds impressive, right? In reality, it's like trying to herd cats, except the cats are AI agents with a penchant for existential dread and the occasional haiku. We use Jongleur and NanoBot libraries." | ||
spec.homepage = "https://github.com/b08x/flowbots" | ||
spec.license = "MIT" | ||
spec.required_ruby_version = ">= 3.1" | ||
|
||
spec.metadata = { | ||
"bug_tracker_uri" => "https://github.com/b08x/flowbots/issues", | ||
"changelog_uri" => "https://github.com/b08x/flowbots/releases", | ||
"source_code_uri" => "https://github.com/b08x/flowbots", | ||
"homepage_uri" => spec.homepage, | ||
"rubygems_mfa_required" => "true" | ||
} | ||
|
||
# Specify which files should be added to the gem when it is released. | ||
spec.files = Dir.glob(%w[LICENSE.txt README.md {exe,lib}/**/*]).reject { |f| File.directory?(f) } | ||
spec.bindir = "exe" | ||
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } | ||
spec.require_paths = ["lib"] | ||
|
||
# Runtime dependencies | ||
spec.add_dependency "thor", "~> 1.2" | ||
end |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
module Flowbots | ||
autoload :CLI, "flowbots/cli" | ||
autoload :VERSION, "flowbots/version" | ||
autoload :ThorExt, "flowbots/thor_ext" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
require "thor" | ||
|
||
module Example | ||
module Flowbots | ||
class CLI < Thor | ||
extend ThorExt::Start | ||
|
||
map %w[-v --version] => "version" | ||
|
||
desc "version", "Display example version", hide: true | ||
desc "version", "Display flowbots version", hide: true | ||
def version | ||
say "example/#{VERSION} #{RUBY_DESCRIPTION}" | ||
say "flowbots/#{VERSION} #{RUBY_DESCRIPTION}" | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
module Example | ||
module Flowbots | ||
VERSION = "0.1.0".freeze | ||
end |
Oops, something went wrong.