-
Notifications
You must be signed in to change notification settings - Fork 3
/
Gemfile
69 lines (43 loc) · 1.29 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
68
69
source 'https://rubygems.org'
ruby '2.7.4'
gem 'dotenv-rails', groups: [:development, :test]
gem 'rails', '~> 5.2.6'
gem 'sprockets', '~> 3.7.2'
## dependabot stuff
gem "json", ">= 2.3.0"
gem "nokogiri", ">= 1.12.5"
## end dependabot stuff
gem 'authlogic'
gem 'pg'
gem "rmagick", :require => 'rmagick'
gem 'aws-sdk-s3'
gem 'actionpack-page_caching'
gem 'actionpack-action_caching'
# gem 'curb', '~> 0.7.15' #, :git => 'https://github.com/taf2/curb'
# gem 'feedzirra', :git => 'https://github.com/pauldix/feedzirra.git'
gem 'kaminari'
gem 'flickraw', '0.9.8'
gem 'sassc'
gem 'sass-rails'
gem 'coffee-rails'
gem 'uglifier', '>= 1.0.3'
gem 'jquery-rails', '4.4.0'
gem 'mail'
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# Use unicorn as the web server
gem 'unicorn'
gem 'newrelic_rpm'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
# gem 'ruby-debug'
group :development, :test do
gem 'listen'
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
# Access an IRB console on exception pages or by using <%= console %> in views
# gem 'web-console', '~> 2.0'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
end