-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
59 lines (49 loc) · 1.72 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
source 'https://rubygems.org'
ruby '3.2.2'
group :production do
gem 'pg' # Heroku database
gem 'rails_12factor' # Heroku support
end
# Default Rails gems
gem 'rails', "7.2.1"
gem 'uglifier' # Use Uglifier as compressor for JavaScript assets
gem 'coffee-rails' # Use CoffeeScript for .js.coffee assets and views
gem 'jquery-rails' # Use jquery as the JavaScript library
gem 'turbolinks' # Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'sass-rails'# Use SCSS for stylesheets
gem 'bootstrap-sass' # Twitter Bootstrap front-end framework
gem 'bcrypt' # To use ActiveModel has_secure_password
# Non-default gems
gem 'faye' #allow sending messages back to users
gem 'newrelic_rpm' #3rd party application for monitoring and status info
gem 'private_pub' #filter faye messages for only some recipients
gem 'ruby-progressbar'
gem 'aasm'
gem 'omniauth-identity' #allow logging in locally
gem 'omniauth-facebook' #allow logins using facebook
gem 'omniauth-twitter' #allow logins using twitter
gem 'thin' #hosts faye
gem 'jquery-datatables-rails' #for easy pagination and searching in admin page
gem 'jquery-ui-rails' #for easy pagination and searching in admin page
gem 'responders'
gem 'ostruct'
#depreciated gems FIXME
#gem 'protected_attributes'
group :development do
gem 'annotate'
gem 'foreman'
gem 'pry'
end
group :development, :test do
gem 'sqlite3' # Development database
gem 'rspec-rails' # Run rake tests in development
gem 'therubyracer' # Javascript runtime for development
end
# To use Jbuilder templates for JSON
# gem 'jbuilder'
# Use unicorn as the app server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
# gem 'debugger'