From 5e0a77de390321e9ee0f374d7dc850cfc04fbd17 Mon Sep 17 00:00:00 2001 From: lunaisnotaboy Date: Wed, 22 Sep 2021 12:35:54 -0400 Subject: [PATCH] Initial Commit --- .editorconfig | 12 + .gitattributes | 7 + .gitignore | 21 + .idea/gitnub.iml | 8 + .../inspectionProfiles/profiles_settings.xml | 6 + .idea/modules.xml | 8 + .idea/vcs.xml | 6 + .idea/workspace.xml | 36 ++ .rubocop.yml | 32 + .ruby-version | 1 + Gemfile | 53 ++ Gemfile.lock | 247 ++++++++ LICENSE | 21 + README.md | 9 + Rakefile | 8 + WHY.md | 25 + app/assets/config/manifest.js | 3 + app/assets/images/logo-white.svg | 3 + app/assets/images/logo.svg | 3 + app/assets/javascripts/application.coffee | 3 + app/assets/stylesheets/application.scss | 8 + app/assets/stylesheets/base/container.scss | 8 + app/assets/stylesheets/base/reset.scss | 201 +++++++ .../stylesheets/components/buttons.scss | 58 ++ app/assets/stylesheets/mixins/gradient.scss | 5 + app/controllers/application_controller.rb | 14 + app/controllers/concerns/.keep | 0 app/controllers/site_controller.rb | 5 + app/helpers/application_helper.rb | 4 + app/helpers/landing_helper.rb | 4 + app/models/application_record.rb | 5 + app/models/concerns/.keep | 0 app/models/user.rb | 55 ++ app/views/devise/confirmations/new.html.erb | 16 + .../mailer/confirmation_instructions.html.erb | 5 + .../devise/mailer/email_changed.html.erb | 7 + .../devise/mailer/password_change.html.erb | 3 + .../reset_password_instructions.html.erb | 8 + .../mailer/unlock_instructions.html.erb | 7 + app/views/devise/passwords/edit.html.erb | 25 + app/views/devise/passwords/new.html.erb | 16 + app/views/devise/registrations/edit.html.erb | 43 ++ app/views/devise/registrations/new.html.erb | 29 + app/views/devise/sessions/new.html.erb | 22 + .../devise/shared/_error_messages.html.erb | 15 + app/views/devise/shared/_links.html.erb | 25 + app/views/devise/unlocks/new.html.erb | 16 + app/views/layouts/application.html.erb | 20 + app/views/site/index.html.erb | 3 + bin/bundle | 118 ++++ bin/rails | 6 + bin/rake | 6 + bin/setup | 35 ++ config.ru | 8 + config/application.rb | 31 + config/boot.rb | 5 + config/database.yml | 86 +++ config/environment.rb | 7 + config/environments/development.rb | 70 +++ config/environments/production.rb | 105 ++++ config/environments/test.rb | 51 ++ .../application_controller_renderer.rb | 9 + config/initializers/assets.rb | 14 + config/initializers/backtrace_silencers.rb | 10 + .../initializers/content_security_policy.rb | 30 + config/initializers/cookies_serializer.rb | 7 + config/initializers/devise.rb | 311 ++++++++++ .../initializers/filter_parameter_logging.rb | 8 + config/initializers/inflections.rb | 10 + config/initializers/mime_types.rb | 5 + config/initializers/permissions_policy.rb | 12 + config/initializers/wrap_parameters.rb | 16 + config/locales/devise.en.yml | 65 ++ config/locales/en.yml | 33 + config/puma.rb | 45 ++ config/routes.rb | 15 + .../20210919222322_devise_create_users.rb | 44 ++ ...10919222948_add_username_index_to_users.rb | 7 + db/schema.rb | 42 ++ db/seeds.rb | 8 + lib/assets/.keep | 0 lib/tasks/auto_annotate_models.rake | 61 ++ log/.keep | 0 public/404.html | 345 +++++++++++ public/422.html | 67 +++ public/500.html | 66 ++ public/apple-touch-icon-precomposed.png | 0 public/apple-touch-icon.png | 0 public/dev-favicon.ico | Bin 0 -> 6518 bytes public/favicon.ico | Bin 0 -> 6518 bytes public/robots.txt | 1 + public/windows-tile.png | Bin 0 -> 14224 bytes test/controllers/landing_controller_test.rb | 10 + test/fixtures/files/.keep | 0 test/fixtures/users.yml | 40 ++ test/helpers/.keep | 0 test/integration/.keep | 0 test/models/user_test.rb | 39 ++ test/test_helper.rb | 17 + tmp/.keep | 0 tmp/pids/.keep | 0 vendor/assets/fonts/octicons.eot | Bin 0 -> 52352 bytes vendor/assets/fonts/octicons.svg | 191 ++++++ vendor/assets/fonts/octicons.ttf | Bin 0 -> 52068 bytes vendor/assets/fonts/octicons.woff | Bin 0 -> 29768 bytes vendor/assets/stylesheets/octicons.scss | 568 ++++++++++++++++++ 106 files changed, 3763 insertions(+) create mode 100644 .editorconfig create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 .idea/gitnub.iml create mode 100644 .idea/inspectionProfiles/profiles_settings.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml create mode 100644 .idea/workspace.xml create mode 100644 .rubocop.yml create mode 100644 .ruby-version create mode 100644 Gemfile create mode 100644 Gemfile.lock create mode 100644 LICENSE create mode 100644 README.md create mode 100644 Rakefile create mode 100644 WHY.md create mode 100644 app/assets/config/manifest.js create mode 100644 app/assets/images/logo-white.svg create mode 100644 app/assets/images/logo.svg create mode 100644 app/assets/javascripts/application.coffee create mode 100644 app/assets/stylesheets/application.scss create mode 100644 app/assets/stylesheets/base/container.scss create mode 100644 app/assets/stylesheets/base/reset.scss create mode 100644 app/assets/stylesheets/components/buttons.scss create mode 100644 app/assets/stylesheets/mixins/gradient.scss create mode 100644 app/controllers/application_controller.rb create mode 100644 app/controllers/concerns/.keep create mode 100644 app/controllers/site_controller.rb create mode 100644 app/helpers/application_helper.rb create mode 100644 app/helpers/landing_helper.rb create mode 100644 app/models/application_record.rb create mode 100644 app/models/concerns/.keep create mode 100644 app/models/user.rb create mode 100644 app/views/devise/confirmations/new.html.erb create mode 100644 app/views/devise/mailer/confirmation_instructions.html.erb create mode 100644 app/views/devise/mailer/email_changed.html.erb create mode 100644 app/views/devise/mailer/password_change.html.erb create mode 100644 app/views/devise/mailer/reset_password_instructions.html.erb create mode 100644 app/views/devise/mailer/unlock_instructions.html.erb create mode 100644 app/views/devise/passwords/edit.html.erb create mode 100644 app/views/devise/passwords/new.html.erb create mode 100644 app/views/devise/registrations/edit.html.erb create mode 100644 app/views/devise/registrations/new.html.erb create mode 100644 app/views/devise/sessions/new.html.erb create mode 100644 app/views/devise/shared/_error_messages.html.erb create mode 100644 app/views/devise/shared/_links.html.erb create mode 100644 app/views/devise/unlocks/new.html.erb create mode 100644 app/views/layouts/application.html.erb create mode 100644 app/views/site/index.html.erb create mode 100755 bin/bundle create mode 100755 bin/rails create mode 100755 bin/rake create mode 100755 bin/setup create mode 100644 config.ru create mode 100644 config/application.rb create mode 100644 config/boot.rb create mode 100644 config/database.yml create mode 100644 config/environment.rb create mode 100644 config/environments/development.rb create mode 100644 config/environments/production.rb create mode 100644 config/environments/test.rb create mode 100644 config/initializers/application_controller_renderer.rb create mode 100644 config/initializers/assets.rb create mode 100644 config/initializers/backtrace_silencers.rb create mode 100644 config/initializers/content_security_policy.rb create mode 100644 config/initializers/cookies_serializer.rb create mode 100644 config/initializers/devise.rb create mode 100644 config/initializers/filter_parameter_logging.rb create mode 100644 config/initializers/inflections.rb create mode 100644 config/initializers/mime_types.rb create mode 100644 config/initializers/permissions_policy.rb create mode 100644 config/initializers/wrap_parameters.rb create mode 100644 config/locales/devise.en.yml create mode 100644 config/locales/en.yml create mode 100644 config/puma.rb create mode 100644 config/routes.rb create mode 100644 db/migrate/20210919222322_devise_create_users.rb create mode 100644 db/migrate/20210919222948_add_username_index_to_users.rb create mode 100644 db/schema.rb create mode 100644 db/seeds.rb create mode 100644 lib/assets/.keep create mode 100644 lib/tasks/auto_annotate_models.rake create mode 100644 log/.keep create mode 100644 public/404.html create mode 100644 public/422.html create mode 100644 public/500.html create mode 100644 public/apple-touch-icon-precomposed.png create mode 100644 public/apple-touch-icon.png create mode 100644 public/dev-favicon.ico create mode 100644 public/favicon.ico create mode 100644 public/robots.txt create mode 100644 public/windows-tile.png create mode 100644 test/controllers/landing_controller_test.rb create mode 100644 test/fixtures/files/.keep create mode 100644 test/fixtures/users.yml create mode 100644 test/helpers/.keep create mode 100644 test/integration/.keep create mode 100644 test/models/user_test.rb create mode 100644 test/test_helper.rb create mode 100644 tmp/.keep create mode 100644 tmp/pids/.keep create mode 100755 vendor/assets/fonts/octicons.eot create mode 100755 vendor/assets/fonts/octicons.svg create mode 100755 vendor/assets/fonts/octicons.ttf create mode 100755 vendor/assets/fonts/octicons.woff create mode 100644 vendor/assets/stylesheets/octicons.scss diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..8f5d808 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,12 @@ +# EditorConfig is awesome: https://EditorConfig.org + +# top-most EditorConfig file +root = true + +[*] +indent_style = space +indent_size = 2 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = false +insert_final_newline = true diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..31eeee0 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,7 @@ +# See https://git-scm.com/docs/gitattributes for more about git attribute files. + +# Mark the database schema as having been generated. +db/schema.rb linguist-generated + +# Mark any vendored files as having been vendored. +vendor/* linguist-vendored diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..bb13eb0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,21 @@ +# See https://help.github.com/articles/ignoring-files for more about ignoring files. +# +# If you find yourself ignoring temporary files generated by your text editor +# or operating system, you probably want to add a global ignore instead: +# git config --global core.excludesfile '~/.gitignore_global' + +# Ignore bundler config. +/.bundle +/log/* +/tmp/* +!/log/.keep +!/tmp/.keep +/tmp/pids/* +!/tmp/pids/ +!/tmp/pids/.keep +/public/assets +.byebug_history +/config/master.key +/config/credentials.yml.enc +/public/images +/aaa.css diff --git a/.idea/gitnub.iml b/.idea/gitnub.iml new file mode 100644 index 0000000..d9e6024 --- /dev/null +++ b/.idea/gitnub.iml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 0000000..105ce2d --- /dev/null +++ b/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..a670634 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..9661ac7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100644 index 0000000..9e34eb9 --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + 1631028166385 + + + + \ No newline at end of file diff --git a/.rubocop.yml b/.rubocop.yml new file mode 100644 index 0000000..bd4d349 --- /dev/null +++ b/.rubocop.yml @@ -0,0 +1,32 @@ +require: rubocop-rails + +AllCops: + NewCops: enable + +Layout/LineLength: + Exclude: + - config/initializers/devise.rb + +Metrics/AbcSize: + Exclude: + - db/migrate/*.rb + +Metrics/BlockLength: + Exclude: + - db/migrate/*.rb + - lib/tasks/**/*.rake + +Metrics/MethodLength: + Exclude: + - db/migrate/*.rb + +# I can't be assed to write documentation for these +# right now, so they're going to be disabled. + +Style/Documentation: + Exclude: + - app/controllers/**/*.rb + - app/helpers/**/*.rb + - app/models/application_record.rb + - config/application.rb + - db/migrate/*.rb diff --git a/.ruby-version b/.ruby-version new file mode 100644 index 0000000..2c9b4ef --- /dev/null +++ b/.ruby-version @@ -0,0 +1 @@ +2.7.3 diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..ae689bc --- /dev/null +++ b/Gemfile @@ -0,0 +1,53 @@ +# frozen_string_literal: true + +source 'https://rubygems.org' +git_source(:github) { |repo| "https://github.com/#{repo}.git" } + +ruby '2.7.3' + +# An Action Dispatch session store backed by an Active Record class +gem 'activerecord-session_store', '~> 2.0' +# Parse CSS and add vendor prefixes to CSS rules +gem 'autoprefixer-rails', '~> 10.3', '>= 10.3.3.0' +# bcrypt() is a sophisticated and secure hash algorithm designed by The OpenBSD project +gem 'bcrypt', '~> 3.1', '>= 3.1.16' +# CoffeeScript adapter for the Rails asset pipeline +gem 'coffee-rails', '~> 5.0' +# Flexible authentication solution for Rails with Warden +gem 'devise', '~> 4.8' +# This gem provides jQuery and the jQuery-ujs driver for your Rails 4+ application +gem 'jquery-rails', '~> 4.4' +# PG is the Ruby interface to the PostgreSQL RDBMS +gem 'pg', '~> 1.2', '>= 1.2.3' +# Puma is a simple, fast, threaded, and highly concurrent HTTP 1.1 server for Ruby +gem 'puma', '~> 5.4' +# Ruby on Rails is a full-stack web framework optimized for programmer happiness +gem 'rails', '~> 6.1', '>= 6.1.4.1' +# A Ruby client that tries to match Redis' API one-to-one +gem 'redis', '~> 4.4' +# Sass adapter for the Rails asset pipeline +gem 'sass-rails', '~> 6.0' +# Sprockets is a Rack-based asset packaging system +gem 'sprockets', '~> 4.0', '>= 4.0.2' +# Rails engine for Turbolinks 5 support +gem 'turbolinks', '~> 5.2', '>= 5.2.1' +# TZInfo::Data contains data from the IANA Time Zone database +gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby] +# Uglifier minifies JavaScript files by wrapping UglifyJS to be accessible in Ruby +gem 'uglifier', '~> 4.2' + +group :development, :test do + # Byebug is a Ruby debugger + gem 'byebug', '~> 11.1', '>= 11.1.3', platforms: %i[mri mingw x64_mingw] + # RuboCop is a Ruby code style checking and code formatting tool + gem 'rubocop', '~> 1.20' + # Automatic Rails code style checking tool + gem 'rubocop-rails', '~> 2.11', '>= 2.11.3' +end + +group :development do + # Annotates Rails/ActiveRecord Models, routes, fixtures, and others + gem 'annotate', '~> 3.1', '>= 3.1.1' + # The Listen gem listens to file modifications and notifies you about the changes + gem 'listen', '~> 3.7' +end diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 0000000..7377c66 --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,247 @@ +GEM + remote: https://rubygems.org/ + specs: + actioncable (6.1.4.1) + actionpack (= 6.1.4.1) + activesupport (= 6.1.4.1) + nio4r (~> 2.0) + websocket-driver (>= 0.6.1) + actionmailbox (6.1.4.1) + actionpack (= 6.1.4.1) + activejob (= 6.1.4.1) + activerecord (= 6.1.4.1) + activestorage (= 6.1.4.1) + activesupport (= 6.1.4.1) + mail (>= 2.7.1) + actionmailer (6.1.4.1) + actionpack (= 6.1.4.1) + actionview (= 6.1.4.1) + activejob (= 6.1.4.1) + activesupport (= 6.1.4.1) + mail (~> 2.5, >= 2.5.4) + rails-dom-testing (~> 2.0) + actionpack (6.1.4.1) + actionview (= 6.1.4.1) + activesupport (= 6.1.4.1) + rack (~> 2.0, >= 2.0.9) + rack-test (>= 0.6.3) + rails-dom-testing (~> 2.0) + rails-html-sanitizer (~> 1.0, >= 1.2.0) + actiontext (6.1.4.1) + actionpack (= 6.1.4.1) + activerecord (= 6.1.4.1) + activestorage (= 6.1.4.1) + activesupport (= 6.1.4.1) + nokogiri (>= 1.8.5) + actionview (6.1.4.1) + activesupport (= 6.1.4.1) + builder (~> 3.1) + erubi (~> 1.4) + rails-dom-testing (~> 2.0) + rails-html-sanitizer (~> 1.1, >= 1.2.0) + activejob (6.1.4.1) + activesupport (= 6.1.4.1) + globalid (>= 0.3.6) + activemodel (6.1.4.1) + activesupport (= 6.1.4.1) + activerecord (6.1.4.1) + activemodel (= 6.1.4.1) + activesupport (= 6.1.4.1) + activerecord-session_store (2.0.0) + actionpack (>= 5.2.4.1) + activerecord (>= 5.2.4.1) + multi_json (~> 1.11, >= 1.11.2) + rack (>= 2.0.8, < 3) + railties (>= 5.2.4.1) + activestorage (6.1.4.1) + actionpack (= 6.1.4.1) + activejob (= 6.1.4.1) + activerecord (= 6.1.4.1) + activesupport (= 6.1.4.1) + marcel (~> 1.0.0) + mini_mime (>= 1.1.0) + activesupport (6.1.4.1) + concurrent-ruby (~> 1.0, >= 1.0.2) + i18n (>= 1.6, < 2) + minitest (>= 5.1) + tzinfo (~> 2.0) + zeitwerk (~> 2.3) + annotate (3.1.1) + activerecord (>= 3.2, < 7.0) + rake (>= 10.4, < 14.0) + ast (2.4.2) + autoprefixer-rails (10.3.3.0) + execjs (~> 2) + bcrypt (3.1.16) + builder (3.2.4) + byebug (11.1.3) + coffee-rails (5.0.0) + coffee-script (>= 2.2.0) + railties (>= 5.2.0) + coffee-script (2.4.1) + coffee-script-source + execjs + coffee-script-source (1.12.2) + concurrent-ruby (1.1.9) + crass (1.0.6) + devise (4.8.0) + bcrypt (~> 3.0) + orm_adapter (~> 0.1) + railties (>= 4.1.0) + responders + warden (~> 1.2.3) + erubi (1.10.0) + execjs (2.8.1) + ffi (1.15.4) + globalid (0.5.2) + activesupport (>= 5.0) + i18n (1.8.10) + concurrent-ruby (~> 1.0) + jquery-rails (4.4.0) + rails-dom-testing (>= 1, < 3) + railties (>= 4.2.0) + thor (>= 0.14, < 2.0) + listen (3.7.0) + rb-fsevent (~> 0.10, >= 0.10.3) + rb-inotify (~> 0.9, >= 0.9.10) + loofah (2.12.0) + crass (~> 1.0.2) + nokogiri (>= 1.5.9) + mail (2.7.1) + mini_mime (>= 0.1.1) + marcel (1.0.1) + method_source (1.0.0) + mini_mime (1.1.1) + minitest (5.14.4) + multi_json (1.15.0) + nio4r (2.5.8) + nokogiri (1.12.4-x86_64-linux) + racc (~> 1.4) + orm_adapter (0.5.0) + parallel (1.20.1) + parser (3.0.2.0) + ast (~> 2.4.1) + pg (1.2.3) + puma (5.4.0) + nio4r (~> 2.0) + racc (1.5.2) + rack (2.2.3) + rack-test (1.1.0) + rack (>= 1.0, < 3) + rails (6.1.4.1) + actioncable (= 6.1.4.1) + actionmailbox (= 6.1.4.1) + actionmailer (= 6.1.4.1) + actionpack (= 6.1.4.1) + actiontext (= 6.1.4.1) + actionview (= 6.1.4.1) + activejob (= 6.1.4.1) + activemodel (= 6.1.4.1) + activerecord (= 6.1.4.1) + activestorage (= 6.1.4.1) + activesupport (= 6.1.4.1) + bundler (>= 1.15.0) + railties (= 6.1.4.1) + sprockets-rails (>= 2.0.0) + rails-dom-testing (2.0.3) + activesupport (>= 4.2.0) + nokogiri (>= 1.6) + rails-html-sanitizer (1.4.2) + loofah (~> 2.3) + railties (6.1.4.1) + actionpack (= 6.1.4.1) + activesupport (= 6.1.4.1) + method_source + rake (>= 0.13) + thor (~> 1.0) + rainbow (3.0.0) + rake (13.0.6) + rb-fsevent (0.11.0) + rb-inotify (0.10.1) + ffi (~> 1.0) + redis (4.4.0) + regexp_parser (2.1.1) + responders (3.0.1) + actionpack (>= 5.0) + railties (>= 5.0) + rexml (3.2.5) + rubocop (1.20.0) + parallel (~> 1.10) + parser (>= 3.0.0.0) + rainbow (>= 2.2.2, < 4.0) + regexp_parser (>= 1.8, < 3.0) + rexml + rubocop-ast (>= 1.9.1, < 2.0) + ruby-progressbar (~> 1.7) + unicode-display_width (>= 1.4.0, < 3.0) + rubocop-ast (1.11.0) + parser (>= 3.0.1.1) + rubocop-rails (2.11.3) + activesupport (>= 4.2.0) + rack (>= 1.1) + rubocop (>= 1.7.0, < 2.0) + ruby-progressbar (1.11.0) + sass-rails (6.0.0) + sassc-rails (~> 2.1, >= 2.1.1) + sassc (2.4.0) + ffi (~> 1.9) + sassc-rails (2.1.2) + railties (>= 4.0.0) + sassc (>= 2.0) + sprockets (> 3.0) + sprockets-rails + tilt + sprockets (4.0.2) + concurrent-ruby (~> 1.0) + rack (> 1, < 3) + sprockets-rails (3.2.2) + actionpack (>= 4.0) + activesupport (>= 4.0) + sprockets (>= 3.0.0) + thor (1.1.0) + tilt (2.0.10) + turbolinks (5.2.1) + turbolinks-source (~> 5.2) + turbolinks-source (5.2.0) + tzinfo (2.0.4) + concurrent-ruby (~> 1.0) + uglifier (4.2.0) + execjs (>= 0.3.0, < 3) + unicode-display_width (2.0.0) + warden (1.2.9) + rack (>= 2.0.9) + websocket-driver (0.7.5) + websocket-extensions (>= 0.1.0) + websocket-extensions (0.1.5) + zeitwerk (2.4.2) + +PLATFORMS + x86_64-linux + +DEPENDENCIES + activerecord-session_store (~> 2.0) + annotate (~> 3.1, >= 3.1.1) + autoprefixer-rails (~> 10.3, >= 10.3.3.0) + bcrypt (~> 3.1, >= 3.1.16) + byebug (~> 11.1, >= 11.1.3) + coffee-rails (~> 5.0) + devise (~> 4.8) + jquery-rails (~> 4.4) + listen (~> 3.7) + pg (~> 1.2, >= 1.2.3) + puma (~> 5.4) + rails (~> 6.1, >= 6.1.4.1) + redis (~> 4.4) + rubocop (~> 1.20) + rubocop-rails (~> 2.11, >= 2.11.3) + sass-rails (~> 6.0) + sprockets (~> 4.0, >= 4.0.2) + turbolinks (~> 5.2, >= 5.2.1) + tzinfo-data + uglifier (~> 4.2) + +RUBY VERSION + ruby 2.7.3p183 + +BUNDLED WITH + 2.2.26 diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..cbcdf53 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +The MIT License + +Copyright (c) 2021 mint.lgbt + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..e52d7cc --- /dev/null +++ b/README.md @@ -0,0 +1,9 @@ +
+ + +

GitHub, but 2010

+ + GitHub + GitHub Repo stars + GitHub code size in bytes +
diff --git a/Rakefile b/Rakefile new file mode 100644 index 0000000..488c551 --- /dev/null +++ b/Rakefile @@ -0,0 +1,8 @@ +# frozen_string_literal: true + +# Add your own tasks in files placed in lib/tasks ending in .rake, +# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake. + +require_relative 'config/application' + +Rails.application.load_tasks diff --git a/WHY.md b/WHY.md new file mode 100644 index 0000000..f409d1c --- /dev/null +++ b/WHY.md @@ -0,0 +1,25 @@ +## Why? + +When I first brought the idea for GitNub to mint, she responded with "Why?" I'll be honest, I really did not know the answer to that question back then. But now, I'll try and explain it. + +### GitHub Used to be Good + +Back when GitHub was first introduced, it didn't rely on the fancy JavaScript techniques popular at the time. All of it was rendered server-side, and there was little DOM manipulation. It was simple, and it didn't place any unnecessary burdens on the browser. + +### GitHub also looks good, especially back in the day + +Have you even _seen_ GitHub back in 2010? It was _beautiful_. + +
+ +
+ +All those gradient buttons and menus, no client-side rendering or manipulation need. It was great. + +I missed that GitHub. So, I wanted to go back to it. I wanted to have my _own_ GitHub that I could use on my own servers. + +And voila, GitNub was born. + +
+ +
diff --git a/app/assets/config/manifest.js b/app/assets/config/manifest.js new file mode 100644 index 0000000..b16e53d --- /dev/null +++ b/app/assets/config/manifest.js @@ -0,0 +1,3 @@ +//= link_tree ../images +//= link_directory ../javascripts .js +//= link_directory ../stylesheets .css diff --git a/app/assets/images/logo-white.svg b/app/assets/images/logo-white.svg new file mode 100644 index 0000000..e19d39c --- /dev/null +++ b/app/assets/images/logo-white.svg @@ -0,0 +1,3 @@ + + + diff --git a/app/assets/images/logo.svg b/app/assets/images/logo.svg new file mode 100644 index 0000000..387beec --- /dev/null +++ b/app/assets/images/logo.svg @@ -0,0 +1,3 @@ + + + diff --git a/app/assets/javascripts/application.coffee b/app/assets/javascripts/application.coffee new file mode 100644 index 0000000..75782bb --- /dev/null +++ b/app/assets/javascripts/application.coffee @@ -0,0 +1,3 @@ +#= require rails-ujs +#= require turbolinks +#= require jquery diff --git a/app/assets/stylesheets/application.scss b/app/assets/stylesheets/application.scss new file mode 100644 index 0000000..1dcec71 --- /dev/null +++ b/app/assets/stylesheets/application.scss @@ -0,0 +1,8 @@ +// The main stylesheet + +// Reset styles +@import "base/reset"; +@import "base/container"; + +// Import components +@import "components/buttons"; diff --git a/app/assets/stylesheets/base/container.scss b/app/assets/stylesheets/base/container.scss new file mode 100644 index 0000000..38fc595 --- /dev/null +++ b/app/assets/stylesheets/base/container.scss @@ -0,0 +1,8 @@ +.container { + margin: 0 auto; + width: 920px; +} + +.wider .container { + width: 960px; +} diff --git a/app/assets/stylesheets/base/reset.scss b/app/assets/stylesheets/base/reset.scss new file mode 100644 index 0000000..874b8f9 --- /dev/null +++ b/app/assets/stylesheets/base/reset.scss @@ -0,0 +1,201 @@ +html, +body, +div, +span, +applet, +object, +iframe, +h1, +h2, +h3, +h4, +h5, +h6, +p, +blockquote, +pre, +a, +abbr, +acronym, +address, +big, +cite, +code, +del, +dfn, +em, +img, +ins, +kbd, +q, +s, +samp, +small, +strike, +strong, +sub, +sup, +tt, +var, +b, +u, +i, +center, +dl, +dt, +dd, +ol, +ul, +li, +fieldset, +form, +label, +legend, +table, +caption, +tbody, +tfoot, +thead, +tr, +th, +td, +article, +aside, +canvas, +details, +embed, +figure, +figcaption, +footer, +header, +hgroup, +menu, +nav, +output, +ruby, +section, +summary, +time, +mark, +audio, +video { + margin: 0; + padding: 0; + border: 0; +} + +input, +button, +textarea { + margin: 0; + padding: 0; + font-size: 100%; + font-family: inherit; +} + +button { + box-sizing: content-box; +} + +html, +body { + height: 100%; + min-width: 960px; +} + +blockquote, +q { + quotes: none; +} + +blockquote:before, +blockquote:after, +q:before, +q:after { + content: ""; + content: none; +} + +table { + border-collapse: collapse; + border-spacing: 0; + font-size: 100%; + font: inherit; +} + +html { + overflow-y: scroll; +} + +body { + background-color: #fff; + color: #333; + font: 13px Helvetica, Arial, freesans, clean, sans-serif; + line-height: 1.4; +} + +article, +aside, +header, +footer, +nav, +section, +figure, +figcaption, +hgroup, +progress, +canvas { + display: block; +} + +h1, +h2, +h3, +h4, +h5, +h6 { + font-weight: bold; +} + +strong, +b { + font-weight: bold; +} + +em, +i { + font-style: italic; +} + +p { + margin: 1em 0; +} + +pre, +code, +tt { + font-family: "Bitstream Vera Sans Mono", "Courier", monospace; + font-size: 12px; +} + +small { + font-size: 11px; + font-weight: 200; +} + +img { + border: 0; +} + +abbr { + border-bottom: none; +} + +a { + color: #4183c4; + text-decoration: none; +} + +a:hover { + text-decoration: underline; +} diff --git a/app/assets/stylesheets/components/buttons.scss b/app/assets/stylesheets/components/buttons.scss new file mode 100644 index 0000000..4ec60ad --- /dev/null +++ b/app/assets/stylesheets/components/buttons.scss @@ -0,0 +1,58 @@ +@import "mixins/gradient"; + +// @group buttons + +.btn { + @include gradient(#f5f5f5, #e5e5e5); + border: 1px solid #ddd; + border-bottom-color: #bbb; + border-radius: 3px; + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); + color: #666; + cursor: pointer; + display: inline-block; + font-family: Helvetica, Arial, freesans, clean, sans-serif; + font-size: 12px; + font-weight: bold; + line-height: normal; + padding: 8px 15px; + position: relative; + text-shadow: 0 1px rgba(255, 255, 255, 0.9); + user-select: none; +} + +.btn:hover { + @include gradient(#f0f7fa, #d8eaf2); + border-bottom-color: #97c7dd; + border-color: #cde3ee; + color: #337797; + text-decoration: none; +} + +.btn-primary { + @include gradient(#8add6d, #60b044); + border-bottom-color: #509338; + border-color: #74bb5a; + box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2); + color: #fff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4); +} + +.btn-primary:hover { + @include gradient(#69d344, #4c8b36); + border-color: #4a993e; + color: #fff; +} + +.btn-danger { + color: #900; +} + +.btn-danger:hover { + @include gradient(#dc5f59, #b33630); + border-bottom-color: #cd504a; + color: #fff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3); +} + +// @end diff --git a/app/assets/stylesheets/mixins/gradient.scss b/app/assets/stylesheets/mixins/gradient.scss new file mode 100644 index 0000000..b66801c --- /dev/null +++ b/app/assets/stylesheets/mixins/gradient.scss @@ -0,0 +1,5 @@ +@mixin gradient($start: #e5e5e5, $end: #f5f5f5) { + background-color: $end; + background-image: linear-gradient($start, $end); + background-repeat: repeat-x; +} diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb new file mode 100644 index 0000000..f3a70b4 --- /dev/null +++ b/app/controllers/application_controller.rb @@ -0,0 +1,14 @@ +# frozen_string_literal: true + +class ApplicationController < ActionController::Base + before_action :configure_permitted_parameters, if: :devise_controller? + + protected + + def configure_permitted_parameters + added_attrs = %i[username email password password_confirmation remember_me] + devise_parameter_sanitizer.permit :sign_up, keys: added_attrs + devise_parameter_sanitizer.permit :sign_in, keys: %i[login password] + devise_parameter_sanitizer.permit :account_update, keys: added_attrs + end +end diff --git a/app/controllers/concerns/.keep b/app/controllers/concerns/.keep new file mode 100644 index 0000000..e69de29 diff --git a/app/controllers/site_controller.rb b/app/controllers/site_controller.rb new file mode 100644 index 0000000..2ec651e --- /dev/null +++ b/app/controllers/site_controller.rb @@ -0,0 +1,5 @@ +# frozen_string_literal: true + +class SiteController < ApplicationController + def index; end +end diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb new file mode 100644 index 0000000..15b06f0 --- /dev/null +++ b/app/helpers/application_helper.rb @@ -0,0 +1,4 @@ +# frozen_string_literal: true + +module ApplicationHelper +end diff --git a/app/helpers/landing_helper.rb b/app/helpers/landing_helper.rb new file mode 100644 index 0000000..d6b1ae9 --- /dev/null +++ b/app/helpers/landing_helper.rb @@ -0,0 +1,4 @@ +# frozen_string_literal: true + +module LandingHelper +end diff --git a/app/models/application_record.rb b/app/models/application_record.rb new file mode 100644 index 0000000..71fbba5 --- /dev/null +++ b/app/models/application_record.rb @@ -0,0 +1,5 @@ +# frozen_string_literal: true + +class ApplicationRecord < ActiveRecord::Base + self.abstract_class = true +end diff --git a/app/models/concerns/.keep b/app/models/concerns/.keep new file mode 100644 index 0000000..e69de29 diff --git a/app/models/user.rb b/app/models/user.rb new file mode 100644 index 0000000..52f8482 --- /dev/null +++ b/app/models/user.rb @@ -0,0 +1,55 @@ +# frozen_string_literal: true + +# == Schema Information +# +# Table name: users +# +# id :bigint not null, primary key +# confirmation_sent_at :datetime +# confirmation_token :string +# confirmed_at :datetime +# current_sign_in_at :datetime +# current_sign_in_ip :string +# email :string default(""), not null +# encrypted_password :string default(""), not null +# last_sign_in_at :datetime +# last_sign_in_ip :string +# remember_created_at :datetime +# reset_password_sent_at :datetime +# reset_password_token :string +# sign_in_count :integer default(0), not null +# unconfirmed_email :string +# username :string default(""), not null +# created_at :datetime not null +# updated_at :datetime not null +# +# Indexes +# +# index_users_on_confirmation_token (confirmation_token) UNIQUE +# index_users_on_email (email) UNIQUE +# index_users_on_reset_password_token (reset_password_token) UNIQUE +# index_users_on_username (username) UNIQUE +# +class User < ApplicationRecord + # Include default devise modules. Others available are: + # :confirmable, :lockable, :timeoutable, :trackable and :omniauthable + devise :database_authenticatable, :registerable, + :recoverable, :rememberable, :validatable, + :confirmable, :trackable + + attr_writer :login + + def login + @login || username || email + end + + def self.find_for_database_authentication(warden_conditions) + conditions = warden_conditions.dup + if login == conditions.delete(:login) + where(conditions.to_h).where(['lower(username) = :value OR lower(email) = :value', + { value: login.downcase }]).first + elsif conditions.key?(:username) || conditions.key?(:email) + where(conditions.to_h).first + end + end +end diff --git a/app/views/devise/confirmations/new.html.erb b/app/views/devise/confirmations/new.html.erb new file mode 100644 index 0000000..b12dd0c --- /dev/null +++ b/app/views/devise/confirmations/new.html.erb @@ -0,0 +1,16 @@ +

Resend confirmation instructions

+ +<%= form_for(resource, as: resource_name, url: confirmation_path(resource_name), html: { method: :post }) do |f| %> + <%= render "devise/shared/error_messages", resource: resource %> + +
+ <%= f.label :email %>
+ <%= f.email_field :email, autofocus: true, autocomplete: "email", value: (resource.pending_reconfirmation? ? resource.unconfirmed_email : resource.email) %> +
+ +
+ <%= f.submit "Resend confirmation instructions" %> +
+<% end %> + +<%= render "devise/shared/links" %> diff --git a/app/views/devise/mailer/confirmation_instructions.html.erb b/app/views/devise/mailer/confirmation_instructions.html.erb new file mode 100644 index 0000000..dc55f64 --- /dev/null +++ b/app/views/devise/mailer/confirmation_instructions.html.erb @@ -0,0 +1,5 @@ +

Welcome <%= @email %>!

+ +

You can confirm your account email through the link below:

+ +

<%= link_to 'Confirm my account', confirmation_url(@resource, confirmation_token: @token) %>

diff --git a/app/views/devise/mailer/email_changed.html.erb b/app/views/devise/mailer/email_changed.html.erb new file mode 100644 index 0000000..32f4ba8 --- /dev/null +++ b/app/views/devise/mailer/email_changed.html.erb @@ -0,0 +1,7 @@ +

Hello <%= @email %>!

+ +<% if @resource.try(:unconfirmed_email?) %> +

We're contacting you to notify you that your email is being changed to <%= @resource.unconfirmed_email %>.

+<% else %> +

We're contacting you to notify you that your email has been changed to <%= @resource.email %>.

+<% end %> diff --git a/app/views/devise/mailer/password_change.html.erb b/app/views/devise/mailer/password_change.html.erb new file mode 100644 index 0000000..b41daf4 --- /dev/null +++ b/app/views/devise/mailer/password_change.html.erb @@ -0,0 +1,3 @@ +

Hello <%= @resource.email %>!

+ +

We're contacting you to notify you that your password has been changed.

diff --git a/app/views/devise/mailer/reset_password_instructions.html.erb b/app/views/devise/mailer/reset_password_instructions.html.erb new file mode 100644 index 0000000..f667dc1 --- /dev/null +++ b/app/views/devise/mailer/reset_password_instructions.html.erb @@ -0,0 +1,8 @@ +

Hello <%= @resource.email %>!

+ +

Someone has requested a link to change your password. You can do this through the link below.

+ +

<%= link_to 'Change my password', edit_password_url(@resource, reset_password_token: @token) %>

+ +

If you didn't request this, please ignore this email.

+

Your password won't change until you access the link above and create a new one.

diff --git a/app/views/devise/mailer/unlock_instructions.html.erb b/app/views/devise/mailer/unlock_instructions.html.erb new file mode 100644 index 0000000..41e148b --- /dev/null +++ b/app/views/devise/mailer/unlock_instructions.html.erb @@ -0,0 +1,7 @@ +

Hello <%= @resource.email %>!

+ +

Your account has been locked due to an excessive number of unsuccessful sign in attempts.

+ +

Click the link below to unlock your account:

+ +

<%= link_to 'Unlock my account', unlock_url(@resource, unlock_token: @token) %>

diff --git a/app/views/devise/passwords/edit.html.erb b/app/views/devise/passwords/edit.html.erb new file mode 100644 index 0000000..5fbb9ff --- /dev/null +++ b/app/views/devise/passwords/edit.html.erb @@ -0,0 +1,25 @@ +

Change your password

+ +<%= form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :put }) do |f| %> + <%= render "devise/shared/error_messages", resource: resource %> + <%= f.hidden_field :reset_password_token %> + +
+ <%= f.label :password, "New password" %>
+ <% if @minimum_password_length %> + (<%= @minimum_password_length %> characters minimum)
+ <% end %> + <%= f.password_field :password, autofocus: true, autocomplete: "new-password" %> +
+ +
+ <%= f.label :password_confirmation, "Confirm new password" %>
+ <%= f.password_field :password_confirmation, autocomplete: "new-password" %> +
+ +
+ <%= f.submit "Change my password" %> +
+<% end %> + +<%= render "devise/shared/links" %> diff --git a/app/views/devise/passwords/new.html.erb b/app/views/devise/passwords/new.html.erb new file mode 100644 index 0000000..9b486b8 --- /dev/null +++ b/app/views/devise/passwords/new.html.erb @@ -0,0 +1,16 @@ +

Forgot your password?

+ +<%= form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :post }) do |f| %> + <%= render "devise/shared/error_messages", resource: resource %> + +
+ <%= f.label :email %>
+ <%= f.email_field :email, autofocus: true, autocomplete: "email" %> +
+ +
+ <%= f.submit "Send me reset password instructions" %> +
+<% end %> + +<%= render "devise/shared/links" %> diff --git a/app/views/devise/registrations/edit.html.erb b/app/views/devise/registrations/edit.html.erb new file mode 100644 index 0000000..38d95b8 --- /dev/null +++ b/app/views/devise/registrations/edit.html.erb @@ -0,0 +1,43 @@ +

Edit <%= resource_name.to_s.humanize %>

+ +<%= form_for(resource, as: resource_name, url: registration_path(resource_name), html: { method: :put }) do |f| %> + <%= render "devise/shared/error_messages", resource: resource %> + +
+ <%= f.label :email %>
+ <%= f.email_field :email, autofocus: true, autocomplete: "email" %> +
+ + <% if devise_mapping.confirmable? && resource.pending_reconfirmation? %> +
Currently waiting confirmation for: <%= resource.unconfirmed_email %>
+ <% end %> + +
+ <%= f.label :password %> (leave blank if you don't want to change it)
+ <%= f.password_field :password, autocomplete: "new-password" %> + <% if @minimum_password_length %> +
+ <%= @minimum_password_length %> characters minimum + <% end %> +
+ +
+ <%= f.label :password_confirmation %>
+ <%= f.password_field :password_confirmation, autocomplete: "new-password" %> +
+ +
+ <%= f.label :current_password %> (we need your current password to confirm your changes)
+ <%= f.password_field :current_password, autocomplete: "current-password" %> +
+ +
+ <%= f.submit "Update" %> +
+<% end %> + +

Cancel my account

+ +

Unhappy? <%= button_to "Cancel my account", registration_path(resource_name), data: { confirm: "Are you sure?" }, method: :delete %>

+ +<%= link_to "Back", :back %> diff --git a/app/views/devise/registrations/new.html.erb b/app/views/devise/registrations/new.html.erb new file mode 100644 index 0000000..d655b66 --- /dev/null +++ b/app/views/devise/registrations/new.html.erb @@ -0,0 +1,29 @@ +

Sign up

+ +<%= form_for(resource, as: resource_name, url: registration_path(resource_name)) do |f| %> + <%= render "devise/shared/error_messages", resource: resource %> + +
+ <%= f.label :email %>
+ <%= f.email_field :email, autofocus: true, autocomplete: "email" %> +
+ +
+ <%= f.label :password %> + <% if @minimum_password_length %> + (<%= @minimum_password_length %> characters minimum) + <% end %>
+ <%= f.password_field :password, autocomplete: "new-password" %> +
+ +
+ <%= f.label :password_confirmation %>
+ <%= f.password_field :password_confirmation, autocomplete: "new-password" %> +
+ +
+ <%= f.submit "Sign up" %> +
+<% end %> + +<%= render "devise/shared/links" %> diff --git a/app/views/devise/sessions/new.html.erb b/app/views/devise/sessions/new.html.erb new file mode 100644 index 0000000..d7664a0 --- /dev/null +++ b/app/views/devise/sessions/new.html.erb @@ -0,0 +1,22 @@ +
+ <%= form_for(resource, as: resource_name, url: session_path(resource_name)) do |f| %> +
+

Log in to GitNub

+
+
+ + <% opts = { class: 'input-block', id: 'login_field', tabindex: 1, autocapitalize: 'off', autofocus: true } %> + <%= f.text_field :login, opts %> + + + <% opts = { class: 'input-block', tabindex: 2, autofocus: true } %> + <%= f.password_field :password, opts %> + + <%= f.submit 'Sign in', class: 'button', tabindex: 3 %> +
+ <% end %> +
diff --git a/app/views/devise/shared/_error_messages.html.erb b/app/views/devise/shared/_error_messages.html.erb new file mode 100644 index 0000000..ba7ab88 --- /dev/null +++ b/app/views/devise/shared/_error_messages.html.erb @@ -0,0 +1,15 @@ +<% if resource.errors.any? %> +
+

+ <%= I18n.t("errors.messages.not_saved", + count: resource.errors.count, + resource: resource.class.model_name.human.downcase) + %> +

+ +
+<% end %> diff --git a/app/views/devise/shared/_links.html.erb b/app/views/devise/shared/_links.html.erb new file mode 100644 index 0000000..96a9412 --- /dev/null +++ b/app/views/devise/shared/_links.html.erb @@ -0,0 +1,25 @@ +<%- if controller_name != 'sessions' %> + <%= link_to "Log in", new_session_path(resource_name) %>
+<% end %> + +<%- if devise_mapping.registerable? && controller_name != 'registrations' %> + <%= link_to "Sign up", new_registration_path(resource_name) %>
+<% end %> + +<%- if devise_mapping.recoverable? && controller_name != 'passwords' && controller_name != 'registrations' %> + <%= link_to "Forgot your password?", new_password_path(resource_name) %>
+<% end %> + +<%- if devise_mapping.confirmable? && controller_name != 'confirmations' %> + <%= link_to "Didn't receive confirmation instructions?", new_confirmation_path(resource_name) %>
+<% end %> + +<%- if devise_mapping.lockable? && resource_class.unlock_strategy_enabled?(:email) && controller_name != 'unlocks' %> + <%= link_to "Didn't receive unlock instructions?", new_unlock_path(resource_name) %>
+<% end %> + +<%- if devise_mapping.omniauthable? %> + <%- resource_class.omniauth_providers.each do |provider| %> + <%= link_to "Sign in with #{OmniAuth::Utils.camelize(provider)}", omniauth_authorize_path(resource_name, provider), method: :post %>
+ <% end %> +<% end %> diff --git a/app/views/devise/unlocks/new.html.erb b/app/views/devise/unlocks/new.html.erb new file mode 100644 index 0000000..ffc34de --- /dev/null +++ b/app/views/devise/unlocks/new.html.erb @@ -0,0 +1,16 @@ +

Resend unlock instructions

+ +<%= form_for(resource, as: resource_name, url: unlock_path(resource_name), html: { method: :post }) do |f| %> + <%= render "devise/shared/error_messages", resource: resource %> + +
+ <%= f.label :email %>
+ <%= f.email_field :email, autofocus: true, autocomplete: "email" %> +
+ +
+ <%= f.submit "Resend unlock instructions" %> +
+<% end %> + +<%= render "devise/shared/links" %> diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb new file mode 100644 index 0000000..45c2a01 --- /dev/null +++ b/app/views/layouts/application.html.erb @@ -0,0 +1,20 @@ + + + + + + + + <%= csrf_meta_tags %> + <%= csp_meta_tag %> + + GitNub + + <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload', integrity: true %> + <%= javascript_include_tag 'application', defer: true, 'data-turbolinks-track': 'reload', integrity: true %> + + + + <%= yield %> + + diff --git a/app/views/site/index.html.erb b/app/views/site/index.html.erb new file mode 100644 index 0000000..a5b88d5 --- /dev/null +++ b/app/views/site/index.html.erb @@ -0,0 +1,3 @@ +

hi

+ +Home diff --git a/bin/bundle b/bin/bundle new file mode 100755 index 0000000..a849568 --- /dev/null +++ b/bin/bundle @@ -0,0 +1,118 @@ +#!/usr/bin/env ruby +# frozen_string_literal: true + +# +# This file was generated by Bundler. +# +# The application 'bundle' is installed as part of a gem, and +# this file is here to facilitate running it. +# + +require 'rubygems' + +m = Module.new do + module_function + + def invoked_as_script? + File.expand_path($PROGRAM_NAME) == File.expand_path(__FILE__) + end + + def env_var_version + ENV['BUNDLER_VERSION'] + end + + def cli_arg_version + return unless invoked_as_script? # don't want to hijack other binstubs + return unless 'update'.start_with?(ARGV.first || ' ') # must be running `bundle update` + + bundler_version = nil + update_index = nil + ARGV.each_with_index do |a, i| + bundler_version = a if update_index && update_index.succ == i && a =~ Gem::Version::ANCHORED_VERSION_PATTERN + next unless a =~ /\A--bundler(?:[= ](#{Gem::Version::VERSION_PATTERN}))?\z/ + + bundler_version = Regexp.last_match(1) + update_index = i + end + bundler_version + end + + def gemfile + gemfile = ENV['BUNDLE_GEMFILE'] + return gemfile if gemfile && !gemfile.empty? + + File.expand_path('../Gemfile', __dir__) + end + + def lockfile + lockfile = + case File.basename(gemfile) + when 'gems.rb' then gemfile.sub(/\.rb$/, gemfile) + else "#{gemfile}.lock" + end + File.expand_path(lockfile) + end + + def lockfile_version + return unless File.file?(lockfile) + + lockfile_contents = File.read(lockfile) + return unless lockfile_contents =~ /\n\nBUNDLED WITH\n\s{2,}(#{Gem::Version::VERSION_PATTERN})\n/ + + Regexp.last_match(1) + end + + def bundler_requirement + @bundler_requirement ||= + env_var_version || cli_arg_version || + bundler_requirement_for(lockfile_version) + end + + def bundler_requirement_for(version) + return "#{Gem::Requirement.default}.a" unless version + + bundler_gem_version = Gem::Version.new(version) + + requirement = bundler_gem_version.approximate_recommendation + + return requirement unless Gem::Version.new(Gem::VERSION) < Gem::Version.new('2.7.0') + + requirement += '.a' if bundler_gem_version.prerelease? + + requirement + end + + def load_bundler! + ENV['BUNDLE_GEMFILE'] ||= gemfile + + activate_bundler + end + + def activate_bundler + gem_error = activation_error_handling do + gem 'bundler', bundler_requirement + end + return if gem_error.nil? + + require_error = activation_error_handling do + require 'bundler/version' + end + if require_error.nil? && Gem::Requirement.new(bundler_requirement).satisfied_by?(Gem::Version.new(Bundler::VERSION)) + return + end + + warn "Activating bundler (#{bundler_requirement}) failed:\n#{gem_error.message}\n\nTo install the version of bundler this project requires, run `gem install bundler -v '#{bundler_requirement}'`" + exit 42 + end + + def activation_error_handling + yield + nil + rescue StandardError, LoadError => e + e + end +end + +m.load_bundler! + +load Gem.bin_path('bundler', 'bundle') if m.invoked_as_script? diff --git a/bin/rails b/bin/rails new file mode 100755 index 0000000..a31728a --- /dev/null +++ b/bin/rails @@ -0,0 +1,6 @@ +#!/usr/bin/env ruby +# frozen_string_literal: true + +APP_PATH = File.expand_path('../config/application', __dir__) +require_relative '../config/boot' +require 'rails/commands' diff --git a/bin/rake b/bin/rake new file mode 100755 index 0000000..c199955 --- /dev/null +++ b/bin/rake @@ -0,0 +1,6 @@ +#!/usr/bin/env ruby +# frozen_string_literal: true + +require_relative '../config/boot' +require 'rake' +Rake.application.run diff --git a/bin/setup b/bin/setup new file mode 100755 index 0000000..234da41 --- /dev/null +++ b/bin/setup @@ -0,0 +1,35 @@ +#!/usr/bin/env ruby +# frozen_string_literal: true + +require 'fileutils' + +# path to your application root. +APP_ROOT = File.expand_path('..', __dir__) + +def system!(*args) + system(*args) || abort("\n== Command #{args} failed ==") +end + +FileUtils.chdir APP_ROOT do + # This script is a way to set up or update your development environment automatically. + # This script is idempotent, so that you can run it at any time and get an expectable outcome. + # Add necessary setup steps to this file. + + puts '== Installing dependencies ==' + system! 'gem install bundler --conservative' + system('bundle check') || system!('bundle install') + + # puts "\n== Copying sample files ==" + # unless File.exist?('config/database.yml') + # FileUtils.cp 'config/database.yml.sample', 'config/database.yml' + # end + + puts "\n== Preparing database ==" + system! 'bin/rails db:prepare' + + puts "\n== Removing old logs and tempfiles ==" + system! 'bin/rails log:clear tmp:clear' + + puts "\n== Restarting application server ==" + system! 'bin/rails restart' +end diff --git a/config.ru b/config.ru new file mode 100644 index 0000000..6dc8321 --- /dev/null +++ b/config.ru @@ -0,0 +1,8 @@ +# frozen_string_literal: true + +# This file is used by Rack-based servers to start the application. + +require_relative 'config/environment' + +run Rails.application +Rails.application.load_server diff --git a/config/application.rb b/config/application.rb new file mode 100644 index 0000000..e787bf2 --- /dev/null +++ b/config/application.rb @@ -0,0 +1,31 @@ +# frozen_string_literal: true + +require_relative 'boot' + +require 'rails' +require 'active_model/railtie' +require 'active_record/railtie' +require 'action_controller/railtie' +require 'action_mailer/railtie' +require 'action_view/railtie' +require 'sprockets/railtie' +require 'rails/test_unit/railtie' + +# Require the gems listed in Gemfile, including any gems +# you've limited to :test, :development, or :production. +Bundler.require(*Rails.groups) + +module GitNub + class Application < Rails::Application + # Initialize configuration defaults for originally generated Rails version. + config.load_defaults 6.1 + + # Configuration for the application, engines, and railties goes here. + # + # These settings can be overridden in specific environments using the files + # in config/environments, which are processed later. + + # Don't generate system test files. + config.generators.system_tests = nil + end +end diff --git a/config/boot.rb b/config/boot.rb new file mode 100644 index 0000000..30e594e --- /dev/null +++ b/config/boot.rb @@ -0,0 +1,5 @@ +# frozen_string_literal: true + +ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__) + +require 'bundler/setup' # Set up gems listed in the Gemfile. diff --git a/config/database.yml b/config/database.yml new file mode 100644 index 0000000..9a8f70a --- /dev/null +++ b/config/database.yml @@ -0,0 +1,86 @@ +# PostgreSQL. Versions 9.3 and up are supported. +# +# Install the pg driver: +# gem install pg +# On macOS with Homebrew: +# gem install pg -- --with-pg-config=/usr/local/bin/pg_config +# On macOS with MacPorts: +# gem install pg -- --with-pg-config=/opt/local/lib/postgresql84/bin/pg_config +# On Windows: +# gem install pg +# Choose the win32 build. +# Install PostgreSQL and put its /bin directory on your path. +# +# Configure Using Gemfile +# gem 'pg' +# +default: &default + adapter: postgresql + encoding: unicode + # For details on connection pooling, see Rails configuration guide + # https://guides.rubyonrails.org/configuring.html#database-pooling + pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %> + +development: + <<: *default + database: gitnub_development + + # The specified database role being used to connect to postgres. + # To create additional roles in postgres see `$ createuser --help`. + # When left blank, postgres will use the default role. This is + # the same name as the operating system user running Rails. + #username: gitnub + + # The password associated with the postgres role (username). + #password: + + # Connect on a TCP socket. Omitted by default since the client uses a + # domain socket that doesn't need configuration. Windows does not have + # domain sockets, so uncomment these lines. + #host: localhost + + # The TCP port the server listens on. Defaults to 5432. + # If your server runs on a different port number, change accordingly. + #port: 5432 + + # Schema search path. The server defaults to $user,public + #schema_search_path: myapp,sharedapp,public + + # Minimum log levels, in increasing order: + # debug5, debug4, debug3, debug2, debug1, + # log, notice, warning, error, fatal, and panic + # Defaults to warning. + #min_messages: notice + +# Warning: The database defined as "test" will be erased and +# re-generated from your development database when you run "rake". +# Do not set this db to the same as development or production. +test: + <<: *default + database: gitnub_test + +# As with config/credentials.yml, you never want to store sensitive information, +# like your database password, in your source code. If your source code is +# ever seen by anyone, they now have access to your database. +# +# Instead, provide the password or a full connection URL as an environment +# variable when you boot the app. For example: +# +# DATABASE_URL="postgres://myuser:mypass@localhost/somedatabase" +# +# If the connection URL is provided in the special DATABASE_URL environment +# variable, Rails will automatically merge its configuration values on top of +# the values provided in this file. Alternatively, you can specify a connection +# URL environment variable explicitly: +# +# production: +# url: <%= ENV['MY_APP_DATABASE_URL'] %> +# +# Read https://guides.rubyonrails.org/configuring.html#configuring-a-database +# for a full overview on how database connection configuration can be specified. +# +production: + <<: *default + database: gitnub_production + username: gitnub + password: <%= ENV['GITNUB_DATABASE_PASSWORD'] %> diff --git a/config/environment.rb b/config/environment.rb new file mode 100644 index 0000000..d5abe55 --- /dev/null +++ b/config/environment.rb @@ -0,0 +1,7 @@ +# frozen_string_literal: true + +# Load the Rails application. +require_relative 'application' + +# Initialize the Rails application. +Rails.application.initialize! diff --git a/config/environments/development.rb b/config/environments/development.rb new file mode 100644 index 0000000..d5156d7 --- /dev/null +++ b/config/environments/development.rb @@ -0,0 +1,70 @@ +# frozen_string_literal: true + +require 'active_support/core_ext/integer/time' + +Rails.application.configure do + # Settings specified here will take precedence over those in config/application.rb. + + # In the development environment your application's code is reloaded any time + # it changes. This slows down response time but is perfect for development + # since you don't have to restart the web server when you make code changes. + config.cache_classes = false + + # Do not eager load code on boot. + config.eager_load = false + + # Show full error reports. + config.consider_all_requests_local = true + + # Enable/disable caching. By default caching is disabled. + # Run rails dev:cache to toggle caching. + if Rails.root.join('tmp/caching-dev.txt').exist? + config.action_controller.perform_caching = true + config.action_controller.enable_fragment_cache_logging = true + + config.cache_store = :memory_store + config.public_file_server.headers = { + 'Cache-Control' => "public, max-age=#{2.days.to_i}" + } + else + config.action_controller.perform_caching = false + + config.cache_store = :null_store + end + + # Print deprecation notices to the Rails logger. + config.active_support.deprecation = :log + + # Raise exceptions for disallowed deprecations. + config.active_support.disallowed_deprecation = :raise + + # Tell Active Support which deprecation messages to disallow. + config.active_support.disallowed_deprecation_warnings = [] + + # Raise an error on page load if there are pending migrations. + config.active_record.migration_error = :page_load + + # Highlight code that triggered database queries in logs. + config.active_record.verbose_query_logs = true + + # Debug mode disables concatenation and preprocessing of assets. + # This option may cause significant delays in view rendering with a large + # number of complex assets. + config.assets.debug = true + + # Suppress logger output for asset requests. + config.assets.quiet = true + + # Raises error for missing translations. + # config.i18n.raise_on_missing_translations = true + + # Annotate rendered view with file names. + # config.action_view.annotate_rendered_view_with_filenames = true + + # Use an evented file watcher to asynchronously detect changes in source code, + # routes, locales, etc. This feature depends on the listen gem. + config.file_watcher = ActiveSupport::EventedFileUpdateChecker + + # Uncomment if you wish to allow Action Cable access from any origin. + # config.action_cable.disable_request_forgery_protection = true +end diff --git a/config/environments/production.rb b/config/environments/production.rb new file mode 100644 index 0000000..efa1fa7 --- /dev/null +++ b/config/environments/production.rb @@ -0,0 +1,105 @@ +# frozen_string_literal: true + +require 'active_support/core_ext/integer/time' + +Rails.application.configure do + # Settings specified here will take precedence over those in config/application.rb. + + # Code is not reloaded between requests. + config.cache_classes = true + + # Eager load code on boot. This eager loads most of Rails and + # your application in memory, allowing both threaded web servers + # and those relying on copy on write to perform better. + # Rake tasks automatically ignore this option for performance. + config.eager_load = true + + # Full error reports are disabled and caching is turned on. + config.consider_all_requests_local = false + config.action_controller.perform_caching = true + + # Ensures that a master key has been made available in either ENV["RAILS_MASTER_KEY"] + # or in config/master.key. This key is used to decrypt credentials (and other encrypted files). + # config.require_master_key = true + + # Disable serving static files from the `/public` folder by default since + # Apache or NGINX already handles this. + config.public_file_server.enabled = ENV['RAILS_SERVE_STATIC_FILES'].present? + + # Configure Sprockets + config.assets.css_compressor = :sass + config.assets.js_compressor = Uglifier.new(harmony: true) + + # Do not fallback to assets pipeline if a precompiled asset is missed. + config.assets.compile = false + + # Enable serving of images, stylesheets, and JavaScripts from an asset server. + # config.asset_host = 'http://assets.example.com' + + # Specifies the header that your server uses for sending files. + # config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache + config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX + + # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies. + # config.force_ssl = true + + # Include generic and useful information about system operation, but avoid logging too much + # information to avoid inadvertent exposure of personally identifiable information (PII). + config.log_level = :info + + # Prepend all log lines with the following tags. + config.log_tags = [:request_id] + + # Use a different cache store in production. + # config.cache_store = :mem_cache_store + + # Enable locale fallbacks for I18n (makes lookups for any locale fall back to + # the I18n.default_locale when a translation cannot be found). + config.i18n.fallbacks = true + + # Send deprecation notices to registered listeners. + config.active_support.deprecation = :notify + + # Log disallowed deprecations. + config.active_support.disallowed_deprecation = :log + + # Tell Active Support which deprecation messages to disallow. + config.active_support.disallowed_deprecation_warnings = [] + + # Use default logging formatter so that PID and timestamp are not suppressed. + config.log_formatter = ::Logger::Formatter.new + + # Use a different logger for distributed setups. + # require "syslog/logger" + # config.logger = ActiveSupport::TaggedLogging.new(Syslog::Logger.new 'app-name') + + if ENV['RAILS_LOG_TO_STDOUT'].present? + logger = ActiveSupport::Logger.new($stdout) + logger.formatter = config.log_formatter + config.logger = ActiveSupport::TaggedLogging.new(logger) + end + + # Do not dump schema after migrations. + config.active_record.dump_schema_after_migration = false + + # Inserts middleware to perform automatic connection switching. + # The `database_selector` hash is used to pass options to the DatabaseSelector + # middleware. The `delay` is used to determine how long to wait after a write + # to send a subsequent read to the primary. + # + # The `database_resolver` class is used by the middleware to determine which + # database is appropriate to use based on the time delay. + # + # The `database_resolver_context` class is used by the middleware to set + # timestamps for the last write to the primary. The resolver uses the context + # class timestamps to determine how long to wait before reading from the + # replica. + # + # By default Rails will store a last write timestamp in the session. The + # DatabaseSelector middleware is designed as such you can define your own + # strategy for connection switching and pass that into the middleware through + # these configuration options. + # config.active_record.database_selector = { delay: 2.seconds } + # config.active_record.database_resolver = ActiveRecord::Middleware::DatabaseSelector::Resolver + # config.active_record.database_resolver_context = ActiveRecord::Middleware::DatabaseSelector::Resolver::Session +end diff --git a/config/environments/test.rb b/config/environments/test.rb new file mode 100644 index 0000000..b861d50 --- /dev/null +++ b/config/environments/test.rb @@ -0,0 +1,51 @@ +# frozen_string_literal: true + +require 'active_support/core_ext/integer/time' + +# The test environment is used exclusively to run your application's +# test suite. You never need to work with it otherwise. Remember that +# your test database is "scratch space" for the test suite and is wiped +# and recreated between test runs. Don't rely on the data there! + +Rails.application.configure do + # Settings specified here will take precedence over those in config/application.rb. + + config.cache_classes = true + + # Do not eager load code on boot. This avoids loading your whole application + # just for the purpose of running a single test. If you are using a tool that + # preloads Rails for running tests, you may have to set it to true. + config.eager_load = false + + # Configure public file server for tests with Cache-Control for performance. + config.public_file_server.enabled = true + config.public_file_server.headers = { + 'Cache-Control' => "public, max-age=#{1.hour.to_i}" + } + + # Show full error reports and disable caching. + config.consider_all_requests_local = true + config.action_controller.perform_caching = false + config.cache_store = :null_store + + # Raise exceptions instead of rendering exception templates. + config.action_dispatch.show_exceptions = false + + # Disable request forgery protection in test environment. + config.action_controller.allow_forgery_protection = false + + # Print deprecation notices to the stderr. + config.active_support.deprecation = :stderr + + # Raise exceptions for disallowed deprecations. + config.active_support.disallowed_deprecation = :raise + + # Tell Active Support which deprecation messages to disallow. + config.active_support.disallowed_deprecation_warnings = [] + + # Raises error for missing translations. + # config.i18n.raise_on_missing_translations = true + + # Annotate rendered view with file names. + # config.action_view.annotate_rendered_view_with_filenames = true +end diff --git a/config/initializers/application_controller_renderer.rb b/config/initializers/application_controller_renderer.rb new file mode 100644 index 0000000..f4556db --- /dev/null +++ b/config/initializers/application_controller_renderer.rb @@ -0,0 +1,9 @@ +# frozen_string_literal: true +# Be sure to restart your server when you modify this file. + +# ActiveSupport::Reloader.to_prepare do +# ApplicationController.renderer.defaults.merge!( +# http_host: 'example.org', +# https: false +# ) +# end diff --git a/config/initializers/assets.rb b/config/initializers/assets.rb new file mode 100644 index 0000000..bcafccd --- /dev/null +++ b/config/initializers/assets.rb @@ -0,0 +1,14 @@ +# frozen_string_literal: true + +# Be sure to restart your server when you modify this file. + +# Version of your assets, change this if you want to expire all your assets. +Rails.application.config.assets.version = '1.0' + +# Add additional assets to the asset load path. +# Rails.application.config.assets.paths << Emoji.images_path + +# Precompile additional assets. +# application.js, application.css, and all non-JS/CSS in the app/assets +# folder are already added. +# Rails.application.config.assets.precompile += %w( admin.js admin.css ) diff --git a/config/initializers/backtrace_silencers.rb b/config/initializers/backtrace_silencers.rb new file mode 100644 index 0000000..d43cc1d --- /dev/null +++ b/config/initializers/backtrace_silencers.rb @@ -0,0 +1,10 @@ +# frozen_string_literal: true + +# Be sure to restart your server when you modify this file. + +# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces. +# Rails.backtrace_cleaner.add_silencer { |line| /my_noisy_library/.match?(line) } + +# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code +# by setting BACKTRACE=1 before calling your invocation, like "BACKTRACE=1 ./bin/rails runner 'MyClass.perform'". +Rails.backtrace_cleaner.remove_silencers! if ENV['BACKTRACE'] diff --git a/config/initializers/content_security_policy.rb b/config/initializers/content_security_policy.rb new file mode 100644 index 0000000..389c88d --- /dev/null +++ b/config/initializers/content_security_policy.rb @@ -0,0 +1,30 @@ +# frozen_string_literal: true + +# Be sure to restart your server when you modify this file. + +# Define an application-wide content security policy +# For further information see the following documentation +# https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy + +Rails.application.config.content_security_policy do |policy| + policy.default_src :self, :https + policy.font_src :self, :https, :data + policy.img_src :self, :https, :data + policy.object_src :none + policy.script_src :self, :https + policy.style_src :self, :https + + # Specify URI for violation reports + # policy.report_uri "/csp-violation-report-endpoint" +end + +# If you are using UJS then enable automatic nonce generation +Rails.application.config.content_security_policy_nonce_generator = ->(_request) { SecureRandom.base64(32) } + +# Set the nonce only to specific directives +# Rails.application.config.content_security_policy_nonce_directives = %w(script-src) + +# Report CSP violations to a specified URI +# For further information see the following documentation: +# https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy-Report-Only +# Rails.application.config.content_security_policy_report_only = true diff --git a/config/initializers/cookies_serializer.rb b/config/initializers/cookies_serializer.rb new file mode 100644 index 0000000..ee8dff9 --- /dev/null +++ b/config/initializers/cookies_serializer.rb @@ -0,0 +1,7 @@ +# frozen_string_literal: true + +# Be sure to restart your server when you modify this file. + +# Specify a serializer for the signed and encrypted cookie jars. +# Valid options are :json, :marshal, and :hybrid. +Rails.application.config.action_dispatch.cookies_serializer = :json diff --git a/config/initializers/devise.rb b/config/initializers/devise.rb new file mode 100644 index 0000000..d5f9a3e --- /dev/null +++ b/config/initializers/devise.rb @@ -0,0 +1,311 @@ +# frozen_string_literal: true + +# Assuming you have not yet modified this file, each configuration option below +# is set to its default value. Note that some are commented out while others +# are not: uncommented lines are intended to protect your configuration from +# breaking changes in upgrades (i.e., in the event that future versions of +# Devise change the default values for those options). +# +# Use this hook to configure devise mailer, warden hooks and so forth. +# Many of these configuration options can be set straight in your model. +Devise.setup do |config| + # The secret key used by Devise. Devise uses this key to generate + # random tokens. Changing this key will render invalid all existing + # confirmation, reset password and unlock tokens in the database. + # Devise will use the `secret_key_base` as its `secret_key` + # by default. You can change it below and use your own secret key. + # config.secret_key = 'f1927cb145014412a38464d617aa4e2a23e06abe0d10b3a7b715f64df3075ba56c1ceefb4543461c8e2d85ca960c5e5e7c43c00899814a87e4fc515fed8bb4f4' + + # ==> Controller configuration + # Configure the parent class to the devise controllers. + # config.parent_controller = 'DeviseController' + + # ==> Mailer Configuration + # Configure the e-mail address which will be shown in Devise::Mailer, + # note that it will be overwritten if you use your own mailer class + # with default "from" parameter. + config.mailer_sender = 'please-change-me-at-config-initializers-devise@example.com' + + # Configure the class responsible to send e-mails. + # config.mailer = 'Devise::Mailer' + + # Configure the parent class responsible to send e-mails. + # config.parent_mailer = 'ActionMailer::Base' + + # ==> ORM configuration + # Load and configure the ORM. Supports :active_record (default) and + # :mongoid (bson_ext recommended) by default. Other ORMs may be + # available as additional gems. + require 'devise/orm/active_record' + + # ==> Configuration for any authentication mechanism + # Configure which keys are used when authenticating a user. The default is + # just :email. You can configure it to use [:username, :subdomain], so for + # authenticating a user, both parameters are required. Remember that those + # parameters are used only when authenticating and not when retrieving from + # session. If you need permissions, you should implement that in a before filter. + # You can also supply a hash where the value is a boolean determining whether + # or not authentication should be aborted when the value is not present. + config.authentication_keys = [:login] + + # Configure parameters from the request object used for authentication. Each entry + # given should be a request method and it will automatically be passed to the + # find_for_authentication method and considered in your model lookup. For instance, + # if you set :request_keys to [:subdomain], :subdomain will be used on authentication. + # The same considerations mentioned for authentication_keys also apply to request_keys. + # config.request_keys = [] + + # Configure which authentication keys should be case-insensitive. + # These keys will be downcased upon creating or modifying a user and when used + # to authenticate or find a user. Default is :email. + config.case_insensitive_keys = [:email] + + # Configure which authentication keys should have whitespace stripped. + # These keys will have whitespace before and after removed upon creating or + # modifying a user and when used to authenticate or find a user. Default is :email. + config.strip_whitespace_keys = [:email] + + # Tell if authentication through request.params is enabled. True by default. + # It can be set to an array that will enable params authentication only for the + # given strategies, for example, `config.params_authenticatable = [:database]` will + # enable it only for database (email + password) authentication. + # config.params_authenticatable = true + + # Tell if authentication through HTTP Auth is enabled. False by default. + # It can be set to an array that will enable http authentication only for the + # given strategies, for example, `config.http_authenticatable = [:database]` will + # enable it only for database authentication. + # For API-only applications to support authentication "out-of-the-box", you will likely want to + # enable this with :database unless you are using a custom strategy. + # The supported strategies are: + # :database = Support basic authentication with authentication key + password + # config.http_authenticatable = false + + # If 401 status code should be returned for AJAX requests. True by default. + # config.http_authenticatable_on_xhr = true + + # The realm used in Http Basic Authentication. 'Application' by default. + # config.http_authentication_realm = 'Application' + + # It will change confirmation, password recovery and other workflows + # to behave the same regardless if the e-mail provided was right or wrong. + # Does not affect registerable. + # config.paranoid = true + + # By default Devise will store the user in session. You can skip storage for + # particular strategies by setting this option. + # Notice that if you are skipping storage for all authentication paths, you + # may want to disable generating routes to Devise's sessions controller by + # passing skip: :sessions to `devise_for` in your config/routes.rb + config.skip_session_storage = [:http_auth] + + # By default, Devise cleans up the CSRF token on authentication to + # avoid CSRF token fixation attacks. This means that, when using AJAX + # requests for sign in and sign up, you need to get a new CSRF token + # from the server. You can disable this option at your own risk. + # config.clean_up_csrf_token_on_authentication = true + + # When false, Devise will not attempt to reload routes on eager load. + # This can reduce the time taken to boot the app but if your application + # requires the Devise mappings to be loaded during boot time the application + # won't boot properly. + # config.reload_routes = true + + # ==> Configuration for :database_authenticatable + # For bcrypt, this is the cost for hashing the password and defaults to 12. If + # using other algorithms, it sets how many times you want the password to be hashed. + # The number of stretches used for generating the hashed password are stored + # with the hashed password. This allows you to change the stretches without + # invalidating existing passwords. + # + # Limiting the stretches to just one in testing will increase the performance of + # your test suite dramatically. However, it is STRONGLY RECOMMENDED to not use + # a value less than 10 in other environments. Note that, for bcrypt (the default + # algorithm), the cost increases exponentially with the number of stretches (e.g. + # a value of 20 is already extremely slow: approx. 60 seconds for 1 calculation). + config.stretches = Rails.env.test? ? 1 : 12 + + # Set up a pepper to generate the hashed password. + # config.pepper = 'b3af99a4e2212b723d1a57d9f7eaefbfcc189dbb1fb57944b9b38da784ca4d241282505a4193074b7307914c8f6dec1e372a37b728ccf298a4cad6992e7c4e9b' + + # Send a notification to the original email when the user's email is changed. + # config.send_email_changed_notification = false + + # Send a notification email when the user's password is changed. + # config.send_password_change_notification = false + + # ==> Configuration for :confirmable + # A period that the user is allowed to access the website even without + # confirming their account. For instance, if set to 2.days, the user will be + # able to access the website for two days without confirming their account, + # access will be blocked just in the third day. + # You can also set it to nil, which will allow the user to access the website + # without confirming their account. + # Default is 0.days, meaning the user cannot access the website without + # confirming their account. + # config.allow_unconfirmed_access_for = 2.days + + # A period that the user is allowed to confirm their account before their + # token becomes invalid. For example, if set to 3.days, the user can confirm + # their account within 3 days after the mail was sent, but on the fourth day + # their account can't be confirmed with the token any more. + # Default is nil, meaning there is no restriction on how long a user can take + # before confirming their account. + # config.confirm_within = 3.days + + # If true, requires any email changes to be confirmed (exactly the same way as + # initial account confirmation) to be applied. Requires additional unconfirmed_email + # db field (see migrations). Until confirmed, new email is stored in + # unconfirmed_email column, and copied to email column on successful confirmation. + config.reconfirmable = true + + # Defines which key will be used when confirming an account + # config.confirmation_keys = [:email] + + # ==> Configuration for :rememberable + # The time the user will be remembered without asking for credentials again. + # config.remember_for = 2.weeks + + # Invalidates all the remember me tokens when the user signs out. + config.expire_all_remember_me_on_sign_out = true + + # If true, extends the user's remember period when remembered via cookie. + # config.extend_remember_period = false + + # Options to be passed to the created cookie. For instance, you can set + # secure: true in order to force SSL only cookies. + # config.rememberable_options = {} + + # ==> Configuration for :validatable + # Range for password length. + config.password_length = 6..128 + + # Email regex used to validate email formats. It simply asserts that + # one (and only one) @ exists in the given string. This is mainly + # to give user feedback and not to assert the e-mail validity. + config.email_regexp = /\A[^@\s]+@[^@\s]+\z/ + + # ==> Configuration for :timeoutable + # The time you want to timeout the user session without activity. After this + # time the user will be asked for credentials again. Default is 30 minutes. + # config.timeout_in = 30.minutes + + # ==> Configuration for :lockable + # Defines which strategy will be used to lock an account. + # :failed_attempts = Locks an account after a number of failed attempts to sign in. + # :none = No lock strategy. You should handle locking by yourself. + # config.lock_strategy = :failed_attempts + + # Defines which key will be used when locking and unlocking an account + # config.unlock_keys = [:email] + + # Defines which strategy will be used to unlock an account. + # :email = Sends an unlock link to the user email + # :time = Re-enables login after a certain amount of time (see :unlock_in below) + # :both = Enables both strategies + # :none = No unlock strategy. You should handle unlocking by yourself. + # config.unlock_strategy = :both + + # Number of authentication tries before locking an account if lock_strategy + # is failed attempts. + # config.maximum_attempts = 20 + + # Time interval to unlock the account if :time is enabled as unlock_strategy. + # config.unlock_in = 1.hour + + # Warn on the last attempt before the account is locked. + # config.last_attempt_warning = true + + # ==> Configuration for :recoverable + # + # Defines which key will be used when recovering the password for an account + # config.reset_password_keys = [:email] + + # Time interval you can reset your password with a reset password key. + # Don't put a too small interval or your users won't have the time to + # change their passwords. + config.reset_password_within = 6.hours + + # When set to false, does not sign a user in automatically after their password is + # reset. Defaults to true, so a user is signed in automatically after a reset. + # config.sign_in_after_reset_password = true + + # ==> Configuration for :encryptable + # Allow you to use another hashing or encryption algorithm besides bcrypt (default). + # You can use :sha1, :sha512 or algorithms from others authentication tools as + # :clearance_sha1, :authlogic_sha512 (then you should set stretches above to 20 + # for default behavior) and :restful_authentication_sha1 (then you should set + # stretches to 10, and copy REST_AUTH_SITE_KEY to pepper). + # + # Require the `devise-encryptable` gem when using anything other than bcrypt + # config.encryptor = :sha512 + + # ==> Scopes configuration + # Turn scoped views on. Before rendering "sessions/new", it will first check for + # "users/sessions/new". It's turned off by default because it's slower if you + # are using only default views. + # config.scoped_views = false + + # Configure the default scope given to Warden. By default it's the first + # devise role declared in your routes (usually :user). + # config.default_scope = :user + + # Set this configuration to false if you want /users/sign_out to sign out + # only the current scope. By default, Devise signs out all scopes. + # config.sign_out_all_scopes = true + + # ==> Navigation configuration + # Lists the formats that should be treated as navigational. Formats like + # :html, should redirect to the sign in page when the user does not have + # access, but formats like :xml or :json, should return 401. + # + # If you have any extra navigational formats, like :iphone or :mobile, you + # should add them to the navigational formats lists. + # + # The "*/*" below is required to match Internet Explorer requests. + # config.navigational_formats = ['*/*', :html] + + # The default HTTP method used to sign out a resource. Default is :delete. + config.sign_out_via = :delete + + # ==> OmniAuth + # Add a new OmniAuth provider. Check the wiki for more information on setting + # up on your models and hooks. + # config.omniauth :github, 'APP_ID', 'APP_SECRET', scope: 'user,public_repo' + + # ==> Warden configuration + # If you want to use other strategies, that are not supported by Devise, or + # change the failure app, you can configure them inside the config.warden block. + # + # config.warden do |manager| + # manager.intercept_401 = false + # manager.default_strategies(scope: :user).unshift :some_external_strategy + # end + + # ==> Mountable engine configurations + # When using Devise inside an engine, let's call it `MyEngine`, and this engine + # is mountable, there are some extra configurations to be taken into account. + # The following options are available, assuming the engine is mounted as: + # + # mount MyEngine, at: '/my_engine' + # + # The router that invoked `devise_for`, in the example above, would be: + # config.router_name = :my_engine + # + # When using OmniAuth, Devise cannot automatically set OmniAuth path, + # so you need to do it manually. For the users scope, it would be: + # config.omniauth_path_prefix = '/my_engine/users/auth' + + # ==> Turbolinks configuration + # If your app is using Turbolinks, Turbolinks::Controller needs to be included to make redirection work correctly: + # + # ActiveSupport.on_load(:devise_failure_app) do + # include Turbolinks::Controller + # end + + # ==> Configuration for :registerable + + # When set to false, does not sign a user in automatically after their password is + # changed. Defaults to true, so a user is signed in automatically after changing a password. + # config.sign_in_after_change_password = true +end diff --git a/config/initializers/filter_parameter_logging.rb b/config/initializers/filter_parameter_logging.rb new file mode 100644 index 0000000..3babc73 --- /dev/null +++ b/config/initializers/filter_parameter_logging.rb @@ -0,0 +1,8 @@ +# frozen_string_literal: true + +# Be sure to restart your server when you modify this file. + +# Configure sensitive parameters which will be filtered from the log file. +Rails.application.config.filter_parameters += %i[ + passw secret token _key crypt salt certificate otp ssn +] diff --git a/config/initializers/inflections.rb b/config/initializers/inflections.rb new file mode 100644 index 0000000..5ec52d2 --- /dev/null +++ b/config/initializers/inflections.rb @@ -0,0 +1,10 @@ +# frozen_string_literal: true + +# Be sure to restart your server when you modify this file. + +# Add new inflection rules using the following format. Inflections +# are locale specific, and you may define rules for as many different +# locales as you wish. +ActiveSupport::Inflector.inflections(:en) do |inflect| + inflect.acronym 'GitNub' +end diff --git a/config/initializers/mime_types.rb b/config/initializers/mime_types.rb new file mode 100644 index 0000000..6e1d16f --- /dev/null +++ b/config/initializers/mime_types.rb @@ -0,0 +1,5 @@ +# frozen_string_literal: true +# Be sure to restart your server when you modify this file. + +# Add new mime types for use in respond_to blocks: +# Mime::Type.register "text/richtext", :rtf diff --git a/config/initializers/permissions_policy.rb b/config/initializers/permissions_policy.rb new file mode 100644 index 0000000..50bcf4e --- /dev/null +++ b/config/initializers/permissions_policy.rb @@ -0,0 +1,12 @@ +# frozen_string_literal: true +# Define an application-wide HTTP permissions policy. For further +# information see https://developers.google.com/web/updates/2018/06/feature-policy +# +# Rails.application.config.permissions_policy do |f| +# f.camera :none +# f.gyroscope :none +# f.microphone :none +# f.usb :none +# f.fullscreen :self +# f.payment :self, "https://secure.example.com" +# end diff --git a/config/initializers/wrap_parameters.rb b/config/initializers/wrap_parameters.rb new file mode 100644 index 0000000..2f3c0db --- /dev/null +++ b/config/initializers/wrap_parameters.rb @@ -0,0 +1,16 @@ +# frozen_string_literal: true + +# Be sure to restart your server when you modify this file. + +# This file contains settings for ActionController::ParamsWrapper which +# is enabled by default. + +# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array. +ActiveSupport.on_load(:action_controller) do + wrap_parameters format: [:json] +end + +# To enable root element in JSON for ActiveRecord objects. +# ActiveSupport.on_load(:active_record) do +# self.include_root_in_json = true +# end diff --git a/config/locales/devise.en.yml b/config/locales/devise.en.yml new file mode 100644 index 0000000..260e1c4 --- /dev/null +++ b/config/locales/devise.en.yml @@ -0,0 +1,65 @@ +# Additional translations at https://github.com/heartcombo/devise/wiki/I18n + +en: + devise: + confirmations: + confirmed: "Your email address has been successfully confirmed." + send_instructions: "You will receive an email with instructions for how to confirm your email address in a few minutes." + send_paranoid_instructions: "If your email address exists in our database, you will receive an email with instructions for how to confirm your email address in a few minutes." + failure: + already_authenticated: "You are already signed in." + inactive: "Your account is not activated yet." + invalid: "Invalid %{authentication_keys} or password." + locked: "Your account is locked." + last_attempt: "You have one more attempt before your account is locked." + not_found_in_database: "Invalid %{authentication_keys} or password." + timeout: "Your session expired. Please sign in again to continue." + unauthenticated: "You need to sign in or sign up before continuing." + unconfirmed: "You have to confirm your email address before continuing." + mailer: + confirmation_instructions: + subject: "Confirmation instructions" + reset_password_instructions: + subject: "Reset password instructions" + unlock_instructions: + subject: "Unlock instructions" + email_changed: + subject: "Email Changed" + password_change: + subject: "Password Changed" + omniauth_callbacks: + failure: "Could not authenticate you from %{kind} because \"%{reason}\"." + success: "Successfully authenticated from %{kind} account." + passwords: + no_token: "You can't access this page without coming from a password reset email. If you do come from a password reset email, please make sure you used the full URL provided." + send_instructions: "You will receive an email with instructions on how to reset your password in a few minutes." + send_paranoid_instructions: "If your email address exists in our database, you will receive a password recovery link at your email address in a few minutes." + updated: "Your password has been changed successfully. You are now signed in." + updated_not_active: "Your password has been changed successfully." + registrations: + destroyed: "Bye! Your account has been successfully cancelled. We hope to see you again soon." + signed_up: "Welcome! You have signed up successfully." + signed_up_but_inactive: "You have signed up successfully. However, we could not sign you in because your account is not yet activated." + signed_up_but_locked: "You have signed up successfully. However, we could not sign you in because your account is locked." + signed_up_but_unconfirmed: "A message with a confirmation link has been sent to your email address. Please follow the link to activate your account." + update_needs_confirmation: "You updated your account successfully, but we need to verify your new email address. Please check your email and follow the confirmation link to confirm your new email address." + updated: "Your account has been updated successfully." + updated_but_not_signed_in: "Your account has been updated successfully, but since your password was changed, you need to sign in again." + sessions: + signed_in: "Signed in successfully." + signed_out: "Signed out successfully." + already_signed_out: "Signed out successfully." + unlocks: + send_instructions: "You will receive an email with instructions for how to unlock your account in a few minutes." + send_paranoid_instructions: "If your account exists, you will receive an email with instructions for how to unlock it in a few minutes." + unlocked: "Your account has been unlocked successfully. Please sign in to continue." + errors: + messages: + already_confirmed: "was already confirmed, please try signing in" + confirmation_period_expired: "needs to be confirmed within %{period}, please request a new one" + expired: "has expired, please request a new one" + not_found: "not found" + not_locked: "was not locked" + not_saved: + one: "1 error prohibited this %{resource} from being saved:" + other: "%{count} errors prohibited this %{resource} from being saved:" diff --git a/config/locales/en.yml b/config/locales/en.yml new file mode 100644 index 0000000..cf9b342 --- /dev/null +++ b/config/locales/en.yml @@ -0,0 +1,33 @@ +# Files in the config/locales directory are used for internationalization +# and are automatically loaded by Rails. If you want to use locales other +# than English, add the necessary files in this directory. +# +# To use the locales, use `I18n.t`: +# +# I18n.t 'hello' +# +# In views, this is aliased to just `t`: +# +# <%= t('hello') %> +# +# To use a different locale, set it with `I18n.locale`: +# +# I18n.locale = :es +# +# This would use the information in config/locales/es.yml. +# +# The following keys must be escaped otherwise they will not be retrieved by +# the default I18n backend: +# +# true, false, on, off, yes, no +# +# Instead, surround them with single quotes. +# +# en: +# 'true': 'foo' +# +# To learn more, please read the Rails Internationalization guide +# available at https://guides.rubyonrails.org/i18n.html. + +en: + hello: "Hello world" diff --git a/config/puma.rb b/config/puma.rb new file mode 100644 index 0000000..8ae6a78 --- /dev/null +++ b/config/puma.rb @@ -0,0 +1,45 @@ +# frozen_string_literal: true + +# Puma can serve each request in a thread from an internal thread pool. +# The `threads` method setting takes two numbers: a minimum and maximum. +# Any libraries that use thread pools should be configured to match +# the maximum value specified for Puma. Default is set to 5 threads for minimum +# and maximum; this matches the default thread size of Active Record. +# +max_threads_count = ENV.fetch('RAILS_MAX_THREADS', 5) +min_threads_count = ENV.fetch('RAILS_MIN_THREADS') { max_threads_count } +threads min_threads_count, max_threads_count + +# Specifies the `worker_timeout` threshold that Puma will use to wait before +# terminating a worker in development environments. +# +worker_timeout 3600 if ENV.fetch('RAILS_ENV', 'development') == 'development' + +# Specifies the `port` that Puma will listen on to receive requests; default is 3000. +# +port ENV.fetch('PORT', 3000) + +# Specifies the `environment` that Puma will run in. +# +environment ENV.fetch('RAILS_ENV', 'development') + +# Specifies the `pidfile` that Puma will use. +pidfile ENV.fetch('PIDFILE', 'tmp/pids/server.pid') + +# Specifies the number of `workers` to boot in clustered mode. +# Workers are forked web server processes. If using threads and workers together +# the concurrency of the application would be max `threads` * `workers`. +# Workers do not work on JRuby or Windows (both of which do not support +# processes). +# +# workers ENV.fetch("WEB_CONCURRENCY") { 2 } + +# Use the `preload_app!` method when specifying a `workers` number. +# This directive tells Puma to first boot the application and load code +# before forking the application. This takes advantage of Copy On Write +# process behavior so workers use less memory. +# +# preload_app! + +# Allow puma to be restarted by `rails restart` command. +plugin :tmp_restart diff --git a/config/routes.rb b/config/routes.rb new file mode 100644 index 0000000..560639f --- /dev/null +++ b/config/routes.rb @@ -0,0 +1,15 @@ +# frozen_string_literal: true + +Rails.application.routes.draw do + devise_scope :user do + get '/login', to: 'devise/sessions#new' + + post '/signin', to: 'devise/sessions#create', as: :user_session + + delete '/signout', to: 'devise/sessions#destroy' + end + + devise_for :users + + root 'site#index' +end diff --git a/db/migrate/20210919222322_devise_create_users.rb b/db/migrate/20210919222322_devise_create_users.rb new file mode 100644 index 0000000..1cf6ccd --- /dev/null +++ b/db/migrate/20210919222322_devise_create_users.rb @@ -0,0 +1,44 @@ +# frozen_string_literal: true + +class DeviseCreateUsers < ActiveRecord::Migration[6.1] + def change + create_table :users do |t| + ## Database authenticatable + t.string :email, null: false, default: '' + t.string :encrypted_password, null: false, default: '' + t.string :username, null: false, default: '' + + ## Recoverable + t.string :reset_password_token + t.datetime :reset_password_sent_at + + ## Rememberable + t.datetime :remember_created_at + + ## Trackable + t.integer :sign_in_count, default: 0, null: false + t.datetime :current_sign_in_at + t.datetime :last_sign_in_at + t.string :current_sign_in_ip + t.string :last_sign_in_ip + + ## Confirmable + t.string :confirmation_token + t.datetime :confirmed_at + t.datetime :confirmation_sent_at + t.string :unconfirmed_email # Only if using reconfirmable + + ## Lockable + # t.integer :failed_attempts, default: 0, null: false # Only if lock strategy is :failed_attempts + # t.string :unlock_token # Only if unlock strategy is :email or :both + # t.datetime :locked_at + + t.timestamps null: false + end + + add_index :users, :email, unique: true + add_index :users, :reset_password_token, unique: true + add_index :users, :confirmation_token, unique: true + # add_index :users, :unlock_token, unique: true + end +end diff --git a/db/migrate/20210919222948_add_username_index_to_users.rb b/db/migrate/20210919222948_add_username_index_to_users.rb new file mode 100644 index 0000000..cd1524b --- /dev/null +++ b/db/migrate/20210919222948_add_username_index_to_users.rb @@ -0,0 +1,7 @@ +# frozen_string_literal: true + +class AddUsernameIndexToUsers < ActiveRecord::Migration[6.1] + def change + add_index :users, :username, unique: true + end +end diff --git a/db/schema.rb b/db/schema.rb new file mode 100644 index 0000000..131b008 --- /dev/null +++ b/db/schema.rb @@ -0,0 +1,42 @@ +# This file is auto-generated from the current state of the database. Instead +# of editing this file, please use the migrations feature of Active Record to +# incrementally modify your database, and then regenerate this schema definition. +# +# This file is the source Rails uses to define your schema when running `bin/rails +# db:schema:load`. When creating a new database, `bin/rails db:schema:load` tends to +# be faster and is potentially less error prone than running all of your +# migrations from scratch. Old migrations may fail to apply correctly if those +# migrations use external dependencies or application code. +# +# It's strongly recommended that you check this file into your version control system. + +ActiveRecord::Schema.define(version: 2021_09_19_222948) do + + # These are extensions that must be enabled in order to support this database + enable_extension "plpgsql" + + create_table "users", force: :cascade do |t| + t.string "email", default: "", null: false + t.string "encrypted_password", default: "", null: false + t.string "username", default: "", null: false + t.string "reset_password_token" + t.datetime "reset_password_sent_at" + t.datetime "remember_created_at" + t.integer "sign_in_count", default: 0, null: false + t.datetime "current_sign_in_at" + t.datetime "last_sign_in_at" + t.string "current_sign_in_ip" + t.string "last_sign_in_ip" + t.string "confirmation_token" + t.datetime "confirmed_at" + t.datetime "confirmation_sent_at" + t.string "unconfirmed_email" + t.datetime "created_at", precision: 6, null: false + t.datetime "updated_at", precision: 6, null: false + t.index ["confirmation_token"], name: "index_users_on_confirmation_token", unique: true + t.index ["email"], name: "index_users_on_email", unique: true + t.index ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true + t.index ["username"], name: "index_users_on_username", unique: true + end + +end diff --git a/db/seeds.rb b/db/seeds.rb new file mode 100644 index 0000000..c8c1b75 --- /dev/null +++ b/db/seeds.rb @@ -0,0 +1,8 @@ +# frozen_string_literal: true +# This file should contain all the record creation needed to seed the database with its default values. +# The data can then be loaded with the bin/rails db:seed command (or created alongside the database with db:setup). +# +# Examples: +# +# movies = Movie.create([{ name: 'Star Wars' }, { name: 'Lord of the Rings' }]) +# Character.create(name: 'Luke', movie: movies.first) diff --git a/lib/assets/.keep b/lib/assets/.keep new file mode 100644 index 0000000..e69de29 diff --git a/lib/tasks/auto_annotate_models.rake b/lib/tasks/auto_annotate_models.rake new file mode 100644 index 0000000..d525a31 --- /dev/null +++ b/lib/tasks/auto_annotate_models.rake @@ -0,0 +1,61 @@ +# frozen_string_literal: true + +# NOTE: only doing this in development as some production environments (Heroku) +# NOTE: are sensitive to local FS writes, and besides -- it's just not proper +# NOTE: to have a dev-mode tool do its thing in production. +if Rails.env.development? + require 'annotate' + task set_annotation_options: :environment do + # You can override any of these by setting an environment variable of the + # same name. + Annotate.set_defaults( + 'active_admin' => 'false', + 'additional_file_patterns' => [], + 'routes' => 'false', + 'models' => 'true', + 'position_in_routes' => 'before', + 'position_in_class' => 'before', + 'position_in_test' => 'before', + 'position_in_fixture' => 'before', + 'position_in_factory' => 'before', + 'position_in_serializer' => 'before', + 'show_foreign_keys' => 'true', + 'show_complete_foreign_keys' => 'false', + 'show_indexes' => 'true', + 'simple_indexes' => 'false', + 'model_dir' => 'app/models', + 'root_dir' => '', + 'include_version' => 'false', + 'require' => '', + 'exclude_tests' => 'false', + 'exclude_fixtures' => 'false', + 'exclude_factories' => 'false', + 'exclude_serializers' => 'false', + 'exclude_scaffolds' => 'true', + 'exclude_controllers' => 'true', + 'exclude_helpers' => 'true', + 'exclude_sti_subclasses' => 'false', + 'ignore_model_sub_dir' => 'false', + 'ignore_columns' => nil, + 'ignore_routes' => nil, + 'ignore_unknown_models' => 'false', + 'hide_limit_column_types' => 'integer,bigint,boolean', + 'hide_default_column_types' => 'json,jsonb,hstore', + 'skip_on_db_migrate' => 'false', + 'format_bare' => 'true', + 'format_rdoc' => 'false', + 'format_yard' => 'false', + 'format_markdown' => 'false', + 'sort' => 'false', + 'force' => 'false', + 'frozen' => 'false', + 'classified_sort' => 'true', + 'trace' => 'false', + 'wrapper_open' => nil, + 'wrapper_close' => nil, + 'with_comment' => 'true' + ) + end + + Annotate.load_tasks +end diff --git a/log/.keep b/log/.keep new file mode 100644 index 0000000..e69de29 diff --git a/public/404.html b/public/404.html new file mode 100644 index 0000000..4e7c8a5 --- /dev/null +++ b/public/404.html @@ -0,0 +1,345 @@ + + + + + Page not found · GitNub + + + + +
+
+ building +
+
+
+ + 404 | “This is not the web page you are looking for” + + Octobi Wan Catnobi + + land speeder + + Octobi Wan Catnobi's shadow + + land speeder's shadow + + building + + building +
+ +
+ +
+ + + + + + + +
+ + + + + + + + diff --git a/public/422.html b/public/422.html new file mode 100644 index 0000000..c08eac0 --- /dev/null +++ b/public/422.html @@ -0,0 +1,67 @@ + + + + The change you wanted was rejected (422) + + + + + + +
+
+

The change you wanted was rejected.

+

Maybe you tried to change something you didn't have access to.

+
+

If you are the application owner check the logs for more information.

+
+ + diff --git a/public/500.html b/public/500.html new file mode 100644 index 0000000..78a030a --- /dev/null +++ b/public/500.html @@ -0,0 +1,66 @@ + + + + We're sorry, but something went wrong (500) + + + + + + +
+
+

We're sorry, but something went wrong.

+
+

If you are the application owner check the logs for more information.

+
+ + diff --git a/public/apple-touch-icon-precomposed.png b/public/apple-touch-icon-precomposed.png new file mode 100644 index 0000000..e69de29 diff --git a/public/apple-touch-icon.png b/public/apple-touch-icon.png new file mode 100644 index 0000000..e69de29 diff --git a/public/dev-favicon.ico b/public/dev-favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..f678c57a9af1fc33bf9bea42787f30ed7eef6a02 GIT binary patch literal 6518 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 literal 0 HcmV?d00001 diff --git a/public/robots.txt b/public/robots.txt new file mode 100644 index 0000000..c19f78a --- /dev/null +++ b/public/robots.txt @@ -0,0 +1 @@ +# See https://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file diff --git a/public/windows-tile.png b/public/windows-tile.png new file mode 100644 index 0000000000000000000000000000000000000000..430b973771582039edc5c19f195769f23c80148c GIT binary patch literal 14224 zcmZvDXIN8B6X+%c2tA=jdO*4~LFo{xN=Hx>=|xaPKso{my*DepiJ~Y?=`{iZHi{zf z0zwd^2uSZG_uzM*`|IYCn@1PC+Ia;aUra!ii|H~{E-JA*g6 zNNp8?J2Ko2Y!n(x!`v`H0ARl3opkaMYlW>}HBog^d{Phq6aY0B#kg6_jv@CK9ZE|16z+93>piBKiikYw7O$KSfGRTV?n2*VYTEhi(kO*lH+F1jfC2 zbbn2DUq;@=nfM9=DF6qKo11M&$`Dk;|NSewAGlA7#O!v5>7I0x5T(%}a#<9rPBv%? zr4x>z`%+nn221GS&o?wzu85UE=v??I(b$N>agc^yWYs8MWA(RlxdS0ONQPvpE2{!opsNv|*3-D66 zA(Et@QcV3%|77Q(X%jbE!o!9dvv6pfk)S_`W;y>xYQBsHE&u~Fy(^@1BJ*HckBB^?+mR78NrZ%xJto~xYj0ERCdJsJ*vNdRr-7%MHe5g zFJ~OH9{aT;2l@{7yD$_S#9}EyY(Xg>(S-I@I;Z{7cJ|OV7Yty+R<3_sd^p|ew|g*o zCvRb>??n=WXIIyUo4I}0+t84Bih9D_q-WvHzdjy~?Eg0^wUmXJ_U+zTSgJyJ%^5!78T$ChFXbmUq5^*uj@K9R8Ow7 z^T{ffb4dGSu3wnMkGr3QX-Q)#$5J5xoM?A;ackP9=7#D2ap94_d?<+U8UH-~~Ec*2}`bR81RXT0jPjJKZMUfX^@7u1xd7(kNo zM1y|V96E+su8{|xIPq1eoCm>*6aWRki_qWATD#mYF8CvJ&YZ;(&DtTG!TMr83pmi@ zwVrA_e>t6}9L|Lmf;d@qqSnc`w2Lrdak=u$Se!mI&8agk?ow($pX%lUaVE%&z5Ib6 zNDz2w{>m{X3`F71EmI>wS|!u=`x8^&evY`tfdXc790>=2-x#}U{*n#{bT0Pn9dprZ z;O3l}|MnIn{nZ7X&WGAxb|z^Kc47O%gIu_Z1uFz@-jE`vnMpK|@IE)L!OQk!I7wHK z(x<2G*mq$BE@qmQ>i+xK=s19sxpN_p4=5{u^+&;Uuha>@a0r}Cl*Q5x|I8lDf)jA1 z(+Pd*Dbz%Q3fYD?D%f!*KyeDtNJ|osI1qU2Q2W(p8%z5UussEWlaegO&;PM&0|C;^$s+T6SmpeJ5( zuR|ZJbDX(=w}%|SbRU)rUnnzWv;|Hp&RI1b`q`o{7@Z07!GN`*%i11dak7Q;YFd+<7nvy)mrhm#aR%IGO-3 zF^0%J3Y;n&*Ey+TRD^~+RFcNrE(Jf>w{8nf3e&?vs2F_dAq)jVD<(5{pE4tD|4Cx~ zivmJ-JlbA+@jV}_q5~n~_j2BG!}&q5ZCi4rx5%-suE?eaynyjlBg>>N%3EV zn9j3LmT&&nq6Y}V>n#=Sf8>@{s0q6WLh9ly!%-?2x%ulqe%s1T7~#Rzeetkdj>-Zu z8eExP`A*7xw*(^yz(~`|!A4|3(D_a?yJ`kT(1MvJfc(D(AB$GVJ(L9L$jAD4&@Tl- zZdiVmOKc7xD#B@S;8M3Iss96Vy5( z0J75K_{NT8jsYqHh~`T14gJiX-`9XRe?HHaqyeH%gAiueu-O(~2Tr1zW&*M_AZS!= zbMhJFs&x_0RY-!_n5GP8a)_JAvp?07PwK{1T^Vf^(vOB+%Fp*@xv=AeSllg=!|_gS z(s=*4n%uFQEn?hpV7WUZdwb7q>|zUu6N>T`&-9Z2E%j{jG|#%dh=*A5WdSx2DOa=M z=`dGZQIfEaqFHrx1!90qot5bGs;TkQ#zZT53C9Wp#yhL;7#WVG9QsB>cH7S(2qkd) zZ{Le)rYeyc{n|27zh~7@dR6_*VIgF-8RBMb^NBQ4`|# zzs-`>4B`l)!C#qU>VaURlIyH{w-xU_!Jk;k7t1nKmo`Si`t>=9#3#pWPtSg2Yn3*C6)foOus`Lv@ut#&OhYV=oor&P4>dY1 zHuU-RU4=f8-z(mQ7V~xtk_A>{o_z?yt#N~B9(--k6Md1yk2mrRa?X^Yu2J9YDOu0? z8)&x|_UjsVMeXSR*b`AX*6o2$4K_}WMk1N5L38g92LB+Bm5OCjE&;<2W*N_8(v{3r z%^WAs*VPKxzd8(kaf9km`}bVo15cXhkj2F`!!lPTw%vT{qK0wa4AJ{`5)zQNL5sF( zsvHc;wg+#Iy{tE;GhB{vX>BbFFUwUS#Wj^|*W5kbs`VCIJ1X^N!1%^y$zB^%bxA-p z;mX0s*GTHpn z2|i6Hy9q34)SULtZWWzTO8jqtPAw}q_0^WD=PK_Hjh))mcL^8HYZnLI7a(CZOJqO! zrvSI^hIZqvTLwI~#%g`u{+*;gp=O^+rx2OL<9uYGDD#f_RA9CnJIG1|pEvT)v0Y?a zx7eKfTzgik_f_hDqnuwb#|^G5SO-Z!U^mXF z$gs$Jv8h}1Bg~Bz__%brOE#M9YXbmOodkg8r-|&%Q8c=}RF2G^)ieSLtv1A3@#w z&yywHF@WeP{{mjb4sPGWGTY8;IJ8oLL%kc~{4Cuyo>G(qS<@^j52WNKIeCu}tVUS- z<}Uw|rwxD*Kd}- zi5X<|>a;SK9>aj6mihaDKcBF?D*KgkLJV!pHaDQLw8zNvZ2dhA5&j(+ECY=#zcICp zH<}V-1&WL2dM2Mo+3eOihEagUZcX{;1nPj4?m|3K?Tz5-@hf*gFyCYQI5+4_N0kbv z7X$J^WLAh135R)7B*Lls@}Vl@RwPeBnj$Uv9tiqD^Zb|?*J$elbt+Wx{ybZZlwc~ z!$-EdrMJ-l;1C5ttT=7148aW+J4&K6lG5CKAT&8pz?>QYqn=w4inn3=tUyizZoLsO zqn9QMfV_7GZPrv-BGBM6a|=Qt1}}^TwVyJAy@?W+K`Uq z3SrPDDMFO!I*9-ccmx2IwkS%sRPPsZb_hbyJGo}O@Hr3|eO>z1sRU8l{#Zaf818P9 zhXL-w0-8ZR*tf58TbjT*ko>3qISn8oyNGApsA|jzy}66!kZ~NB*BwtCtz6xHc^|xd z7vm})`AHNvcVn@M9dNdj1IbN$vBH4Bc?Ja&e+F{-$|j$K41Ff01Qr!qHx5XD-(~B@ z7vCL;kfBkn*hT7pPq_6o=O!Rf3GhEZWjn$#Jn-9?XBp~^DZ^VP4LDFS0-g5^i(Q^W z`b8jDY3x~dcej6=z5H3bv)*=Ux0}aOlLm4##s?zj>$73tP%dO8YE)d?ariRZ(ZEnx z02^%gO@Y(u@eUVR1)B4fG1V_nJ6jen_>|-81F#@TK%dQ5zjtIjKK=`;oq}*aqbO~NIF%uHYgkp)DO_F(Y&;PxV6N5AR8FAHMtAUL{URSe13hFNt+MkJ#z|M5A#X z+Jx}`NNgb5!1t+FV-Vj6yR>08XL)j zlQf7VEUuFEMUP*LdufpYDPbglvff|M#F!#S9NbJ-s25huV*%C=^_wYsqW$!3?p@|A zr~;Mx9e%s{56O8wQ3s7MT&f(iJI@36lFid=e)Zd^)Ijnyv!`YO z)LAS~6oV7}GGbfECf2l9$e z#WAOl42n}U_`Aq7y;D@6%sE{TW?fQJ!X?sT)}+7&$~Va5vvtQT4q{&cNQgg2OB%i8 z;mmcLj*$FTrjX}p>{rxr>U~ETFayi={+GF)!?JXMH3!+@a1HV&uDbUTL>JD2^xV4w zKwYQ&O@=7|Ixq{B*UtuC);=830ri`zH00?c3IaYPepT-NL#mfTfb|Yp@Gy0U354mv z991ehv$crc!)-FAy1%o;CNw}`PiF#Q#7hkRqSmcV4n|TY=U-5dZ$$#I_*A;y-^!hh zBBkljMNRxwM&EJj6-^2p<}|Y%;(N_^tIxMI#6gw?>vm^dj|fv29|)QAan7$p)mb8j z-;Pa}hne-E2^rW!CV*8uTg67vXh?C|FNLyP5LnNW=?*#*(01_v?Dm~`+xI$5fv}Cl zElrSJq3lg$o4`S{FeT}2*z(JbFjFvcM3#zIBWth#g4fWyk#C>@A}s%_%jqouq`~U< zemunDWZ;!aR_M~0UB=^SAmKUDguEh;EgAibT%tDPaIg!klD@EUTl*XH8j@-v}=umTb&xYEfIc?j)4dJlTkR{~-yekxLuE`xe? zb+ijTAS!d{BOtT%de!T=eawO-Gl40&ueNI6znE_=nbzpJuP4^qsFHRC` z;7x!ItZ^z-5~7a4(E=D~pYw3eA9nF=@<;G{?+W{{%0fExpn(FM|HDB*yN)864?--w z9M{Bi_o0m?#R@Z!>Nq=@Ne_Uc8nisr$&OwIP@WJF{Fq=QJy6UzY0ulhNd@eG(s4XB z`&&m%Ni65qJpJh+#S+9{063Vtr2s=g4-5d9JcaboiSa3Skt|B$PLBxu900_|3#`OU zz)wkHybZylKucAq2(cFIqMV-DAHsld;Bz!-U5EG)3nMZAg&=Uy;x?bUnFcPNm^O&0 z4)B!M`==|4;x;42z9i6lX2y9d(v9E27*frS^-WDPS`tmLGlYZ8x241TVIB~NNN7vREC~lI8~`|WJYT+#1rzxK6oyu+=;%+`smE7SQl)IKQ8=q6hjcaRfej z&2cmcWC)UlMiffSSwO}L=f^Q4ARB-_rZR#^`sL2;P2na~LIXjJP!{L_RwQ@?fu$I$ zK7tdPkp6;5OlB5R*amn8A=4wA)VOE+GiL{7|t1hp<;vcS8dyEM;Z3Clq3k#&O-OV{oF2uCN#ohN6q3?ih)& zoy$N~UA=KBO(7|=CD)>#9-uHwATYuPXwi~Tbr2p3Mu2h;V;YEarjQL`tMq_kKnUKA z8R!7U3qVnp4y+z`Xz4DGWyF}87_$HzKk7$_z<|B^@yMTyK?hdgQlE`i=u5f@0C(1C z@rC0%fr2Hv1$057_+J0p&(b=~wsf>z4-1`5QIsR8mnfi!2gF%`;v2n=x1=X5TTOIU zmfuPQ8UKEQPGd@$?2~|zzER}+7t`-BMBHK$5Ulub%H#SCG!F72Avdqc&W^d?`;lQ% zJT_WsGf{ut(&T4Ky~I7Qiv+_|9RaG}Yir&u2Ea{){-rXqH2JmemW}^u&M(A6Z|8pY zH#~r(bW^Quv43s9wtGRG^-boLaC6S1x*=OXNw2Jg!pWrbw@C}x13k@E)Ulr`D;d7W zn)Ol7I|J~tZMLHB`0(|wq;mfdKIYUETZPGy!_*1^kj=-=g(h8=qelW}x@Tai*FDqF=6PyM%4b3Q?O*I4d#bN$ zKGZ-p%G}6KIiP&E@CvX-HvH9ov()ka5+HGr`w{yBV46oySntXV9sWB4kWNK=^%^{` zv!WzcT)dJl?IkY*cI)qkGr9)&T?8}fr2=*`UHD6KfN%kIjKB2fPxNb7umm~H76SpW z#Si(AR#W5@UUGsgL5**I&S>p#@oD6xT45YC{U)FU8qH!PoT!E6KbbpH#Onjo^R3GJ zyQ#|J4!9TXSBc7)^e1#?ETBKJO31F$#(S^T9N`n|u|84tQxRHe?C7|iKDhl9j5Zh2 zVgMw}O(PY{V_v$Tpt(<}lIi_h4!*a0!H5X34koRzG0oiW7Ft)fSqn==Pi{d2rqwlq zen=*hc0;+F0$nHfLmE2n+kW1l)M=2{2oC%8jeV(f?I842{|aA{o>Xeixn!lmpaGX| zOX{96ed=3s;|EkXK3P$KPl_xpd*s`le#85do3*Xhc@-SJsc(J+q^NJ)c3LE>ii0=E zK;IE1^257YQZ6D-sn$DEdNmqk>n5gKo1QO@J3p=qkxu;juxbJjn1}p%n8K^qYntoJ zQhctJA4#}#eHqTo@lOunIHOQ|{H7e#a|ARbm|SjSELe(rb;Z+9#Wf#&zI3^pQLxQq z;1)41lX}X^5%j)kM>fIpRHo&lJKg{#^n3@uyh ztqbdYS;@iXHAi*YE;PW@Cbd;>{kj1Y+5f^Ie^u>mapiB-d*yt8S->Pu>p+`0d`8%o07_C$diif5;c^B&mDvp)SRWa=RdFb%#PzT z4tsgN0uV?xt;rq>08mQc$BwCF!F;gB&A8ILp0kDH=@@orbR!o|d>K99 z=G?s4Ifc`@biSK)(pgKBAJ8wk&~_j5w!3(fCLSH{#$7n|%xeAAv(`Rnwqr0uxgEuf zb}AaWp#BVE<~HfOEZZv`6JXzSPNd|N1t-4a4=aqcf0Y>J?Q_<$oo5{MYY6`d)RcS4 z2JX`VCR)N*{3pS?)hOZLnWkwJ;7Emw@~ao>sn~L)f5`Z(#?BYJr0lD2OlLv=J8$gI zmt&bn6MEo{fJe3IHQL7wpkIxZd)Vm(t~mD$XjKZCHu7|i_?bhq1wj8%^kP*aj< zYjn3Rc6zWLxFPV?(@*P@;Fzt>SN=bZ#!ciYK(*It^{I=2Q%A#ZfBGSabv<0Nr@s&i zyr_ZkdmS`gR^fSL!4bdOb@x=D=-CObLplEfEGx^w@8+SmV;3k15z0`Y5(j`+_v6ak zda;`a`JXqp+H#SA(u|-p!U%}~EEhX-Zn`Bc(k(Z}gKO5qu#lUoP#KA^_5K->Ad&Ky zydws;zj(^T@E)+YSp_Ur#?|-9kP(zo^a$SV#|W#;L5pBln_9Wx5P9e*c3M5`mdO{4 zWy@^bgqYo=Kjd84CrDGw|ujES+)ovI<^4zQkTif~2@8 zcbLpK&|%8U)m$tFir!>>rd2)s8+t_|jxv4|JgRhdql9`<}x z%D1!k`949OSQ%22sI6%Z5Z#}8Juip-Bq{5+l=~d6e1zL?eD-9Mmx+ZpTt8iZ%)-z8 zBzue7o9{{FXkaog)0%(|thuC_a>;N+2wL*2CouSgqsDH(ghubEFxAdP#88jfeTMU# zY2R7Fgv0D|KCM6l_Cdmdz*g7d+f+0`NAXm@P_*hYb3H#NASDmut7H%PvhScH^%R-N zV-yGbY+zgWA_YMV6(TZ71$IeW?>i@-oJW4`& zLr}~xU$UC=M>H4Ho@2O}RN#V3h8wsA13QNtxnr1PAtPC&Z4B9j9q4}pc9;NVj=Zlv zy5^uB{VRKG@0Ud+NWRn=YBc&0y;qgUv5ZWi8j8OjIC~XI3J3H~yBf@YQ-{!MKTl24 zXFTK$qV3R74l6%}w-udWssZSFH4_G(JeRtZz)rBLwLC(j@W59D#etQ5Dq z15dl^AVA~RZrO1DcW$$>{Hy7^Ri8OlKmzQD1x|ig!U?Hd|1ieoy_kld<)qSovZ3u;*n^c9AtHS$FK%lMQD2fJ){AL2P=! z;K{mg_38zz8ZdPc>U;H$ZYqbt!&*F$X<2ZUN306#PJ^%{tDY0#b0VTmUjqGdsupW1bHmdSzulf zF@B;8#bgyuT>OL8%v#CtOGeM|OFoYiDfy`a4;faZi>H02(IE1n7{*{HcMBg&F>kEd z;db^x$xQqwZqk=v^4yJOD=C4f&ioI=h6h#M9q-%=^9&+$)ZsX_(xn_>Sb^p#HBnB{ zcP#9QmneP&X(x~#ld{k}B=6>9-@m^Fq00U3L|=DiAn;d0@SH9zi4S^WrcLo?89!Kz&x0Tg3$5d-#S2%kM(; zNtp8!>HE+i{wEm)B9&P=yQVDOf&On7t+b{$%pd<`|DHAQ_&|Ll8FqOHbp}PLdZY00 z+sNyQm;`{KXW+>C88AUsqvvO!TgWX6_nBM`?W;xnIE)(nq_k1I;` zS|7b+*HkE}^^|kLLy{VHMV4wwPqXA!gN&0SM`od#kI&0ECH+SR0gc!iy6~Whu`r`s z>|2kh@33Xh#U6!8hFibr(8NUskuxK_58HYV+Dc%>Q_jTk1i-K<1W!tDdoag>_^i6~ z+=INX>TQf!s`D&)T;VBxl!Tkl|5osnD$Hi@`sy?{G~Y z|Fp0^J+D+Vp!sU%`CYL=%6ez1sL=!C9ib{lsmmZTkj&W?^v!@=cSM;`K{IrfuD?c8 zv3CASfHSl$LaIxh2rRCVs1vnu%)M zI_7Jp@E7kS4FPC>RblE>w_n}YLI+fc)j5?^-X*Yh`rCh$yk$3fCyiU0e(oIm3aHAgl>)dE;E12k%7yrM(X~MVEfgk_wzu_-YR#i-_O%WADQc zgDyiSA_}G&G1WU78NigCa#iwlpuYN_YsG@-Tuae|s3+nMd8?foaAI=7F!R@JrkhWx zSwUve2m3$&5$|L%D&Fj$<1M)$?%YwEq2 z&wXm1W|3&dj9ppTU>UrXfh6?KRzFz_QhRB{dkwfHz@5{hUj8k^ynLu%?<6@dB-EiT z4q(Kba=&haN;vL1E9relw0%PC3~TLS^qRFGw7sOA+uR~;kA#DMR?3X~iuMP0+xQco zD@T-)z4G|K*&qo+W>+MAg8Rpz98$pCnfT6+rxFDkofs+j>M0Ygc?0EAkmLlXO-EBu^ z*!V6--x?7KX4gsQsbB@>xqDf(m{Kb>Dl~34Umm~-{rC#%vWD6=Cm|l^QhxGPd3$D) zjtEO0a_i&eY!7yH9KnKLSiK+do;JwCeNR`0_N^0TsYhE)s_pxhYNptmDu{t{tqxrx zU3U$Mt$TBv1%_nyC?q$CAG|h%>LAhz^Ebrpht@ZQsl#^m@}lKvyr$~AMfG+9pKfad z?iuUV>49dwvCzc;UdBUnK`}qo{m^!7v3t}ftl@tL zmp-&L!Hvr(GxBzKSh#LC(eQJo(bi$RK0Ojfif>kk6+KMs`uu}c577HWPlS6WY7d(c zZhfuXH5tRVMw`n;4~XyW<<#%<7DYvhr0cBjiV>H&Ny} zn($UoNp{J%I;YH34^bW0(3v2ZaG1gu@>p+#T?ZWMjs=~)(D$eixhlhH;`muL3#FY~ z8E7Z>+iSXK%-BO7@hlY}|FD`Oh;;HVR&SQ_c>RXso)yWhbUzIy-0E9STb{3I80@R- zy?@P%MP*_3m!~mV1Ww3>$~byo*ixQnw;o6jauUQn?)?`!OB?!%x_(8oGNbRvEYFyB zskHBEtxemQ#@so|6f}=#*^~*zwVo&0bNS&L8GJj{0m`cf^)(d>Z+V?OTd%$b^Fc>j z;hFPe4NgNn0o`{H=fH7{f5?C0L){J-zoZDgipJ)nRZZXEe1#O%l}((y%e?uw7b(xe zeDcrmp~2&WBfjUeL*Bixm))6Kp7&=zI#w+eEq|{rS~E!=)9)ZE{K>wxznIMV?LV@rqQ(iqwAB>kfi|F)Sys zSAL?wa(h?~CUa$UVW)`9pV=@!sn?*mM&?o8a}Pcp^%9HE;0OM+guwx*Br-32)- zn7?f!2*SRt7Z&ct8SU6- zk8NZs_O|h8O`8)S4ytD!UB5a_c6m$=xSOm!yP(+0R**}a^ZW7Ud499U6%#=q#JNJd z>flNkQl?GG6@phL7AE53p`skaJzse=XlwZ|)J?6RXhy>JG3~vq0(Ob1q^N7M18QY8 zR}3bH%_b=cv#SOICRq0}0g|C_Zd9xpMJKa`Y&u_=WhDnQ&TLDOp!pzi!il4#DB!+* zkRzL3&rdjfYtNWP$Mx_W-=|Hns2U&c9{UEAOF99Y7Vlc( zF9SDA=S)X*TB3=oWh})4$0(icvzD+=Gly+4-$t-B1g!?FoPd4#W{V^m7ODLwdOKpc zYclZID!}wsovaxh;2Zq!`TWm!DM(D1EUXBSV%HQ9={ro<0j7G+m7O;ZG)tbOI5ELC zgLe)iKOV$F2arr}kLnUHu-^a}FSQ)8FudmPBPSGyp0Bt&dSXn0atMeU*tNTa*m>T`4~FsrD_f&F)E!xiB6^rQ zZyqL3<#+d=n!ZS7gAL;jTI`tV`TgoV$#CQoRmXa`FmZRsuwNHnMN9bRl`DHm*-6ag z7Iat!aJO@>`>ecgoHeM%!1~+WB-PNcIo_HD6&3Hhlz{YnZ8)sm?ql~zPNsJh#k%2P z{q-fQO7HaOl&wsL(YbW*?? zC_DT~U)ynL3Y0!XFOcMwcv=1ip<0HGuj&$Y4pq|}UGf`_=wGR_-7{L=DW4o>3QC|V z6ZdduFN@mZDyUh@4_viPo@$G$d3GEZnD#_~7#ptqPVeKK-2U)TN9#{3QRaiKvLp2c zBH-ATt=Rh+W^*Ns5gge^9VLr&X_O}55yZc+)sG3l&cg3vL+Lk`NlVoc9r_s_S~lQj zEPPyi#&W1IAxi`EuC0!GU&hM-jr#1MDy8brBAX#AIVd$M_O;-_-fY9>Op9LKPftFl zu4Vk05BaKT()Vw}8e={aeBZ8q*}YKrlL_XEo{=4Y3c#SzP3gCWe7}J5*+`$4zHdt$^Kk!P8=a=g2b1RZPcJ;-=`TfzRv&-cR zTEJ~y)tR?703r;~mC<7K&QBo&5oE!CkHtX6cmaOg6{f$tdMrBOeOUZIpnm%YlgK6n zDKkenE^D0|ZI?^&zji`q?y8s#4eFdv6Z`4BRx;iHnz`ksjPwa`O+pVQS?}YlEOeN9 zI@N)mY#Gb~BUvHFgAY%Mq7ZSPcVlJdl%|+q1$u~(^$?jSN<^ifuOf1U33<)OXaCIk zFrd2lV8nu@aDyTk(7b>2YOZ(a0>lFM4q3l`DEDXpOtv5ZJ=sm3p>t6>8E*_FlI7)| z%9LK#Uc~^%^T!*wSuboD2NbLdKr_J)=H91qLBK?XQc(dA`8x9N=25RTwYPO*jx=PC zkzlgErWC3gy2{Q`sgAq^z7!F(jpq*^e)VzEz2DABiv)x2PpLl7pfAz+Qba!qUh54U z6=~5l)bYJsd0UN=11yM``BFM&DihPDs>1*5K8z~Ur)!K!Y}`|{lWcwk4ZI#zFxxsL zuHo2+xGpU?5^OUJGCtH>>2*ci5xP7R)lX5u#DTd>Ctj5WRnaC zCF8a|_ifQ|u*HDysgW06-!tyn5dDH<<1a<9~wKs&*X-M}H`3@kYe!}xkAIh7zbpbW4 zW={-W%3HVfQyOHq5DWROL$hB>oIbZXx~Zq)9FXpY9;h}akQQ>U7TSPI_4I_P$RHEmQ%ca@&|VyI81} zQ)w?E@384S)Ko#MUt|z?G_|(7JHHv;n`t$@)3fnQ>;thXI^^Y!+?93p6r*-u;*Pgv zhm72lpQ^)JWkz1xPm#Eh0bsFj&=)rL`g1LNjV~!IVwP8ww55FkI$-4@HM6j7_JZaU zyj?|tQT@9-Xp=S8Npelq>3~XbtbampCi7sMe-;OlZ3$S;^4z|tI6CN{e8f8I`wIDJ zP6z)u?CUS7@#)y)yWcd&-Y+~-NWYiG2M6$+apBYpRz$T)HX2|Q^ivs5s2XFkD|=X3 zEQSIosoxBdu3BcP5-F#um_8v0Paf%t7gz0L67jUUVP;wkxMs|A&&w1qc9$Q_Vg^aP zEMS4KGI#&$j%snb-IyC8KB~FSjwQypgmq}%$K9?o$$I4jU$Wk2#QiV7tXxx7eFZ_% z?!HSjG5B-G`Oq~P(!riZ2l5L#UNgC^O=0mkXKPrkcUc+^YMUzz;#WA$CF$Ow;Vh?W zsS0{!zh$Z}3&7fB+czBF%~o8;|GRxrP3jITyOmTlji)|tWfi1>6W!Op`qW-uq#Lq> z_UIrB2}=Q#tHY~y9z(l1TO2R~bi_-v0(TUF0;}+c-x?I1cmGEUhXhgD4r<3jix7Y4 z=mHGTYyAIS`93Q2X=J-D1RqhgX#(6+E&g{}{Dn#&SoYBJveG5ye|J`5(C{2V(9dA7 zxHdP24?n5Jx(Trvvm+Fv*L&vMeiMH*|GO;X&n$uXVnZ=V1C~lE_3&cnq#U$PuD67Q zE5issXNFc48grRWD6XPe7!5l#c78(r3qF*J`I=B04^?xXJ+)OOAg-$m^t?6%V3GXQR#i6|r#GSa<18%{Q6Z3*6 zSEnlN=pPNhXpx1I!m;_EeXx^O-?Oz(xY#QQbEa9z+P6LsCn&QHjo=^VmF}F}{=ora zWigv3&KLLx?KOxZm;ce}=VOteQXi>6M%0U{g*dHRwuT}9-IQu%Lzqv|PNUR9Rv7*% z1v=73=UUh(X^ehRO1RIrCAwlm|3UgbxQ3OfNsmC76||33ys46Az{~UhyWW)&uUbMs z@oA%%V*bh2lPYOPx$Tp00Crg9l|{4`}UkCGkK050ho>y&HRNBkcPpTcMW literal 0 HcmV?d00001 diff --git a/test/controllers/landing_controller_test.rb b/test/controllers/landing_controller_test.rb new file mode 100644 index 0000000..5b0888f --- /dev/null +++ b/test/controllers/landing_controller_test.rb @@ -0,0 +1,10 @@ +# frozen_string_literal: true + +require 'test_helper' + +class LandingControllerTest < ActionDispatch::IntegrationTest + test 'should get index' do + get landing_index_url + assert_response :success + end +end diff --git a/test/fixtures/files/.keep b/test/fixtures/files/.keep new file mode 100644 index 0000000..e69de29 diff --git a/test/fixtures/users.yml b/test/fixtures/users.yml new file mode 100644 index 0000000..f78e893 --- /dev/null +++ b/test/fixtures/users.yml @@ -0,0 +1,40 @@ +# == Schema Information +# +# Table name: users +# +# id :bigint not null, primary key +# confirmation_sent_at :datetime +# confirmation_token :string +# confirmed_at :datetime +# current_sign_in_at :datetime +# current_sign_in_ip :string +# email :string default(""), not null +# encrypted_password :string default(""), not null +# last_sign_in_at :datetime +# last_sign_in_ip :string +# remember_created_at :datetime +# reset_password_sent_at :datetime +# reset_password_token :string +# sign_in_count :integer default(0), not null +# unconfirmed_email :string +# username :string default(""), not null +# created_at :datetime not null +# updated_at :datetime not null +# +# Indexes +# +# index_users_on_confirmation_token (confirmation_token) UNIQUE +# index_users_on_email (email) UNIQUE +# index_users_on_reset_password_token (reset_password_token) UNIQUE +# index_users_on_username (username) UNIQUE +# + +# This model initially had no columns defined. If you add columns to the +# model remove the '{}' from the fixture names and add the columns immediately +# below each fixture, per the syntax in the comments below +# +one: {} +# column: value +# +two: {} +# column: value diff --git a/test/helpers/.keep b/test/helpers/.keep new file mode 100644 index 0000000..e69de29 diff --git a/test/integration/.keep b/test/integration/.keep new file mode 100644 index 0000000..e69de29 diff --git a/test/models/user_test.rb b/test/models/user_test.rb new file mode 100644 index 0000000..d11ffd1 --- /dev/null +++ b/test/models/user_test.rb @@ -0,0 +1,39 @@ +# frozen_string_literal: true + +# == Schema Information +# +# Table name: users +# +# id :bigint not null, primary key +# confirmation_sent_at :datetime +# confirmation_token :string +# confirmed_at :datetime +# current_sign_in_at :datetime +# current_sign_in_ip :string +# email :string default(""), not null +# encrypted_password :string default(""), not null +# last_sign_in_at :datetime +# last_sign_in_ip :string +# remember_created_at :datetime +# reset_password_sent_at :datetime +# reset_password_token :string +# sign_in_count :integer default(0), not null +# unconfirmed_email :string +# username :string default(""), not null +# created_at :datetime not null +# updated_at :datetime not null +# +# Indexes +# +# index_users_on_confirmation_token (confirmation_token) UNIQUE +# index_users_on_email (email) UNIQUE +# index_users_on_reset_password_token (reset_password_token) UNIQUE +# index_users_on_username (username) UNIQUE +# +require 'test_helper' + +class UserTest < ActiveSupport::TestCase + # test "the truth" do + # assert true + # end +end diff --git a/test/test_helper.rb b/test/test_helper.rb new file mode 100644 index 0000000..0c92e8e --- /dev/null +++ b/test/test_helper.rb @@ -0,0 +1,17 @@ +# frozen_string_literal: true + +ENV['RAILS_ENV'] ||= 'test' +require_relative '../config/environment' +require 'rails/test_help' + +module ActiveSupport + class TestCase + # Run tests in parallel with specified workers + parallelize(workers: :number_of_processors) + + # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order. + fixtures :all + + # Add more helper methods to be used by all tests here... + end +end diff --git a/tmp/.keep b/tmp/.keep new file mode 100644 index 0000000..e69de29 diff --git a/tmp/pids/.keep b/tmp/pids/.keep new file mode 100644 index 0000000..e69de29 diff --git a/vendor/assets/fonts/octicons.eot b/vendor/assets/fonts/octicons.eot new file mode 100755 index 0000000000000000000000000000000000000000..23a0e8332bed0cc2c6d9aa1b3ec09f5b4e3e9c44 GIT binary patch literal 52352 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

}aWT>bHUQ|bhzw)hzbmUO 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 + + +Copyright (C) 2013 by GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/vendor/assets/fonts/octicons.ttf b/vendor/assets/fonts/octicons.ttf new file mode 100755 index 0000000000000000000000000000000000000000..96c36bde38f30d1fdd1115fb9d5a2fffb9c6c234 GIT binary patch literal 52068 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

Qqp6<69#%ol+BCdy2N3iBo&t(pwu?;r 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 literal 0 HcmV?d00001 diff --git a/vendor/assets/fonts/octicons.woff b/vendor/assets/fonts/octicons.woff new file mode 100755 index 0000000000000000000000000000000000000000..34a7f90f597fc800197a2f7cd28f557681116e42 GIT binary patch literal 29768 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 literal 0 HcmV?d00001 diff --git a/vendor/assets/stylesheets/octicons.scss b/vendor/assets/stylesheets/octicons.scss new file mode 100644 index 0000000..9a141e9 --- /dev/null +++ b/vendor/assets/stylesheets/octicons.scss @@ -0,0 +1,568 @@ +@font-face { + font-family: "octicons"; + src: font-url("octicons.eot"); + src: font-url("octicons.eot#iefix") format("embedded-opentype"), + font-url("octicons.woff") format("woff"), + font-url("octicons.ttf") format("truetype"), + font-url("octicons.svg#octicons") format("svg"); + font-weight: normal; + font-style: normal; +} + +// .octicon is optimized for 16px. +// .mega-octicon is optimized for 32px but can be used larger. +.octicon { + font: normal normal 16px octicons; + line-height: 1; + display: inline-block; + text-decoration: none; + -webkit-font-smoothing: antialiased; +} +.mega-octicon { + font: normal normal 32px octicons; + line-height: 1; + display: inline-block; + text-decoration: none; + -webkit-font-smoothing: antialiased; +} + +.octicon-alert:before { + content: "\f02d"; +} /*  */ +.octicon-alignment-align:before { + content: "\f08a"; +} /*  */ +.octicon-alignment-aligned-to:before { + content: "\f08e"; +} /*  */ +.octicon-alignment-unalign:before { + content: "\f08b"; +} /*  */ +.octicon-arrow-down:before { + content: "\f03f"; +} /*  */ +.octicon-arrow-left:before { + content: "\f040"; +} /*  */ +.octicon-arrow-right:before { + content: "\f03e"; +} /*  */ +.octicon-arrow-small-down:before { + content: "\f0a0"; +} /*  */ +.octicon-arrow-small-left:before { + content: "\f0a1"; +} /*  */ +.octicon-arrow-small-right:before { + content: "\f071"; +} /*  */ +.octicon-arrow-small-up:before { + content: "\f09f"; +} /*  */ +.octicon-arrow-up:before { + content: "\f03d"; +} /*  */ +.octicon-beer:before { + content: "\f069"; +} /*  */ +.octicon-book:before { + content: "\f007"; +} /*  */ +.octicon-bookmark:before { + content: "\f07b"; +} /*  */ +.octicon-broadcast:before { + content: "\f048"; +} /*  */ +.octicon-bug:before { + content: "\f091"; +} /*  */ +.octicon-calendar:before { + content: "\f068"; +} /*  */ +.octicon-check:before { + content: "\f03a"; +} /*  */ +.octicon-checklist:before { + content: "\f076"; +} /*  */ +.octicon-chevron-down:before { + content: "\f0a3"; +} /*  */ +.octicon-chevron-left:before { + content: "\f0a4"; +} /*  */ +.octicon-chevron-right:before { + content: "\f078"; +} /*  */ +.octicon-chevron-up:before { + content: "\f0a2"; +} /*  */ +.octicon-circle-slash:before { + content: "\f084"; +} /*  */ +.octicon-clippy:before { + content: "\f035"; +} /*  */ +.octicon-clock:before { + content: "\f046"; +} /*  */ +.octicon-cloud-download:before { + content: "\f00b"; +} /*  */ +.octicon-cloud-upload:before { + content: "\f00c"; +} /*  */ +.octicon-code:before { + content: "\f05f"; +} /*  */ +.octicon-color-mode:before { + content: "\f065"; +} /*  */ +.octicon-comment:before { + content: "\f02b"; +} /*  */ +.octicon-comment-add:before { + content: "\f06f"; +} /*  */ +.octicon-comment-discussion:before { + content: "\f04f"; +} /*  */ +.octicon-credit-card:before { + content: "\f045"; +} /*  */ +.octicon-dashboard:before { + content: "\f07d"; +} /*  */ +.octicon-database:before { + content: "\f096"; +} /*  */ +.octicon-device-camera:before { + content: "\f056"; +} /*  */ +.octicon-device-camera-video:before { + content: "\f057"; +} /*  */ +.octicon-device-desktop:before { + content: "\f27c"; +} /*  */ +.octicon-device-mobile:before { + content: "\f038"; +} /*  */ +.octicon-diff:before { + content: "\f04d"; +} /*  */ +.octicon-diff-added:before { + content: "\f06b"; +} /*  */ +.octicon-diff-ignored:before { + content: "\f099"; +} /*  */ +.octicon-diff-modified:before { + content: "\f06d"; +} /*  */ +.octicon-diff-removed:before { + content: "\f06c"; +} /*  */ +.octicon-diff-renamed:before { + content: "\f06e"; +} /*  */ +.octicon-ellipsis:before { + content: "\f09a"; +} /*  */ +.octicon-eye:before { + content: "\f04e"; +} /*  */ +.octicon-eye-unwatch:before { + content: "\f01e"; +} /*  */ +.octicon-eye-watch:before { + content: "\f01d"; +} /*  */ +.octicon-file-add:before { + content: "\f086"; +} /*  */ +.octicon-file-binary:before { + content: "\f094"; +} /*  */ +.octicon-file-code:before { + content: "\f010"; +} /*  */ +.octicon-file-directory:before { + content: "\f016"; +} /*  */ +.octicon-file-directory-create:before { + content: "\f095"; +} /*  */ +.octicon-file-media:before { + content: "\f012"; +} /*  */ +.octicon-file-pdf:before { + content: "\f014"; +} /*  */ +.octicon-file-submodule:before { + content: "\f017"; +} /*  */ +.octicon-file-symlink-directory:before { + content: "\f0b1"; +} /*  */ +.octicon-file-symlink-file:before { + content: "\f0b0"; +} /*  */ +.octicon-file-text:before { + content: "\f011"; +} /*  */ +.octicon-file-zip:before { + content: "\f013"; +} /*  */ +.octicon-gear:before { + content: "\f02f"; +} /*  */ +.octicon-gift:before { + content: "\f042"; +} /*  */ +.octicon-gist:before { + content: "\f00e"; +} /*  */ +.octicon-gist-fork:before { + content: "\f079"; +} /*  */ +.octicon-gist-new:before { + content: "\f07a"; +} /*  */ +.octicon-gist-private:before { + content: "\f00f"; +} /*  */ +.octicon-gist-secret:before { + content: "\f08c"; +} /*  */ +.octicon-git-branch:before { + content: "\f020"; +} /*  */ +.octicon-git-branch-create:before { + content: "\f098"; +} /*  */ +.octicon-git-branch-delete:before { + content: "\f09b"; +} /*  */ +.octicon-git-commit:before { + content: "\f01f"; +} /*  */ +.octicon-git-compare:before { + content: "\f0ac"; +} /*  */ +.octicon-git-fork-private:before { + content: "\f021"; +} /*  */ +.octicon-git-merge:before { + content: "\f023"; +} /*  */ +.octicon-git-pull-request:before { + content: "\f009"; +} /*  */ +.octicon-git-pull-request-abandoned:before { + content: "\f090"; +} /*  */ +.octicon-globe:before { + content: "\f0b6"; +} /*  */ +.octicon-graph:before { + content: "\f043"; +} /*  */ +.octicon-history:before { + content: "\f07e"; +} /*  */ +.octicon-home:before { + content: "\f08d"; +} /*  */ +.octicon-horizontal-rule:before { + content: "\f070"; +} /*  */ +.octicon-hourglass:before { + content: "\f09e"; +} /*  */ +.octicon-hubot:before { + content: "\f09d"; +} /*  */ +.octicon-info:before { + content: "\f059"; +} /*  */ +.octicon-issue-closed:before { + content: "\f028"; +} /*  */ +.octicon-issue-opened:before { + content: "\f026"; +} /*  */ +.octicon-issue-reopened:before { + content: "\f027"; +} /*  */ +.octicon-jersey:before { + content: "\f019"; +} /*  */ +.octicon-jump-down:before { + content: "\f072"; +} /*  */ +.octicon-jump-left:before { + content: "\f0a5"; +} /*  */ +.octicon-jump-right:before { + content: "\f0a6"; +} /*  */ +.octicon-jump-up:before { + content: "\f073"; +} /*  */ +.octicon-key:before { + content: "\f049"; +} /*  */ +.octicon-keyboard:before { + content: "\f00d"; +} /*  */ +.octicon-light-bulb:before { + content: "\f000"; +} /*  */ +.octicon-link:before { + content: "\f05c"; +} /*  */ +.octicon-link-external:before { + content: "\f07f"; +} /*  */ +.octicon-list-ordered:before { + content: "\f062"; +} /*  */ +.octicon-list-unordered:before { + content: "\f061"; +} /*  */ +.octicon-location:before { + content: "\f060"; +} /*  */ +.octicon-lock:before { + content: "\f06a"; +} /*  */ +.octicon-log-in:before { + content: "\f036"; +} /*  */ +.octicon-log-out:before { + content: "\f032"; +} /*  */ +.octicon-logo-github:before { + content: "\f092"; +} /*  */ +.octicon-mail:before { + content: "\f03b"; +} /*  */ +.octicon-mail-read:before { + content: "\f03c"; +} /*  */ +.octicon-mail-reply:before { + content: "\f051"; +} /*  */ +.octicon-mark-github:before { + content: "\f00a"; +} /*  */ +.octicon-mark-twitter:before { + content: "\f0ae"; +} /*  */ +.octicon-megaphone:before { + content: "\f077"; +} /*  */ +.octicon-microscope:before { + content: "\f089"; +} /*  */ +.octicon-milestone:before { + content: "\f075"; +} /*  */ +.octicon-mirror-private:before { + content: "\f025"; +} /*  */ +.octicon-mirror-public:before { + content: "\f024"; +} /*  */ +.octicon-move-down:before { + content: "\f0a8"; +} /*  */ +.octicon-move-left:before { + content: "\f074"; +} /*  */ +.octicon-move-right:before { + content: "\f0a9"; +} /*  */ +.octicon-move-up:before { + content: "\f0a7"; +} /*  */ +.octicon-mute:before { + content: "\f080"; +} /*  */ +.octicon-mute-video:before { + content: "\f0b8"; +} /*  */ +.octicon-no-newline:before { + content: "\f09c"; +} /*  */ +.octicon-octoface:before { + content: "\f008"; +} /*  */ +.octicon-organization:before { + content: "\f037"; +} /*  */ +.octicon-pencil:before { + content: "\f058"; +} /*  */ +.octicon-person:before { + content: "\f018"; +} /*  */ +.octicon-person-add:before { + content: "\f01a"; +} /*  */ +.octicon-person-follow:before { + content: "\f01c"; +} /*  */ +.octicon-person-remove:before { + content: "\f01b"; +} /*  */ +.octicon-pin:before { + content: "\f041"; +} /*  */ +.octicon-plus:before { + content: "\f05d"; +} /*  */ +.octicon-podium:before { + content: "\f0af"; +} /*  */ +.octicon-primitive-dot:before { + content: "\f052"; +} /*  */ +.octicon-primitive-square:before { + content: "\f053"; +} /*  */ +.octicon-pulse:before { + content: "\f085"; +} /*  */ +.octicon-question:before { + content: "\f02c"; +} /*  */ +.octicon-quote:before { + content: "\f063"; +} /*  */ +.octicon-radio-tower:before { + content: "\f030"; +} /*  */ +.octicon-remove-close:before { + content: "\f050"; +} /*  */ +.octicon-repo:before { + content: "\f001"; +} /*  */ +.octicon-repo-clone:before { + content: "\f04c"; +} /*  */ +.octicon-repo-create:before { + content: "\f003"; +} /*  */ +.octicon-repo-delete:before { + content: "\f004"; +} /*  */ +.octicon-repo-force-push:before { + content: "\f04a"; +} /*  */ +.octicon-repo-forked:before { + content: "\f002"; +} /*  */ +.octicon-repo-pull:before { + content: "\f006"; +} /*  */ +.octicon-repo-push:before { + content: "\f005"; +} /*  */ +.octicon-repo-sync:before { + content: "\f04b"; +} /*  */ +.octicon-rocket:before { + content: "\f033"; +} /*  */ +.octicon-rss:before { + content: "\f034"; +} /*  */ +.octicon-ruby:before { + content: "\f047"; +} /*  */ +.octicon-screen-full:before { + content: "\f066"; +} /*  */ +.octicon-screen-normal:before { + content: "\f067"; +} /*  */ +.octicon-search:before { + content: "\f02e"; +} /*  */ +.octicon-server:before { + content: "\f097"; +} /*  */ +.octicon-settings:before { + content: "\f07c"; +} /*  */ +.octicon-squirrel:before { + content: "\f0b2"; +} /*  */ +.octicon-star:before { + content: "\f02a"; +} /*  */ +.octicon-star-add:before { + content: "\f082"; +} /*  */ +.octicon-star-delete:before { + content: "\f083"; +} /*  */ +.octicon-stop:before { + content: "\f08f"; +} /*  */ +.octicon-sync:before { + content: "\f087"; +} /*  */ +.octicon-tag:before { + content: "\f015"; +} /*  */ +.octicon-tag-add:before { + content: "\f054"; +} /*  */ +.octicon-tag-remove:before { + content: "\f055"; +} /*  */ +.octicon-telescope:before { + content: "\f088"; +} /*  */ +.octicon-three-bars:before { + content: "\f05e"; +} /*  */ +.octicon-tools:before { + content: "\f031"; +} /*  */ +.octicon-triangle-down:before { + content: "\f05b"; +} /*  */ +.octicon-triangle-left:before { + content: "\f044"; +} /*  */ +.octicon-triangle-right:before { + content: "\f05a"; +} /*  */ +.octicon-triangle-up:before { + content: "\f0aa"; +} /*  */ +.octicon-unfold:before { + content: "\f039"; +} /*  */ +.octicon-unmute:before { + content: "\f0ba"; +} /*  */ +.octicon-unmute-video:before { + content: "\f0b9"; +} /*  */ +.octicon-versions:before { + content: "\f064"; +} /*  */ +.octicon-x:before { + content: "\f081"; +} /*  */ +.octicon-zap:before { + content: "\26A1"; +} /* ⚡ */