-
-
Notifications
You must be signed in to change notification settings - Fork 534
Expand file tree
/
Copy pathGemfile
More file actions
27 lines (22 loc) · 666 Bytes
/
Gemfile
File metadata and controls
27 lines (22 loc) · 666 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
source "https://rubygems.org"
git_source(:github) { |name| "https://github.com/#{name}.git" }
gem "rake", "~> 12.0"
gem "concurrent-ruby", require: "concurrent"
gem "langchainrb", "~> 0.16.0"
ruby_version = Gem::Version.new(RUBY_VERSION)
# Development tools
if ruby_version >= Gem::Version.new("2.7.0")
gem "debug", github: "ruby/debug", platform: :ruby
gem "irb"
gem "ruby-lsp-rspec" if ruby_version >= Gem::Version.new("3.0.0") && RUBY_PLATFORM != "java"
end
# For RSpec
gem "rspec", "~> 3.0"
gem "rspec-retry"
gem "simplecov"
gem "simplecov-cobertura", "~> 1.4"
gem "rexml"
group :rubocop do
gem "rubocop-rails-omakase"
gem "rubocop-packaging"
end