-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathGemfile
66 lines (52 loc) · 1.4 KB
/
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.7.3'
gem 'rails', '~> 6.0.3.2'
# Use Puma as the app server
gem 'puma', '~> 4.1'
# Use Active Model has_secure_password
gem 'bcrypt'
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 'web-console', '>= 3.3.0'
gem 'listen', '>= 3.0.5', '< 3.2'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
gem 'rack-timeout', require: 'rack/timeout/base'
gem 'sprockets', '< 4'
gem 'sassc-rails'
gem 'execjs'
#er', platforms: :ruby
group :development, :test do
gem 'amazing_print'
gem 'dotenv-rails'
gem 'grade_runner', github: 'firstdraft/grade_runner'
gem 'pry-rails'
gem 'sqlite3', '~> 1.4.1'
gem 'table_print'
gem 'web_git', github: 'firstdraft/web_git'
end
group :development do
gem 'annotate'
gem 'better_errors'
gem 'binding_of_caller'
gem 'draft_generators', github: 'firstdraft/draft_generators'
gem 'rufo'
gem 'htmlbeautifier'
end
group :test do
gem 'capybara'
gem 'color_namer'
gem 'factory_bot_rails'
gem 'rspec-rails'
gem 'rspec-html-matchers'
gem "selenium-webdriver", "3.142.7"
gem 'webmock'
end
group :production do
gem 'pg'
end