-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathGemfile
More file actions
55 lines (46 loc) · 1.31 KB
/
Copy pathGemfile
File metadata and controls
55 lines (46 loc) · 1.31 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# frozen_string_literal: true
source 'https://rubygems.org'
ruby '>= 3.2.0'
# Specify your gem's dependencies in desiru.gemspec
gemspec
group :development, :test do
gem 'dotenv', '~> 3.0'
gem 'mock_redis', '~> 0.40'
gem 'pry', '~> 0.14'
gem 'pry-byebug', '~> 3.10'
gem 'rack-test', '~> 2.0'
gem 'rake', '~> 13.0'
gem 'rdoc'
gem 'rspec', '~> 3.0'
gem 'rubocop', '~> 1.21'
gem 'rubocop-rake', '~> 0.6'
gem 'rubocop-rspec', '~> 2.0'
gem 'simplecov', '~> 0.22', require: false
gem 'webmock', '~> 3.0'
gem 'yard', '~> 0.9'
end
# LLM interaction dependencies
gem 'anthropic', '~> 0.3'
gem 'faraday', '~> 2.0'
gem 'faraday-retry', '~> 2.0'
gem 'open_router', '~> 0.3'
gem 'ruby-openai', '~> 7.0'
# GraphQL support
gem 'graphql', '~> 2.0'
# REST API support
gem 'grape', '~> 2.0'
gem 'rack-cors', '~> 2.0'
gem 'sinatra', '~> 3.0'
gem 'sinatra-contrib', '~> 3.0'
# Database support
gem 'sequel', '~> 5.0'
gem 'sqlite3', '~> 1.6' # For development/testing
# Optional dependencies for enhanced functionality
group :optional do
gem 'async', '~> 2.0' # For concurrent operations
gem 'dry-struct', '~> 1.0' # For type safety
gem 'dry-validation', '~> 1.0' # For validation
gem 'jwt', '~> 2.0' # For API authentication
gem 'rack-throttle', '~> 0.7' # For rate limiting
gem 'redis', '~> 5.0' # For caching
end