forked from crmne/ruby_llm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
33 lines (29 loc) · 673 Bytes
/
Gemfile
File metadata and controls
33 lines (29 loc) · 673 Bytes
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
source 'https://rubygems.org'
gemspec
group :development do
# Rails integration dependencies
gem 'activerecord', '>= 6.0', '< 9.0'
gem 'activesupport', '>= 6.0', '< 9.0'
# Development dependencies
gem 'bundler', '>= 2.0'
gem 'codecov'
gem 'dotenv'
gem 'irb'
gem 'nokogiri'
gem 'overcommit', '>= 0.66'
gem 'pry', '>= 0.14'
gem 'rake', '>= 13.0'
gem 'rdoc'
gem 'reline'
gem 'rspec', '~> 3.12'
gem 'rubocop', '>= 1.0'
gem 'rubocop-rake', '>= 0.6'
gem 'rubocop-rspec'
gem 'simplecov', '>= 0.21'
gem 'simplecov-cobertura'
gem 'sqlite3'
gem 'vcr'
gem 'webmock', '~> 3.18'
gem 'yard', '>= 0.9'
end