-
- Downloads
First Rails version!
Showing
- .gitignore 25 additions, 3 deletions.gitignore
- .rubocop.yml 12 additions, 0 deletions.rubocop.yml
- .ruby-version 1 addition, 0 deletions.ruby-version
- Gemfile 63 additions, 0 deletionsGemfile
- Gemfile.lock 311 additions, 0 deletionsGemfile.lock
- README.md 24 additions, 0 deletionsREADME.md
- Rakefile 8 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.scss 4 additions, 0 deletionsapp/assets/stylesheets/application.scss
- app/controllers/application_controller.rb 4 additions, 0 deletionsapp/controllers/application_controller.rb
- app/controllers/concerns/.keep 0 additions, 0 deletionsapp/controllers/concerns/.keep
- app/controllers/users_controller.rb 7 additions, 0 deletionsapp/controllers/users_controller.rb
- app/helpers/application_helper.rb 4 additions, 0 deletionsapp/helpers/application_helper.rb
- app/jobs/application_job.rb 10 additions, 0 deletionsapp/jobs/application_job.rb
- app/mailers/application_mailer.rb 6 additions, 0 deletionsapp/mailers/application_mailer.rb
- app/models/application_record.rb 5 additions, 0 deletionsapp/models/application_record.rb
- app/models/concerns/.keep 0 additions, 0 deletionsapp/models/concerns/.keep
- app/models/group.rb 14 additions, 0 deletionsapp/models/group.rb
- app/models/user.rb 18 additions, 0 deletionsapp/models/user.rb
.rubocop.yml
0 → 100644
.ruby-version
0 → 100644
Gemfile
0 → 100644
# frozen_string_literal: true | |||
source 'https://rubygems.org' | |||
git_source(:github) { |repo| "https://github.com/#{repo}.git" } | |||
ruby '2.5.7' | |||
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' | |||
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', '~> 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.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' | |||
gem 'haml-rails', '~> 2.0' | |||
gem 'bootstrap', '~> 4.4', '>= 4.4.1' | |||
gem 'font-awesome-sass', '~> 5.12.0' | |||
gem 'activeldap', '~> 5.2', '>= 5.2.4', :require => 'active_ldap/railtie' | |||
gem 'net-ldap', '~> 0.16.2' | |||
# Reduces boot times through caching; required in config/boot.rb | |||
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: %i[mri mingw x64_mingw] | |||
gem 'rubocop', '~> 0.79.0' | |||
end | |||
group :development do | |||
gem 'listen', '>= 3.0.5', '< 3.2' | |||
# Access an interactive console on exception pages or by calling 'console' | |||
# anywhere in the code. | |||
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 | |||
group :test do | |||
# Adds support for Capybara system testing and selenium driver | |||
gem 'capybara', '>= 2.15' | |||
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: %i[mingw mswin x64_mingw jruby] |
Gemfile.lock
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.scss
0 → 100644
app/controllers/application_controller.rb
0 → 100644
app/controllers/concerns/.keep
0 → 100644
app/controllers/users_controller.rb
0 → 100644
app/helpers/application_helper.rb
0 → 100644
app/jobs/application_job.rb
0 → 100644
app/mailers/application_mailer.rb
0 → 100644
app/models/application_record.rb
0 → 100644
app/models/concerns/.keep
0 → 100644
app/models/group.rb
0 → 100644
app/models/user.rb
0 → 100644
Please register or sign in to comment