-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
43 lines (35 loc) · 886 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
42
43
source 'https://rubygems.org'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?('/')
"https://github.com/#{repo_name}.git"
end
gem 'rails', '~> 5.1.5'
gem 'dotenv-rails'
gem 'sqlite3'
gem 'pg'
gem 'puma', '~> 3.7'
# gem 'jbuilder', '~> 2.5'
# gem 'redis', '~> 4.0'
# gem 'bcrypt', '~> 3.1.7'
# gem 'capistrano-rails', group: :development
gem 'rack-cors'
group :development, :test do
gem 'byebug'
gem 'factory_bot_rails'
gem 'faker'
gem 'guard-rspec', require: false
gem 'rspec-rails'
gem 'simplecov', require: false, group: :test
end
group :development do
gem 'guard-rails'
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end
gem 'devise'
gem 'devise-jwt', '~> 0.5.6'
gem 'normalize_country'
gem 'mailgun_rails'
gem 'paypal-sdk-rest'
gem 'rubocop', require: false