forked from ybakos/cs362-coad-resources
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
52 lines (46 loc) · 1.42 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "2.7.2"
gem 'airbrake', '~> 13.0.3'
gem 'bootsnap', '~> 1.15.0', require: false
gem 'bootstrap', '~> 4.4.1'
gem 'coffee-rails', '~> 4.2'
gem 'devise', '~> 4.8.1'
gem 'haml', '~> 6.1.1'
gem 'haml-rails', '~> 2.1.0'
gem 'jbuilder', '~> 2.5'
gem 'jquery-rails', '~> 4.5.1'
gem 'pagy', '~> 6.0.0'
gem 'phony_rails', '~> 0.15.0'
gem 'puma', '~> 3.12'
gem 'rails', '~> 5.2.4.1'
gem 'recaptcha', '~> 5.12.3', require: 'recaptcha/rails'
gem 'sassc-rails', '~> 2.1.2'
gem 'sqlite3', '~> 1.5.4'
gem 'turbolinks', '~> 5.2.1'
gem 'uglifier', '~> 4.2.0'
gem 'net-http', '~> 0.4.0'
group :development, :test do
gem 'byebug', '~> 11.1.3', platforms: [:mri, :mingw, :x64_mingw]
gem 'dotenv-rails', '~> 2.8.1'
gem 'factory_bot_rails', '~> 6.2.0'
gem 'rspec-rails', '~> 5.1.2'
end
group :development do
gem 'guard-rspec', '~> 4.7.3', require: false
gem 'letter_opener', '~> 1.8.1'
gem 'listen', '~> 3.1.5'
gem 'spring', '~> 2.1.1'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'spring-commands-rspec', '~> 1.0.4'
gem 'web-console', '~> 3.7.0'
end
group :test do
gem 'capybara', '~> 3.38.0'
gem 'database_cleaner', '~> 2.0.1'
gem 'selenium-webdriver', '~> 3.142.7'
gem 'shoulda-matchers', '~> 4.5'
gem 'simplecov', '~> 0.22.0', require: false
gem 'webdrivers', '~> 3.0'
end
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]