-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
108 lines (81 loc) · 2.52 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
107
108
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
ruby '2.2.3'
gem 'rails', '4.2.4'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
gem 'bootstrap-sass', '~> 3.3.5'
gem 'devise'
gem 'jquery-rails'
gem 'jquery-ui-rails'
#Nice drop down
gem 'compass-rails'
gem 'chosen-rails'
#Javascript Stuff
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 4.1.0'
# See https://github.com/rails/execjs#readme for more supported runtimes
gem 'therubyracer', platforms: :ruby
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.0'
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.0', group: :doc
#Delayed jobs
gem 'delayed_job_active_record'
gem 'daemons'
# full calendar
gem 'fullcalendar-rails'
gem 'momentjs-rails'
#Web server
gem 'puma'
#Allows saves without a callback
gem 'sneaky-save'
#Roles and Auth
gem 'rolify'
gem 'cancancan', '~> 1.10'
#text editor
gem 'ckeditor'
#helps with searching
gem 'ransack'
#helps with rails console output
gem 'awesome_print'
#pagination
gem 'will_paginate', '~> 3.0.6'
gem 'will_paginate-bootstrap'
group :development, :test do
#RSpec is used for unit testing
gem 'rspec-rails', '~> 3.0'
#Helps with creating objects for testing
gem 'factory_girl_rails'
#Used for doing coverage testing on our application
gem 'simplecov', require: false
#used for creating seeds. It generates fake data
gem 'faker'
end
group :development do
# Use mysql as the database for Active Record
gem 'mysql2'
# 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'
#Helps find n+1 queries
gem 'bullet'
#Helps make print out in rails console look better
gem 'awesome_print'
#These 2 gems makes it a bit easier to debug issues when they occur
#This occurs by stopping where the error occurs and giving you a terminial and info on what was going on
gem 'better_errors', '1.0.1'
gem 'binding_of_caller', '0.7.2'
gem 'pry-rails'
gem 'quiet_assets'
end
group :production do
gem 'rails_12factor', '0.0.3'
#The database used in production
gem 'pg', '0.18.3'
end