-
- Downloads
There was an error fetching the commit references. Please try again later.
Initialized from 'Ruby on Rails' project template
Template repository: https://gitlab.com/gitlab-org/project-templates/rails Commit SHA: 54976d72b2469d7d88a8a30502e0070b9f51ee48
parents
No related branches found
No related tags found
Showing
- .browserslistrc 1 addition, 0 deletions.browserslistrc
- .gitattributes 10 additions, 0 deletions.gitattributes
- .gitignore 36 additions, 0 deletions.gitignore
- .gitlab-ci.yml 37 additions, 0 deletions.gitlab-ci.yml
- .gitpod.Dockerfile 11 additions, 0 deletions.gitpod.Dockerfile
- .gitpod.yml 18 additions, 0 deletions.gitpod.yml
- .ruby-version 1 addition, 0 deletions.ruby-version
- CONTRIBUTING.md 40 additions, 0 deletionsCONTRIBUTING.md
- Gemfile 58 additions, 0 deletionsGemfile
- Gemfile.lock 232 additions, 0 deletionsGemfile.lock
- LICENSE 21 additions, 0 deletionsLICENSE
- README.md 17 additions, 0 deletionsREADME.md
- Rakefile 6 additions, 0 deletionsRakefile
- app/assets/config/manifest.js 2 additions, 0 deletionsapp/assets/config/manifest.js
- app/assets/images/.keep 0 additions, 0 deletionsapp/assets/images/.keep
- app/assets/stylesheets/application.css 15 additions, 0 deletionsapp/assets/stylesheets/application.css
- app/assets/stylesheets/welcome.scss 3 additions, 0 deletionsapp/assets/stylesheets/welcome.scss
- app/channels/application_cable/channel.rb 4 additions, 0 deletionsapp/channels/application_cable/channel.rb
- app/channels/application_cable/connection.rb 4 additions, 0 deletionsapp/channels/application_cable/connection.rb
- app/controllers/application_controller.rb 2 additions, 0 deletionsapp/controllers/application_controller.rb
.browserslistrc
0 → 100644
.gitattributes
0 → 100644
.gitignore
0 → 100644
.gitlab-ci.yml
0 → 100644
.gitpod.Dockerfile
0 → 100644
.gitpod.yml
0 → 100644
.ruby-version
0 → 100644
CONTRIBUTING.md
0 → 100644
Gemfile
0 → 100644
source 'https://rubygems.org' | ||
git_source(:github) { |repo| "https://github.com/#{repo}.git" } | ||
ruby '3.0.4' | ||
# rexml is not included with ruby 3, has to be installed separately | ||
gem 'rexml' | ||
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails', branch: 'main' | ||
gem 'rails', '~> 6.1.4', '>= 6.1.4.7' | ||
# Use postgresql as the database for Active Record | ||
gem 'pg', '~> 1.1' | ||
# Use Puma as the app server | ||
gem 'puma', '~> 5.0' | ||
# Use SCSS for stylesheets | ||
gem 'sass-rails', '>= 6' | ||
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker | ||
gem 'webpacker', '~> 5.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' | ||
# Use Active Storage variant | ||
# gem 'image_processing', '~> 1.2' | ||
# Reduces boot times through caching; required in config/boot.rb | ||
gem 'bootsnap', '~> 1.9.4', 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] | ||
end | ||
group :development do | ||
# Access an interactive console on exception pages or by calling 'console' anywhere in the code. | ||
gem 'web-console', '>= 4.1.0' | ||
# Display performance information such as SQL time and flame graphs for each request in your browser. | ||
# Can be configured to work on production as well see: https://github.com/MiniProfiler/rack-mini-profiler/blob/master/README.md | ||
gem 'rack-mini-profiler', '~> 2.0' | ||
gem 'listen', '~> 3.3' | ||
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring | ||
gem 'spring' | ||
end | ||
group :test do | ||
# Adds support for Capybara system testing and selenium driver | ||
gem 'capybara', '>= 3.26' | ||
gem 'selenium-webdriver' | ||
# Easy installation and use of web drivers to run system tests with browsers | ||
gem 'webdrivers' | ||
end | ||
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem | ||
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] |
Gemfile.lock
0 → 100644
LICENSE
0 → 100644
README.md
0 → 100644
Rakefile
0 → 100644
app/assets/config/manifest.js
0 → 100644
app/assets/images/.keep
0 → 100644
app/assets/stylesheets/application.css
0 → 100644
app/assets/stylesheets/welcome.scss
0 → 100644
app/channels/application_cable/channel.rb
0 → 100644
app/channels/application_cable/connection.rb
0 → 100644
app/controllers/application_controller.rb
0 → 100644
Please register or sign in to comment