-
Notifications
You must be signed in to change notification settings - Fork 6
/
Gemfile
62 lines (54 loc) · 1.47 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
source "https://rubygems.org"
ruby "3.0.2"
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.4"
gem "devise"
gem "bootstrap-sass", "3.4.1"
gem "puma", "~> 4.3"
gem "sass-rails", "~> 5.0"
gem "uglifier", ">= 1.3.0"
gem "bourbon"
gem "matrix"
gem "redcarpet", "~> 3.5.1"
gem "turbolinks", "~> 5"
gem "jbuilder", "~> 2.5"
gem "jquery-rails"
gem "sqlite3", "~> 1.4"
gem "jquery-ui-rails", "~> 5.0", ">= 5.0.5"
gem "acts_as_list"
gem "mimemagic", "~> 0.3.8"
gem "omniauth-github", "~> 2.0.0"
gem "omniauth-rails_csrf_protection"
gem "coffee-script"
gem "net-smtp"
group :development, :test do
gem "byebug", platforms: [:mri, :mingw, :x64_mingw]
gem "rspec-rails", "~> 4.0.2"
gem "faker"
gem "shoulda-matchers", "~> 3.1"
gem "rails-controller-testing"
gem "dotenv-rails"
gem "recursive-open-struct"
gem "factory_bot_rails"
end
group :test do
gem "apparition", git: "https://github.com/twalpole/apparition.git", ref: "7db58cc6b0e4ca4141b074ff27d5936a1b8874bf"
gem "capybara"
gem "webdrivers"
gem "database_cleaner"
gem "capybara-screenshot"
end
group :development do
gem "listen", "~> 3.7"
gem "spring", "~> 2.1.1"
gem "spring-watcher-listen", "~> 2.0.0"
gem "standardrb", require: false
gem "web-console", ">= 3.3.0"
end
group :development, :test do
gem "next_rails"
end
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]