-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
191 lines (132 loc) · 4.48 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
181
182
183
184
185
186
187
188
189
190
191
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '5.1.4'
## Use sqlite3 as the database for Active Record
#gem 'sqlite3'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 4.2.1'
# 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', '~> 5.0.0'
# 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.1', group: :doc
# Use ActAsTaggableOn for keywords. See https://github.com/mbleigh/acts-as-taggable-on
gem 'acts-as-taggable-on', '~> 4.0'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
group :development, :test, :staging do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
end
group :development, :staging do
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console', '~> 3.3'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
end
gem 'rack-cors', :require => 'rack/cors'
gem 'rack-handlers'
# Devise is the user-management dependency
gem 'devise'
# Authorization module
gem 'cancancan', '~> 1.10'
# ActiveRecord versioning module
gem 'paper_trail', '~> 5.2.0'
# Generates good looking URI safe IDs
gem 'friendly_id', '~> 5.1.0'
# Gravatar is evil
gem 'gravatarify', '~> 3.1.1'
# Iori said Slim is better than ERB
gem 'slim'
# We should have beautiful URIs
gem 'validate_url'
# This is beautiful and neat
gem 'material_design_lite-rails'
gem 'material_icons'
# We sell our data to satan
gem 'omniauth-facebook'
# Twitter
gem 'omniauth-twitter'
# And GitHub as well
gem 'omniauth-github'
# Pagination
gem 'will_paginate', '~> 3.1.0'
# Fulltext search
gem 'textacular', '~> 5.0'
# textacular requires postgresql
gem 'pg', '~> 0.20'
# file upload with streaming io
gem "refile", '~> 0.6.2',require: "refile/rails", :git => 'https://github.com/manfe/refile.git'
#gem "refile-mini_magick"
gem "refile-s3"
# Generate funny names by default
gem 'bazaar'
# They say HTTP is fun
#gem 'httparty'
# It seems to be an ok http client
gem 'faraday'
# It doesn't manage cookies by default though
gem 'faraday-cookie_jar'
# JavaScript file upload by drag&drop
gem 'dropzonejs-rails'
# Diplomat is a Consul.io client
gem 'diplomat'
# Doorkeeper to support Oauth2 as an authentication provider
gem 'doorkeeper'
# _.get, _.set, and _.unset for Ruby
gem 'rodash', '~> 2.0.0'
# Convert markdown to html
gem 'redcarpet'
# It's supposed to be faster
gem 'yajl-ruby', require: 'yajl'
# simple_form should save some time
gem 'simple_form'
# closure_tree adds support for tree data structure in ActiveRecord models
gem 'closure_tree'
# To display wonderful HTML diffs
gem 'diffy'
# Dynamic nested forms
gem 'cocoon'
# Fancy javascript layouts
gem 'gridster-rails'
# Most important gem of the project
gem 'indefinite_article'
# Deep clonning
gem 'deep_cloneable', '~> 2.2.0'
# Feature flippin'
gem 'flipflop'
# This gem packages the jQuery DataTables plugin for easy use with the Rails 3.1+ asset pipleine. It provides all the basic DataTables files, and a few of the extras.
gem 'jquery-datatables-rails', '~> 3.4.0'
# Read Excel files
gem 'roo', '~> 2.4.0'
gem 'roo-xls'
gem 'roo-google'
# brings back assigns to controller tests as well as assert_template to both controller and integration tests
gem 'rails-controller-testing'
#clipboard-rails gem is the integration of clipboard.js javascript library for your Rails 4 application.
gem 'clipboard-rails'
# Prometheus metrics framework
gem 'prometheus-client'
# Gem installation of javascript framework for list and table manipulation, List.js
# https://github.com/arturhoo/listjs-rails
gem 'listjs-rails'
#Use wicked to make your Rails controllers into step-by-step wizards.
gem 'wicked'
gem 'puma'
gem 'rest-client'
# StateMachines Active Record Integration
gem 'state_machines-activerecord'
# Minitest should avoid bug in update 5.10.2
gem 'minitest', '5.10.1'
# Lib for accessing Arango Database
# gem 'arangorb'
gem 'httparty', '~> 0.14'