Skip to content

Commit

Permalink
Merge 61e8046 into a581bee
Browse files Browse the repository at this point in the history
  • Loading branch information
mattwr18 committed Mar 10, 2020
2 parents a581bee + 61e8046 commit 8f73ea5
Show file tree
Hide file tree
Showing 55 changed files with 721 additions and 824 deletions.
6 changes: 2 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
#
# If you find yourself ignoring temporary files generated by your text editor
# or operating system, you probably want to add a global ignore instead:
Expand All @@ -13,9 +12,8 @@
!/log/.keep
!/tmp/.keep

# Ignore uploaded files in development.
/storage/*
!/storage/.keep

/public/assets
.byebug_history

# Ignore master key for decrypting credentials and more.
Expand Down
26 changes: 10 additions & 16 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,42 +6,36 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.6.2'

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 6.0.0.rc1'
gem 'rails', '~> 6.0.2', '>= 6.0.2.1'
# Use postgresql as the database for Active Record
gem 'pg', '>= 0.18', '< 2.0'
# Use Puma as the app server
gem 'puma', '~> 3.12'
gem 'puma', '~> 4.1'
# Use SCSS for stylesheets
gem 'sass-rails', '>= 6'
# 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'
gem 'jbuilder', '~> 2.7'
# Use Active Model has_secure_password
# gem 'bcrypt', '~> 3.1.7'

# Use Active Storage variant
# gem 'image_processing', '~> 1.2'

# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.4.2', require: false

# Use Rack CORS for handling Cross-Origin Resource Sharing (CORS), making cross-origin AJAX possible
# gem 'rack-cors'
gem 'travis', '~> 1.8', '>= 1.8.10'
gem 'graphql', '~> 1.9'

group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: %i[mri mingw x64_mingw]
gem 'factory_bot_rails'
gem 'faker'
gem 'pry-byebug'
gem 'rspec-rails', '~> 4.0.0.beta2'
gem 'rspec-rails', '~> 4.0.0.beta2'
gem 'shoulda-matchers', '~> 4.1', '>= 4.1.2'
gem 'rspec-rails'
end

group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'web-console', '>= 3.3.0'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'graphiql-rails', '~> 1.7'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end
Expand Down

0 comments on commit 8f73ea5

Please sign in to comment.