Skip to content

Instantly share code, notes, and snippets.

@freqn
Created April 9, 2019 21:03
Show Gist options
  • Save freqn/043b163f48bdc8541a5ded70ddb9f3e3 to your computer and use it in GitHub Desktop.
Save freqn/043b163f48bdc8541a5ded70ddb9f3e3 to your computer and use it in GitHub Desktop.
# frozen_string_literal: true
source 'https://rubygems.org'
ruby '2.6.2'
gem 'rails', '~> 5.2.3'
gem 'pg', '>= 0.18', '< 2.0'
gem 'puma', '~> 3.11'
gem 'devise', '~> 4.6', '>= 4.6.2'
gem 'ahoy_matey' # for user tracking
gem 'bootsnap', '~> 1.4', '>= 1.4.3', require: false
gem 'redis', '~> 4.1'
gem 'active_model_serializers', '~> 0.10.9'
gem 'activerecord-postgis-adapter'
gem 'rack-cors'
group :development, :test do
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'rspec-rails'
end
group :development do
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'apipie-rails', '~> 0.5.15'
end
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment