vereto-api/Gemfile

62 lines
1.8 KiB
Text
Raw Normal View History

2018-02-16 09:12:51 +00:00
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
2019-09-26 13:23:20 +02:00
ruby '2.6.4'
2018-02-16 09:12:51 +00:00
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
2019-09-26 13:40:53 +02:00
gem 'rails', '~> 6.0.0'
2018-02-16 09:12:51 +00:00
# Use sqlite3 as the database for Active Record
2018-02-16 11:36:18 +00:00
gem 'mysql2', '>= 0.4.10'
2018-02-16 09:12:51 +00:00
# Use Puma as the app server
gem 'puma', '~> 3.11'
2018-02-16 09:12:51 +00:00
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
# gem 'jbuilder', '~> 2.5'
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 4.0'
# Use ActiveModel has_secure_password
2018-02-16 15:02:03 +00:00
gem 'bcrypt', '~> 3.1.7'
gem 'jwt'
2019-09-26 13:40:53 +02:00
gem 'bootsnap'
2018-02-19 16:03:07 +00:00
gem 'rack-cors', :require => 'rack/cors'
gem 'fast_jsonapi'
gem 'will_paginate'
2018-02-27 15:45:56 +00:00
gem 'capistrano', '3.10.1'
2019-10-07 12:46:17 +02:00
gem 'capistrano-rails', '~> 1.4'
2018-02-27 14:54:19 +00:00
gem 'capistrano-passenger', '~> 0.2.0'
2018-02-27 15:01:45 +00:00
gem 'capistrano-rbenv'
gem 'capistrano-bundler'
2019-09-30 17:55:11 +02:00
gem 'ed25519'
gem 'bcrypt_pbkdf'
2018-02-16 09:12:51 +00:00
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
# Use Rack CORS for handling Cross-Origin Resource Sharing (CORS), making cross-origin AJAX possible
# gem 'rack-cors'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'faker'
2018-02-16 11:36:18 +00:00
gem 'rspec-rails', '~> 3.5'
2018-02-16 09:12:51 +00:00
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
end
2018-02-16 11:36:18 +00:00
group :test do
gem 'factory_girl_rails', '~> 4.0'
gem 'shoulda-matchers', '~> 3.1'
gem 'database_cleaner'
end
2018-02-16 09:12:51 +00:00
group :development do
gem 'listen', '>= 3.0.5', '< 3.2'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]