Initial commit
parents
Showing
.dockerignore
0 → 100644
.gitignore
0 → 100644
Dockerfile
0 → 100644
Gemfile
0 → 100644
source 'https://rubygems.org' | |||
git_source(:github) do |repo_name| | |||
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/") | |||
"https://github.com/#{repo_name}.git" | |||
end | |||
gem 'rails', '~> 5.2' | |||
gem 'mysql2', '>= 0.3.18', '< 0.5' | |||
gem 'puma', '~> 3.7' | |||
gem 'sassc-rails' | |||
gem 'uglifier', '>= 1.3.0' | |||
gem 'coffee-rails', '~> 4.2' | |||
gem 'jbuilder', '~> 2.5' | |||
gem 'haml-rails' | |||
gem 'turbolinks', '~> 5' | |||
gem 'jquery-rails' | |||
gem 'bootstrap', '~> 4.4.1' | |||
gem 'font-awesome-rails' | |||
gem 'bootstrap-will_paginate' | |||
gem 'bcrypt', '~> 3.1.7' # Use ActiveModel has_secure_password | |||
gem 'devise' | |||
gem 'devise-i18n' | |||
gem 'simple_form' | |||
gem 'nested_form' | |||
gem 'will_paginate' | |||
group :development do | |||
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw], group: :development | |||
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code. | |||
gem 'web-console', '>= 3.3.0' | |||
gem 'listen', '>= 3.0.5', '< 3.2' | |||
end | |||
group :development, :test do | |||
# 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 |
Gemfile.lock
0 → 100644
README.md
0 → 100644
Rakefile
0 → 100644
app/assets/images/.keep
0 → 100644
app/jobs/application_job.rb
0 → 100644
app/models/concerns/.keep
0 → 100644
bin/bundle
0 → 100755
bin/rails
0 → 100755
bin/rake
0 → 100755
bin/setup
0 → 100755
bin/update
0 → 100755
bin/yarn
0 → 100755
config.ru
0 → 100644
config/application.rb
0 → 100644
config/boot.rb
0 → 100644
config/cable.yml
0 → 100644
config/database.yml
0 → 100644
config/environment.rb
0 → 100644
config/environments/test.rb
0 → 100644
This diff is collapsed.
config/locales/en.yml
0 → 100644
config/puma.rb
0 → 100644
config/routes.rb
0 → 100644
config/secrets.yml
0 → 100644
config/spring.rb
0 → 100644
db/seeds.rb
0 → 100644
docker-compose.yml
0 → 100644
lib/assets/.keep
0 → 100644
lib/tasks/.keep
0 → 100644
log/.keep
0 → 100644
package.json
0 → 100644
public/404.html
0 → 100644
public/422.html
0 → 100644
public/500.html
0 → 100644
public/apple-touch-icon.png
0 → 100644
public/favicon.ico
0 → 100644
public/robots.txt
0 → 100644
test/controllers/.keep
0 → 100644
test/fixtures/.keep
0 → 100644
test/fixtures/files/.keep
0 → 100644
test/helpers/.keep
0 → 100644
test/integration/.keep
0 → 100644
test/mailers/.keep
0 → 100644
test/models/.keep
0 → 100644
test/system/.keep
0 → 100644
test/test_helper.rb
0 → 100644
tmp/.keep
0 → 100644
vendor/.keep
0 → 100644
Please register or sign in to comment