├── .dockerignore ├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── contributors.yml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── .ruby-version ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── README.md ├── Rakefile ├── app ├── assets │ ├── config │ │ └── manifest.js │ ├── images │ │ ├── angular.svg │ │ ├── bash.svg │ │ ├── c.svg │ │ ├── cplusplus.svg │ │ ├── crystal.svg │ │ ├── csharp.svg │ │ ├── css.svg │ │ ├── dart.svg │ │ ├── default.svg │ │ ├── django.svg │ │ ├── elixir.svg │ │ ├── flutter.svg │ │ ├── git.svg │ │ ├── go.svg │ │ ├── haskell.svg │ │ ├── html.svg │ │ ├── java.svg │ │ ├── javascript.svg │ │ ├── kotlin.svg │ │ ├── linux.svg │ │ ├── markdown.svg │ │ ├── mongodb.svg │ │ ├── mysql.svg │ │ ├── nextjs.svg │ │ ├── ocaml.svg │ │ ├── php.svg │ │ ├── postgresql.svg │ │ ├── python.svg │ │ ├── r.svg │ │ ├── ruby.svg │ │ ├── rust.svg │ │ ├── spring.svg │ │ ├── swift.svg │ │ ├── typescript.svg │ │ ├── vim.svg │ │ └── vue.svg │ └── stylesheets │ │ ├── application.css │ │ ├── design_system.css │ │ ├── issue.css │ │ ├── repository.css │ │ └── spinner.css ├── channels │ └── application_cable │ │ ├── channel.rb │ │ └── connection.rb ├── controllers │ ├── application_controller.rb │ ├── concerns │ │ └── .keep │ └── repository_controller.rb ├── helpers │ ├── application_helper.rb │ ├── design_system_helper.rb │ ├── heroicon_helper.rb │ ├── issue_helper.rb │ └── repository_helper.rb ├── javascript │ ├── application.js │ ├── cdn │ │ └── unocss-runtime.js │ ├── controllers │ │ ├── application.js │ │ ├── hello_controller.js │ │ └── index.js │ └── pagination_loader.js ├── jobs │ └── application_job.rb ├── mailers │ └── application_mailer.rb ├── models │ ├── application_record.rb │ ├── concerns │ │ └── .keep │ ├── issue.rb │ └── repository.rb ├── services │ └── github │ │ ├── extract_issues_from_repository.rb │ │ └── extract_repositories.rb └── views │ ├── layouts │ ├── _spinner.html.erb │ ├── application.html.erb │ ├── mailer.html.erb │ └── mailer.text.erb │ └── repository │ ├── _card.html.erb │ ├── _card_badge.html.erb │ ├── _tag.html.erb │ └── index.html.erb ├── bin ├── bundle ├── docker-entrypoint ├── importmap ├── rails ├── rake └── setup ├── config.ru ├── config ├── application.rb ├── boot.rb ├── cable.yml ├── credentials.yml.enc ├── database.yml ├── dockerfile.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── importmap.rb ├── initializers │ ├── assets.rb │ ├── content_security_policy.rb │ ├── filter_parameter_logging.rb │ ├── heroicon.rb │ ├── inflections.rb │ ├── permissions_policy.rb │ └── sentry.rb ├── locales │ └── en.yml ├── puma.rb ├── routes.rb ├── schedule.rb └── storage.yml ├── db ├── migrate │ ├── 20230816134816_create_repositories.rb │ ├── 20230828184031_create_issues.rb │ ├── 20230828185252_change_issue_field_from_type_to_issue_type.rb │ └── 20230918175013_add_technology_column_to_repository.rb ├── schema.rb └── seeds.rb ├── docs ├── 1-como-estilizar-uma-pagina.md ├── 2-como-utilizar-erb.md └── 3-como-criar-um-token-github.md ├── lib ├── assets │ └── .keep └── tasks │ ├── .keep │ └── fetch.rake ├── log └── .keep ├── public ├── 404.html ├── 422.html ├── 500.html ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon-precomposed.png ├── apple-touch-icon.png ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── robots.txt └── site.webmanifest ├── spec ├── helpers │ ├── design_system_helper_spec.rb │ ├── issue_helper_spec.rb │ └── repository_helper_spec.rb ├── models │ ├── issue_spec.rb │ └── repository_spec.rb ├── rails_helper.rb ├── requests │ ├── issue_spec.rb │ └── repository_spec.rb └── spec_helper.rb ├── storage └── .keep ├── tmp ├── .keep ├── pids │ └── .keep └── storage │ └── .keep └── vendor ├── .keep └── javascript └── .keep /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/contributors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/.github/workflows/contributors.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --require spec_helper 2 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | ruby-3.2.2 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/assets/config/manifest.js -------------------------------------------------------------------------------- /app/assets/images/angular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/assets/images/angular.svg -------------------------------------------------------------------------------- /app/assets/images/bash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/assets/images/bash.svg -------------------------------------------------------------------------------- /app/assets/images/c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/assets/images/c.svg -------------------------------------------------------------------------------- /app/assets/images/cplusplus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/assets/images/cplusplus.svg -------------------------------------------------------------------------------- /app/assets/images/crystal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/assets/images/crystal.svg -------------------------------------------------------------------------------- /app/assets/images/csharp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/assets/images/csharp.svg -------------------------------------------------------------------------------- /app/assets/images/css.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/assets/images/css.svg -------------------------------------------------------------------------------- /app/assets/images/dart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/assets/images/dart.svg -------------------------------------------------------------------------------- /app/assets/images/default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/assets/images/default.svg -------------------------------------------------------------------------------- /app/assets/images/django.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/assets/images/django.svg -------------------------------------------------------------------------------- /app/assets/images/elixir.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/assets/images/elixir.svg -------------------------------------------------------------------------------- /app/assets/images/flutter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/assets/images/flutter.svg -------------------------------------------------------------------------------- /app/assets/images/git.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/assets/images/git.svg -------------------------------------------------------------------------------- /app/assets/images/go.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/assets/images/go.svg -------------------------------------------------------------------------------- /app/assets/images/haskell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/assets/images/haskell.svg -------------------------------------------------------------------------------- /app/assets/images/html.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/assets/images/html.svg -------------------------------------------------------------------------------- /app/assets/images/java.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/assets/images/java.svg -------------------------------------------------------------------------------- /app/assets/images/javascript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/assets/images/javascript.svg -------------------------------------------------------------------------------- /app/assets/images/kotlin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/assets/images/kotlin.svg -------------------------------------------------------------------------------- /app/assets/images/linux.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/assets/images/linux.svg -------------------------------------------------------------------------------- /app/assets/images/markdown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/assets/images/markdown.svg -------------------------------------------------------------------------------- /app/assets/images/mongodb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/assets/images/mongodb.svg -------------------------------------------------------------------------------- /app/assets/images/mysql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/assets/images/mysql.svg -------------------------------------------------------------------------------- /app/assets/images/nextjs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/assets/images/nextjs.svg -------------------------------------------------------------------------------- /app/assets/images/ocaml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/assets/images/ocaml.svg -------------------------------------------------------------------------------- /app/assets/images/php.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/assets/images/php.svg -------------------------------------------------------------------------------- /app/assets/images/postgresql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/assets/images/postgresql.svg -------------------------------------------------------------------------------- /app/assets/images/python.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/assets/images/python.svg -------------------------------------------------------------------------------- /app/assets/images/r.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/assets/images/r.svg -------------------------------------------------------------------------------- /app/assets/images/ruby.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/assets/images/ruby.svg -------------------------------------------------------------------------------- /app/assets/images/rust.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/assets/images/rust.svg -------------------------------------------------------------------------------- /app/assets/images/spring.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/assets/images/spring.svg -------------------------------------------------------------------------------- /app/assets/images/swift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/assets/images/swift.svg -------------------------------------------------------------------------------- /app/assets/images/typescript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/assets/images/typescript.svg -------------------------------------------------------------------------------- /app/assets/images/vim.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/assets/images/vim.svg -------------------------------------------------------------------------------- /app/assets/images/vue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/assets/images/vue.svg -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /app/assets/stylesheets/design_system.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/assets/stylesheets/design_system.css -------------------------------------------------------------------------------- /app/assets/stylesheets/issue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/assets/stylesheets/issue.css -------------------------------------------------------------------------------- /app/assets/stylesheets/repository.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/assets/stylesheets/repository.css -------------------------------------------------------------------------------- /app/assets/stylesheets/spinner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/assets/stylesheets/spinner.css -------------------------------------------------------------------------------- /app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/repository_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/controllers/repository_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/design_system_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/helpers/design_system_helper.rb -------------------------------------------------------------------------------- /app/helpers/heroicon_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/helpers/heroicon_helper.rb -------------------------------------------------------------------------------- /app/helpers/issue_helper.rb: -------------------------------------------------------------------------------- 1 | module IssueHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/repository_helper.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module RepositoryHelper 4 | end 5 | -------------------------------------------------------------------------------- /app/javascript/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/javascript/application.js -------------------------------------------------------------------------------- /app/javascript/cdn/unocss-runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/javascript/cdn/unocss-runtime.js -------------------------------------------------------------------------------- /app/javascript/controllers/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/javascript/controllers/application.js -------------------------------------------------------------------------------- /app/javascript/controllers/hello_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/javascript/controllers/hello_controller.js -------------------------------------------------------------------------------- /app/javascript/controllers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/javascript/controllers/index.js -------------------------------------------------------------------------------- /app/javascript/pagination_loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/javascript/pagination_loader.js -------------------------------------------------------------------------------- /app/jobs/application_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/jobs/application_job.rb -------------------------------------------------------------------------------- /app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/issue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/models/issue.rb -------------------------------------------------------------------------------- /app/models/repository.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/models/repository.rb -------------------------------------------------------------------------------- /app/services/github/extract_issues_from_repository.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/services/github/extract_issues_from_repository.rb -------------------------------------------------------------------------------- /app/services/github/extract_repositories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/services/github/extract_repositories.rb -------------------------------------------------------------------------------- /app/views/layouts/_spinner.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/views/layouts/_spinner.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /app/views/repository/_card.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/views/repository/_card.html.erb -------------------------------------------------------------------------------- /app/views/repository/_card_badge.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/views/repository/_card_badge.html.erb -------------------------------------------------------------------------------- /app/views/repository/_tag.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/views/repository/_tag.html.erb -------------------------------------------------------------------------------- /app/views/repository/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/app/views/repository/index.html.erb -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/docker-entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/bin/docker-entrypoint -------------------------------------------------------------------------------- /bin/importmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/bin/importmap -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/bin/setup -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/config/cable.yml -------------------------------------------------------------------------------- /config/credentials.yml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/config/credentials.yml.enc -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/dockerfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/config/dockerfile.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/importmap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/config/importmap.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/heroicon.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/config/initializers/heroicon.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/permissions_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/config/initializers/permissions_policy.rb -------------------------------------------------------------------------------- /config/initializers/sentry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/config/initializers/sentry.rb -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/schedule.rb: -------------------------------------------------------------------------------- 1 | every :day, at: '06:00am' do 2 | rake 'fetch:issues' 3 | end 4 | -------------------------------------------------------------------------------- /config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/config/storage.yml -------------------------------------------------------------------------------- /db/migrate/20230816134816_create_repositories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/db/migrate/20230816134816_create_repositories.rb -------------------------------------------------------------------------------- /db/migrate/20230828184031_create_issues.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/db/migrate/20230828184031_create_issues.rb -------------------------------------------------------------------------------- /db/migrate/20230828185252_change_issue_field_from_type_to_issue_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/db/migrate/20230828185252_change_issue_field_from_type_to_issue_type.rb -------------------------------------------------------------------------------- /db/migrate/20230918175013_add_technology_column_to_repository.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/db/migrate/20230918175013_add_technology_column_to_repository.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /docs/1-como-estilizar-uma-pagina.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/docs/1-como-estilizar-uma-pagina.md -------------------------------------------------------------------------------- /docs/2-como-utilizar-erb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/docs/2-como-utilizar-erb.md -------------------------------------------------------------------------------- /docs/3-como-criar-um-token-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/docs/3-como-criar-um-token-github.md -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/fetch.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/lib/tasks/fetch.rake -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/public/500.html -------------------------------------------------------------------------------- /public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/public/site.webmanifest -------------------------------------------------------------------------------- /spec/helpers/design_system_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/spec/helpers/design_system_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/issue_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/spec/helpers/issue_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/repository_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/spec/helpers/repository_helper_spec.rb -------------------------------------------------------------------------------- /spec/models/issue_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/spec/models/issue_spec.rb -------------------------------------------------------------------------------- /spec/models/repository_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/spec/models/repository_spec.rb -------------------------------------------------------------------------------- /spec/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/spec/rails_helper.rb -------------------------------------------------------------------------------- /spec/requests/issue_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/spec/requests/issue_spec.rb -------------------------------------------------------------------------------- /spec/requests/repository_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/spec/requests/repository_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/4noobs_tracker/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tmp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tmp/pids/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tmp/storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/javascript/.keep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------