-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruby-crewai.gemspec
More file actions
33 lines (25 loc) · 1.29 KB
/
ruby-crewai.gemspec
File metadata and controls
33 lines (25 loc) · 1.29 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
# frozen_string_literal: true
require_relative "lib/crewai/version"
Gem::Specification.new do |spec|
spec.name = "ruby-crewai"
spec.version = CrewAI::VERSION
spec.authors = ["Muhammad Ibtisam Hussain"]
spec.email = ["78165374+MuhammadIbtisam@users.noreply.github.com"]
spec.summary = "Ruby client for the CrewAI AMP HTTP API"
spec.description = "A minimal, production-grade Ruby client for CrewAI AMP REST endpoints: healthcheck, inputs, kickoff, status, and resume."
spec.homepage = "https://github.com/MuhammadIbtisam/ruby-crewai"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.1.0"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "#{spec.homepage}/tree/main"
spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/main/CHANGELOG.md"
spec.metadata["rubygems_mfa_required"] = "true"
spec.files = Dir["lib/**/*.rb"] + %w[LICENSE README.md CHANGELOG.md].select { |f| File.exist?(f) }
spec.require_paths = ["lib"]
spec.add_dependency "faraday", ">= 2.0", "< 3"
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "rspec", "~> 3.0"
spec.add_development_dependency "webmock", "~> 3.0"
spec.add_development_dependency "rubocop", "~> 1.0"
spec.add_development_dependency "rubocop-rspec", "~> 3.0"
end