-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
181 lines (134 loc) · 4.4 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
source 'https://rubygems.org'
# ruby '2.4.4'
# Use SCSS for stylesheets
# gem 'sass'
# gem 'sass-rails', '~> 5.0'
gem 'sassc'
gem 'sassc-rails'
gem 'bootstrap-sass', '~> 3.4.1'
# 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
# Use jquery as the JavaScript library
gem 'jquery-rails'
gem 'jquery-turbolinks'
# gem 'bootstrap-material-design'
# 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
# Use ActiveModel has_secure_password
gem 'bcrypt', '~> 3.1.7'
# Access translation strings in Javascript
gem 'i18n-js'
# MomentJS Javascript datetime and timezone manipulation
gem 'momentjs-rails'
gem 'tzinfo'
gem 'bootstrap-switch-rails'
# Use Unicorn as the app server
# gem 'unicorn'
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
# Caching
gem 'actionpack-page_caching', '~> 1.0.2' # removed from Rails-core as Rails 4.0
gem 'actionpack-action_caching', '~> 1.1.1' # removed from Rails-core as Rails 4.0
gem 'rails-observers'
gem 'cashier', '~> 0.4.1'
# File uploads
gem 'carrierwave', '>= 1.3.2'
# Encode/Decode HTML Entities
gem 'htmlentities'
# Pagination
gem 'kaminari', '>= 1.2.1'
# Image Resize
gem 'mini_magick', require: 'mini_magick'
# Provide the ability to create non-digest assets
gem 'non-stupid-digest-assets'
# Provide form recaptcha
gem 'recaptcha', require: 'recaptcha/rails'
# Tools to generate various types of UUIDs based on RFC 4122
gem 'uuidtools'
# Fetch and Parse RSS feeds
# gem 'feedjira'
# Create XLSX templates
gem 'rubyzip', '>= 1.3.0'
gem 'axlsx'
gem 'axlsx_rails'
gem 'acts_as_xlsx'
# Parse Spreadsheets
gem 'creek'
# Encoding detection
gem 'iconv'
# Background Jobs
gem 'delayed_job_active_record'
gem 'daemons'
# Delayed Job Monitoring
# gem 'dj_mon' # https://github.com/akshayrawat/dj_mon#things-to-do => Rails 4 compatibility!!!
gem 'devise', '>= 4.7.1'
gem 'mongoid', '~> 5.0.0'
gem 'activerecord-import', '>= 0.2.0'
gem 'ci_reporter_rspec'
group :development, :test do
# 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.1.3'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
# Code analyzer as per Ruby code guidelines
gem 'rubocop', require: false
gem 'rubycritic', :require => false
# gem 'better_errors', '~> 2.0.0'
gem 'binding_of_caller'
# Helper gem to colorize terminal output
gem 'colorize'
# Automatically & intelligently launch specs when files are modified. Read more: https://github.com/guard/guard-rspec
# gem 'guard-rspec', require: false
end
group :development do
gem 'annotate'
gem 'migration_comments'
gem 'rspec-rails'
# Do not log assets requests in development environment.
gem 'quiet_assets'
# gem 'rails-erd'
gem 'rename'
gem 'capistrano', '~> 3.2.1'
gem 'capistrano-rails', '~> 1.1.1', require: false
gem 'capistrano-bundler', '~> 1.1.2', require: false
gem 'capistrano-rvm', '~> 0.1', require: false
gem 'capistrano3-puma'
gem 'capistrano-rbenv', '~> 2.0', require: false
gem 'capistrano-chruby', github: 'capistrano/chruby', require: false
gem 'capistrano3-delayed-job', '~> 1.0'
gem 'capistrano-nc', '~> 0.1', require: false
gem 'highline'
end
group :development, :production do
# At the moment newer versions of this gem does not work with Rails 4.2.4
gem 'mysql2', '~> 0.5.3'
gem 'puma', '>= 3.12.4'
gem 'rack-cache'
end
group :test do
# Use sqlite3 as the database for Active Record
gem 'sqlite3'
gem 'rspec'
gem 'rspec-activemodel-mocks'
gem 'mongoid-rspec', '3.0.0'
gem 'database_cleaner'
gem 'capybara'
gem 'simplecov'
gem 'simplecov-json'
gem 'simplecov-rcov'
gem 'launchy'
gem 'cucumber-rails', :require => false
gem 'cucumber-rails-training-wheels'
# gem 'factory_girl'
gem 'factory_girl_rails' #, :require => false
end