-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
37 lines (28 loc) · 1016 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
source 'https://rubygems.org'
ruby ">=3.0.0"
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
"https://github.com/#{repo_name}.git"
end
gem 'rails', '~> 6.1.7.1'
# postgresql 9.2 can use pg >= 1.0, postgresql 9.1 need to use < 1.0
gem 'pg', '~> 1.5.4'
gem 'puma'
gem 'rabl'
gem 'jbuilder' # wihout it rabl will not work in rails >= 5
gem 'actionpack-xml_parser'
gem 'rexml'
# gem 'bcrypt', '~> 3.1.7'
gem "nokogiri"
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
end
group :development do
gem 'listen'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]