-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
124 lines (90 loc) · 2.9 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
source 'https://rubygems.org'
# The following line is necessary to allow RVM choosing the correct ruby version. RVM 2.0 will probably be able to interpret the "~>" symbol and we will be able to safely remove the "#ruby=2.4" line.
#ruby=2.4
ruby '2.5.1'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '5.1.4'
gem 'rubyzip', '>=1.2.1'
# Use sqlite3 as the database for Active Record
# gem 'sqlite3'
# Use SCSS for stylesheets
gem 'sass-rails'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
# Use jquery as the JavaScript library
gem 'jquery-rails', '>= 4.0.4'
gem 'jquery-ui-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
# gem 'turbolinks'
gem "rails-erd"
gem "kaminari"
#gem "schema_plus"
gem 'cancancan'
gem "devise", git: 'https://github.com/plataformatec/devise' #, ref: '88e9a85'
gem "paper_trail"
gem 'sql-parser'
# Iconography
gem 'font-awesome-rails'
# Prawn to PDF
gem 'prawn'
gem 'prawn-table'
gem 'prawn_rails'
gem 'odf-report'
gem 'clamsy', :git => 'https://github.com/gems-uff/clamsy.git', :branch => 'rails5'
# Redcarpet for Readme MarkDown (or README.md)
gem 'redcarpet'
# Active scaffold support for Rails 3
gem 'active_scaffold', :git => 'https://github.com/activescaffold/active_scaffold.git'
gem 'active_scaffold_duplicate', '>= 1.1.0'
gem 'recordselect'
#Date Validation Plugin
gem 'validates_timeliness'
# Menu
gem 'simple-navigation'
# Notification
gem 'rufus-scheduler'
gem 'codemirror-rails'
# Image
gem 'carrierwave'
gem 'carrierwave-activerecord', :git => 'https://github.com/gems-uff/carrierwave-activerecord.git', :branch => 'rails5'
group :development, :test do
gem 'sqlite3'
gem 'awesome_print'
gem 'rspec-rails'
gem 'factory_girl_rails'
gem 'webrick'
gem 'binding_of_caller'
gem 'better_errors'
gem 'spring'
gem 'byebug'
gem 'unicorn'
end
group :production, :staging do
gem 'mysql2'
gem 'exception_notification', '2.6.1', :require => 'exception_notifier'
end
gem 'json'
gem 'rdoc'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder'
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end
# HTML to PDF Engine
gem 'wkhtmltopdf-binary'
# HTML to PDF Converter. Uses wkhtmltopdf
gem 'pdfkit'
# gem 'wicked_pdf'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Use unicorn as the app server
# gem 'unicorn'
# Use Capistrano for deployment
# gem 'capistrano', group: :development
# Use debugger
# gem 'debugger', group: [:development, :test]