-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
41 lines (33 loc) · 854 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', '~> 6.0.0'
gem 'puma', '~> 4.0'
gem 'sassc-rails'
gem 'uglifier', '>= 1.3.0'
gem 'pg'
gem 'underscore-rails'
gem 'jquery-rails'
gem 'turbolinks', '~> 5'
gem 'jbuilder', '~> 2.5'
# gem 'foundation-rails', '~> 6.2.4.0'
gem 'foundation-rails'
gem 'foundation_rails_helper', '>= 3.0.0.rc2', '< 4.0'
gem 'jwt', '~> 1.5.2'
gem 'pygments.rb'
gem 'json-api-vanilla'
gem 'ffaker'
gem 'clearance'
gem 'ruby-adobe-io', '0.4.0', source: 'https://obdkxJv4xLM3y78hPJFK@gem.fury.io/jwalter748/'
group :development, :test do
gem 'byebug', platform: :mri
gem 'pry'
gem 'pry-byebug'
end
group :development do
gem 'pry-rails'
gem 'web-console'
gem 'listen', '~> 3.0.5'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
ruby "2.6.3"