-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
38 lines (30 loc) · 958 Bytes
/
Gemfile
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
source 'https://rubygems.org'
gem 'jets'
# to push translated files to S3
gem 'aws-sdk-s3', '~> 1'
# to get base file from repository
gem 'octokit', '~> 4.18.0'
# to translate keys
gem 'google-cloud-translate', '~> 1.3.0', require: 'google/cloud/translate'
# to update existing files
gem 'hashdiff', '~> 1.0.1'
# Parse and format i18n messages using ICU MessageFormat
gem 'message_format'
# json gem
gem 'json', '2.5.1'
# development and test groups are not bundled as part of the deployment
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: %i[mri mingw x64_mingw]
gem 'pry', '~> 0.12.2'
gem "pry-nav"
gem "pry-rails"
gem 'puma'
gem 'rack'
gem 'shotgun'
end
group :test do
gem 'capybara'
gem 'launchy'
gem 'rspec' # rspec test group only or we get the "irb: warn: can't alias context from irb_context warning" when starting jets console
end