Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
174 changes: 87 additions & 87 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,87 +1,87 @@
# frozen_string_literal: true
source('https://rubygems.org')
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby('2.7.1')
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem('rails', '~> 6.0.3', '>= 6.0.3.5')
# Use postgresql as the database for Active Record
gem('pg', '>= 0.18', '< 2.0')
# Use Puma as the app server
gem('puma', '~> 4.1')
# Sass is an extension of CSS, adding nested rules, variables, mixins, selector inheritance, and more.
gem('sassc', '~> 2.4.0')
# Use SCSS for stylesheets
gem('sassc-rails', '~> 2.1.2')
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
gem('webpacker', '~> 4.0')
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
gem('turbolinks', '~> 5')
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem('jbuilder', '~> 2.7')
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 4.0'
# Use Active Model has_secure_password
# gem 'bcrypt', '~> 3.1.7'
gem('bootstrap-sass')
gem('cancancan', '~>3.1')
gem('chartkick')
gem('devise')
gem('money-rails', '~>1.12')
gem('newrelic_rpm')
gem('sentry-raven')
# 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)
gem('faker')
group :development, :test do
# Brakeman detects security vulnerabilities in Ruby on Rails
# applications via static analysis.
gem 'brakeman', '~> 4.9.0', require: false
# bundler-audit provides patch-level verification for Bundled apps.
gem 'bundler-audit', '~> 0.7.0', require: false
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: %i[mri mingw x64_mingw]
# ERB Linter tool.
gem 'erb_lint', '~> 0.0.35', require: false
# Automatic Ruby code style checking tool. Aims to enforce
# the community-driven Ruby Style Guide.
gem 'rubocop', '~> 0.89.1', require: false
gem 'rubocop-performance', '~> 1.7.1', require: false
gem 'rubocop-rails', '~> 2.7.1', require: false
gem 'rubocop-rspec', '~> 1.43.2', require: false
gem 'rubycritic', require: false
# Configurable tool for writing clean and consistent SCSS
gem 'scss_lint', '~> 0.59.0', require: false
# Capybara is an integration testing tool for rack based web applications.
gem 'capybara', '~> 3.33.0'
end
group :test do
# Code coverage for Ruby 1.9+ with a powerful configuration library
gem 'simplecov', '~> 0.19.0', require: false
# rspec-rails is a testing framework for Rails 3+.
gem 'rspec-rails', '~> 4.0.1'
# Making tests easy on the fingers and eyes
gem 'factory_bot_rails'
gem 'shoulda-matchers', '~> 4.4.1'
end
group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'listen', '~> 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 '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: %i[mingw mswin x64_mingw jruby])
# frozen_string_literal: true

source('https://rubygems.org')
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

ruby('2.7.1')

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem('rails', '~> 6.0.3', '>= 6.0.3.5')
# Use postgresql as the database for Active Record
gem('pg', '>= 0.18', '< 2.0')
# Use Puma as the app server
gem('puma', '~> 4.3')
# Sass is an extension of CSS, adding nested rules, variables, mixins, selector inheritance, and more.
gem('sassc', '~> 2.4.0')
# Use SCSS for stylesheets
gem('sassc-rails', '~> 2.1.2')
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
gem('webpacker', '~> 4.0')
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
gem('turbolinks', '~> 5')
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem('jbuilder', '~> 2.7')
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 4.0'
# Use Active Model has_secure_password
# gem 'bcrypt', '~> 3.1.7'

gem('bootstrap-sass')
gem('cancancan', '~>3.1')
gem('chartkick')
gem('devise')
gem('money-rails', '~>1.12')
gem('newrelic_rpm')
gem('sentry-raven')

# 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)
gem('faker')

group :development, :test do
# Brakeman detects security vulnerabilities in Ruby on Rails
# applications via static analysis.
gem 'brakeman', '~> 4.9.0', require: false
# bundler-audit provides patch-level verification for Bundled apps.
gem 'bundler-audit', '~> 0.7.0', require: false
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: %i[mri mingw x64_mingw]
# ERB Linter tool.
gem 'erb_lint', '~> 0.0.35', require: false
# Automatic Ruby code style checking tool. Aims to enforce
# the community-driven Ruby Style Guide.
gem 'rubocop', '~> 0.89.1', require: false
gem 'rubocop-performance', '~> 1.7.1', require: false
gem 'rubocop-rails', '~> 2.7.1', require: false
gem 'rubocop-rspec', '~> 1.43.2', require: false
gem 'rubycritic', require: false
# Configurable tool for writing clean and consistent SCSS
gem 'scss_lint', '~> 0.59.0', require: false
# Capybara is an integration testing tool for rack based web applications.
gem 'capybara', '~> 3.33.0'
end

group :test do
# Code coverage for Ruby 1.9+ with a powerful configuration library
gem 'simplecov', '~> 0.19.0', require: false
# rspec-rails is a testing framework for Rails 3+.
gem 'rspec-rails', '~> 4.0.1'
# Making tests easy on the fingers and eyes
gem 'factory_bot_rails'
gem 'shoulda-matchers', '~> 4.4.1'
end

group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'listen', '~> 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 '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: %i[mingw mswin x64_mingw jruby])
6 changes: 3 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ GEM
msgpack (1.4.2)
multipart-post (2.1.1)
newrelic_rpm (7.0.0)
nio4r (2.5.7)
nio4r (2.5.8)
nokogiri (1.11.4)
mini_portile2 (~> 2.5.0)
racc (~> 1.4)
Expand All @@ -196,7 +196,7 @@ GEM
pg (1.2.3)
psych (3.3.2)
public_suffix (4.0.6)
puma (4.3.8)
puma (4.3.9)
nio4r (~> 2.0)
racc (1.5.2)
rack (2.2.3)
Expand Down Expand Up @@ -386,7 +386,7 @@ DEPENDENCIES
money-rails (~> 1.12)
newrelic_rpm
pg (>= 0.18, < 2.0)
puma (~> 4.1)
puma (~> 4.3)
rails (~> 6.0.3, >= 6.0.3.5)
rspec-rails (~> 4.0.1)
rubocop (~> 0.89.1)
Expand Down