-
Notifications
You must be signed in to change notification settings - Fork 285
Expand file tree
/
Copy pathGemfile
More file actions
34 lines (28 loc) · 803 Bytes
/
Gemfile
File metadata and controls
34 lines (28 loc) · 803 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
34
# frozen_string_literal: true
source "https://rubygems.org"
# Specify your gem's dependencies in i18n-tasks.gemspec
gemspec
platform :rbx do
# https://github.com/rubinius/rubinius/issues/2632
gem "racc"
end
gem "bundler", "~> 2.0", ">= 2.0.1"
gem "overcommit"
gem "rake"
gem "rspec", "~> 3.3"
gem "standard", require: false
gem "rubocop-rake", require: false
gem "rubocop-rspec", require: false
gem "simplecov"
gem "yard"
# Translation backends
# These are only used in tests
gem "deepl-rb", ">= 2.1.0"
gem "ruby-openai"
gem "yandex-translator", ">= 0.3.3"
unless ENV["CI"]
group :development do
gem "byebug", platforms: %i[mri mswin x64_mingw_21 x64_mingw_22], require: false # rubocop:disable Naming/VariableNumber
gem "rubinius-debugger", platform: :rbx, require: false
end
end