Created
April 9, 2019 21:03
-
-
Save freqn/043b163f48bdc8541a5ded70ddb9f3e3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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