-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
41 lines (35 loc) · 877 Bytes
/
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
source 'https://rubygems.org'
gem 'rails', '4.2.6'
gem 'pg'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.1.0'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 2.0'
gem 'sdoc', '~> 0.4.0', group: :doc
#gem 'capistrano-rails', group: :development
#gem "sequel_pg", "~> 1.6.19", require:"sequel"
group :development, :test do
gem 'byebug'
end
gem 'capistrano-rails-console', require: false
# add manualmente
gem 'devise'
gem 'pundit'
gem 'carrierwave', '~> 1.0'
gem 'wicked_pdf'
gem 'wkhtmltopdf-binary'
group :development do
gem 'sqlite3'
gem 'web-console', '~> 2.0'
gem 'spring'
gem 'capistrano', '~> 3.7'
gem 'capistrano-rails', '~> 1.2'
gem 'capistrano-passenger', '~> 0.2.0'
# Add this if you're using rbenv
gem 'capistrano-rbenv', '~> 2.1'
end
gem 'rubyzip', '= 1.0.0'
gem 'axlsx', '= 2.0.1'
gem 'axlsx_rails'