-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
50 lines (43 loc) · 1007 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
39
40
41
42
43
44
45
46
47
48
49
50
# frozen_string_literal: true
source 'https://rubygems.org'
ruby '3.0.4'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?('/')
"https://github.com/#{repo_name}.git"
end
gem 'actionview'
gem 'active_recall', '~> 1.0'
gem 'authem'
gem 'bootsnap'
gem 'bulma-rails'
gem 'coffee-rails'
gem 'easy_translate'
gem 'jbuilder'
gem 'nokogiri'
gem 'pg'
gem 'puma'
gem 'rack'
gem 'rails', '6.1.7.6'
gem 'railties'
gem 'sass-rails'
gem 'turbolinks'
gem 'uglifier'
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 3.0'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
group :development, :test do
gem 'bullet'
gem 'byebug', platforms: %i[mri mingw x64_mingw]
gem 'capybara'
gem 'fabrication'
gem 'rspec-rails'
gem 'selenium-webdriver'
end
group :development do
gem 'listen'
gem 'spring'
gem 'spring-watcher-listen'
gem 'web-console'
end
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]