-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathGemfile
67 lines (56 loc) · 1.09 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
67
source 'https://rubygems.org'
ruby '2.6.5'
gem 'rails', '~> 6'
gem 'pg', '~> 0.21.0'
gem 'sass-rails'
gem 'uglifier'
gem 'jbuilder'
gem 'kaminari'
gem 'bootsnap'
gem "slim-rails"
gem 'materialize-sass', '~> 0.100'
gem 'autoprefixer-rails'
gem 'mini_racer'
gem 'jquery-rails'
gem 'google-api-client', '~> 0.11'
gem 'rails_autolink'
gem 'puma'
gem 'coffee-script'
gem 'activeadmin', '~> 2'
gem 'devise'
gem 'cancancan'
gem 'feature'
gem 'omniauth'
gem 'omniauth-twitter'
gem 'twitter'
gem "gibbon"
gem "rest-client"
gem "redis"
gem 'acts-as-taggable-on'
gem 'react-rails', '~> 1.4', '>= 1.4.1'
gem 'rack-cors', require: 'rack/cors'
gem 'loofah', '>= 2.2.3'
group :development, :test do
gem 'dotenv-rails'
gem 'rspec-rails'
gem 'pry'
gem 'pry-byebug'
gem 'pry-rails'
gem 'better_errors'
gem 'spring-commands-rspec'
gem 'factory_bot_rails'
gem 'faker'
end
group :test do
gem 'shoulda-matchers'
end
group :development do
gem "spring"
gem "spring-watcher-listen", "~> 2.0.0"
gem 'seed_dump'
gem 'binding_of_caller'
gem 'listen'
end
group :production do
gem 'rails_12factor'
end