forked from ozfortress/citadel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
106 lines (91 loc) · 2.26 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
source 'https://rubygems.org'
gem 'rails', '~> 5.0.0'
# Use postgres
gem 'pg'
# Active Record extensions
gem 'active_record_union', '~> 1.2.0'
gem 'ancestry'
# SASS for stylesheets
gem 'sass-rails', '~> 5.0'
# Compress JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 4.2.0'
# Presenter pattern
gem 'action_presenter'
# Easy styling
gem 'bootstrap-sass', '~> 3.3.6'
# Bootstrap datetime picker
gem 'momentjs-rails', '>= 2.9.0'
gem 'bootstrap3-datetimepicker-rails', '~> 4.17.37'
# Easy bootstrap forms
gem 'bootstrap_form'
# Bootstrap markdown editor
gem 'pagedown-bootstrap-rails'
gem 'font-awesome-rails'
# Nested Forms
gem 'cocoon'
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# Steam Login
gem 'omniauth-steam'
# Authentication
gem 'devise'
# Use haml for templating
gem 'haml-rails', '~> 0.9'
# Forum Pages
gem 'will_paginate', '3.1.0'
gem 'will_paginate-bootstrap'
# Forum formatting
gem 'redcarpet'
# Search
gem 'elasticsearch-model'
gem 'elasticsearch-rails'
# File Uploads
gem 'carrierwave'
gem 'mini_magick'
# SSL
gem 'letsencrypt_plugin'
# Tracking and analytics
gem 'ahoy_matey'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
# Use rspec for tests
gem 'rspec-rails', '~> 3.4'
# Test coverage
gem 'simplecov'
# Use for validation testing
gem 'shoulda-matchers'
# Clean db for tests
gem 'database_cleaner'
# Easy database manipulation
gem 'factory_girl_rails', '~> 4.0'
# Web feature testing
gem 'capybara'
# Keep codebase clean
gem 'rubocop', '~> 0.36.0'
gem 'haml_lint'
gem 'rails_best_practices'
gem 'reek'
# Coveralls
gem 'coveralls', require: false
end
group :development do
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console', '~> 2.0'
# Test emails
gem 'letter_opener'
# Profilers
gem 'bullet'
# Faster development
gem 'spring'
# Development scripts
gem 'capistrano', '~> 3.1'
gem 'capistrano-rvm'
gem 'capistrano-bundler'
gem 'capistrano-rails'
gem 'capistrano-passenger'
end