Merge branch 'chapter-3-static-pages' into 'master'
Chapter 3 static pages See merge request !1
Showing
sample_app/.rspec
0 → 100644
| ... | @@ -5,8 +5,6 @@ ruby '2.6.6' | ... | @@ -5,8 +5,6 @@ ruby '2.6.6' |
| # Bundle edge Rails instead: gem 'rails', github: 'rails/rails' | # Bundle edge Rails instead: gem 'rails', github: 'rails/rails' | ||
| gem 'rails', '~> 6.0.3', '>= 6.0.3.2' | gem 'rails', '~> 6.0.3', '>= 6.0.3.2' | ||
| # Use sqlite3 as the database for Active Record | |||
| gem 'sqlite3', '~> 1.4' | |||
| # Use Puma as the app server | # Use Puma as the app server | ||
| gem 'puma', '~> 4.1' | gem 'puma', '~> 4.1' | ||
| # Use SCSS for stylesheets | # Use SCSS for stylesheets | ||
| ... | @@ -31,6 +29,9 @@ gem 'bootsnap', '>= 1.4.2', require: false | ... | @@ -31,6 +29,9 @@ gem 'bootsnap', '>= 1.4.2', require: false |
| group :development, :test do | group :development, :test do | ||
| # Call 'byebug' anywhere in the code to stop execution and get a debugger console | # Call 'byebug' anywhere in the code to stop execution and get a debugger console | ||
| gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] | gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] | ||
| gem 'rspec-rails', '~> 4.0.0' | |||
| # Use sqlite3 as the database for Active Record | |||
| gem 'sqlite3', '~> 1.4' | |||
| end | end | ||
| group :development do | group :development do | ||
| ... | @@ -50,5 +51,9 @@ group :test do | ... | @@ -50,5 +51,9 @@ group :test do |
| gem 'webdrivers' | gem 'webdrivers' | ||
| end | end | ||
| group :production do | |||
| gem 'pg', '~> 1.2' | |||
| end | |||
| # Windows does not include zoneinfo files, so bundle the tzinfo-data gem | # Windows does not include zoneinfo files, so bundle the tzinfo-data gem | ||
| gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] | gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] |
sample_app/spec/rails_helper.rb
0 → 100644
sample_app/spec/spec_helper.rb
0 → 100644
Please
register
or
sign in
to comment