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' |
| # Bundle edge Rails instead: gem 'rails', github: 'rails/rails' | ||
| 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 | ||
| gem 'puma', '~> 4.1' | ||
| # Use SCSS for stylesheets | ||
| ... | ... | @@ -31,6 +29,9 @@ gem 'bootsnap', '>= 1.4.2', require: false |
| group :development, :test do | ||
| # Call 'byebug' anywhere in the code to stop execution and get a debugger console | ||
| 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 | ||
| group :development do | ||
| ... | ... | @@ -50,5 +51,9 @@ group :test do |
| gem 'webdrivers' | ||
| end | ||
| group :production do | ||
| gem 'pg', '~> 1.2' | ||
| end | ||
| # Windows does not include zoneinfo files, so bundle the tzinfo-data gem | ||
| 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