-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
181 lines (137 loc) · 4.36 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
ruby '2.4.0'
source 'https://rubygems.org'
source 'https://rails-assets.org'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?('/')
"https://github.com/#{repo_name}.git"
end
# use svg files in views
#gem 'inline_svg'
# finite state machine for user <-> bot interaction
# gem 'state_machines'
gem 'aasm', '~> 4.12', '>= 4.12.3'
# A discard gem to be used in archived users
gem 'discard'
gem 'record_tag_helper', '~> 1.0'
# Custom error page
# #Gemfile
# gem 'exception_handler', '~> 0.7.7.0'
# Saving data to csv, excel
gem 'xport'
# gem 'axlsx' # optional
# gem 'rubyXL' # optional
# gem 'xlsxtream' # optional
# writing and deploying cron jobs.
# gem 'whenever', :require => false
# another way for cron jobs
gem 'crono'
gem 'daemons' #used by crono
# cron jobs web ui
gem 'haml'
gem 'sinatra', require: nil
gem 'time_difference'
# use Trailblazer::Cell
gem 'cells'
gem 'cells-rails'
gem 'cells-erb'
# calculate percentages
gem 'percentage'
# pdf from html
gem 'wicked_pdf'
# wicked_pdf is a wrapper for wkhtmltopdf, I need to install that, too
gem 'wkhtmltopdf-binary-edge'
#gem 'wkhtmltopdf-binary'
# pdf creator
gem 'prawn', '~> 2.2', '>= 2.2.2'
# highcharts & highstock
#gem 'highcharts-rails'
gem 'highstock-rails'
# jquery-UI
gem 'jquery-ui-rails'
# for polling service in notification task
gem 'polling'
# some pretty print
gem 'awesome_print'
# Authentication solution
gem 'devise'
# gem 'devise-bootstrapped', '~> 0.1.1'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 5.1.1'
# upload coach image
gem 'paperclip', '~> 6.0'
# Gemfile
gem 'will_paginate-bootstrap'
# Use Puma as the app server
gem 'puma', '~> 3.7'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# See https://github.com/rails/execjs#readme for more supported runtimes
gem 'therubyracer', platforms: :ruby
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 4.2'
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
# gem 'turbolinks', '~> 5'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.5'
# gem 'redis', '~> 3.0' # Use Redis adapter to run Action Cable in production
# gem 'bcrypt', '~> 3.1.7' # Use ActiveModel has_secure_password
# gem 'capistrano-rails', group: :development # Use Capistrano for deployment
# API.AI wrapper
gem 'api-ai-ruby'
# Telegram API
gem 'telegram-bot-ruby'
# chatscript wrapper
gem 'chatscript'
# very usefull for hash dot notation
gem 'hash_dot'
# oauth2 client
gem 'oauth2'
####
gem 'rails-assets-eq.js'
gem 'rails-assets-jquery'
#gem 'rails-assets-material-design-lite'
gem 'material_design_lite-rails', '~> 1.3'
gem 'rails-assets-mdl-selectfield'
gem 'rails-assets-polyfills'
group :development, :test do
# Adds support for Capybara system testing and selenium driver
gem 'capybara', '~> 2.13'
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'selenium-webdriver'
# Use sqlite3 as the database for Active Record
#gem 'sqlite3'
gem 'pg', '0.20.0'
gem 'railroady'
end
group :development do
gem 'rails-erd'
gem 'listen', '>= 3.0.5', '< 3.2'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
gem 'web-console', '>= 3.3.0'
# Refactoring classes names
gem 'rails_refactor', '~> 1.3'
# Deploy without confidence ®
gem "capistrano", "~> 3.9"
gem 'capistrano-rails'
gem 'capistrano-rbenv'
gem 'capistrano-passenger'
gem 'rack-mini-profiler', require: false
# For memory profiling (requires Ruby MRI 2.1+)
gem 'memory_profiler'
# For call-stack profiling flamegraphs (requires Ruby MRI 2.0.0+)
gem 'flamegraph'
gem 'stackprof' # For Ruby MRI 2.1+
end
group :production do
# Heroku requests postgres for deploy
gem 'pg', '0.20.0'
# Used by heroku to serve static assets and css stylesheets
gem 'rails_12factor', '0.0.2'
end
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]