-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
66 lines (56 loc) · 1.39 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
source 'https://rubygems.org'
#ruby '~>2.3.1'
ruby '~>3.0.4'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '7.0.4'
# Use sqlite3 as the database for Active Record
gem 'sqlite3', '1.4.2'
# Use SCSS for stylesheets
#gem 'sass-rails', '~> 4.0.3'
#gem 'sass-rails', "= 5.0.3"
gem 'sass-rails'
gem 'foundation-rails', '= 5.5.2.1'
#gem 'foundation-rails'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier' #, '>= 1.3.0'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails' #, '~> 4.0.0'
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder' #, '~> 2.0'
gem 'jquery-datatables-rails' #, '~> 3.4.0'
gem 'jquery-tablesorter'
gem 'jquery-ui-rails'
gem 'gritter'
gem 'devise'
gem 'dotenv-rails'
gem 'spreadsheet'
gem 'browser'
gem 'cancancan'
gem 'rolify'
gem 'wysiwyg-rails'
gem 'paper_trail'
gem 'binding_of_caller'
gem 'carrierwave'
gem 'thin'
gem 'bootsnap'
gem 'listen'
gem 'mimemagic', '0.3.7'
gem 'nokogiri', '~>1.10'
gem 'puma', '~>5.6.5'
group :development do
gem 'better_errors'
#gem 'spring'
gem 'pry'
gem 'rb-readline'
gem 'byebug'
#gem 'ruby-debug-ide
gem "capistrano", "~>3.10", require: false
gem "capistrano-rails", "~>1.3", require: false
gem "capistrano-rvm"
gem "capistrano3-puma"
end
gem 'builder'
#gem 'rspec-rails'
gem "sassc-rails"