-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature#01 initial setup #3
Merged
Merged
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
8d81990
chore: Add template issues
marianoalarcon dd65c9f
chore: Add template pull request
marianoalarcon e3e8887
chore: Init rails app
marianoalarcon 073ab44
chore: Add rubocop
marianoalarcon 700b15b
chore: Add rubocop-rails
marianoalarcon 8cc1cb3
chore: Add rubycritic
marianoalarcon 9daf7b4
chore: Add rubycritic-small-badge
marianoalarcon 39c7a96
chore: Add rake gem and run Rubocop to Gemfile
marianoalarcon f174a5f
chore: Add rpec-rails Gemfile
marianoalarcon 1832abd
chore: Install rpec-rails
marianoalarcon 2cc1d52
chore: Add bootstrap
marianoalarcon 58e25eb
chore: Add sqlite3, for test and development environments
marianoalarcon 182d889
chore: setup database.yml and slite3 for test and development environ…
marianoalarcon a2daaf4
chore: Postgresql config database.yml
SpidySamurai 9b4acd3
chore(.ruby-version): update ruby-version in order to add the gemset …
marianoalarcon ea0eacc
chore: Add hamlit and hamlit-rails gems
marianoalarcon 3cdaaa4
chore: Add simple_form gem
marianoalarcon 91bbfa0
chore: Add annotate gem
marianoalarcon 46b417d
chore: Install simple_form
marianoalarcon ffaac49
chore: Add sandi_meter gem and add rake tasks for metrics code
marianoalarcon 1390f0c
Add simplecov and simplecov-small-badge for coverage and add config s…
marianoalarcon File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
defaults |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# 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 the yarn lockfile as having been generated. | ||
yarn.lock linguist-generated | ||
|
||
# Mark any vendored files as having been vendored. | ||
vendor/* linguist-vendored |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
name: BrightCoders Issue Template | ||
about: BrightCoders standard issue template | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
# REQUIREMENTS | ||
Write a detailed description for this issue, provide all necessary information so any member of the project understands | ||
|
||
# DESIGN | ||
Provide references to images of the design, how it looks like now, and how it should look like. | ||
|
||
# Acceptance Criteria | ||
List all required acceptance criteria | ||
- [ ] Criteria 1 | ||
- [ ] Criteria 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# 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 | ||
|
||
# Ignore all logfiles and tempfiles. | ||
/log/* | ||
/tmp/* | ||
!/log/.keep | ||
!/tmp/.keep | ||
|
||
# Ignore pidfiles, but keep the directory. | ||
/tmp/pids/* | ||
!/tmp/pids/ | ||
!/tmp/pids/.keep | ||
|
||
# Ignore uploaded files in development. | ||
/storage/* | ||
!/storage/.keep | ||
|
||
/public/assets | ||
.byebug_history | ||
|
||
# Ignore master key for decrypting credentials and more. | ||
/config/master.key | ||
|
||
/public/packs | ||
/public/packs-test | ||
/node_modules | ||
/yarn-error.log | ||
yarn-debug.log* | ||
.yarn-integrity | ||
coverage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
--require spec_helper |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ruby-2.7.2@kata8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
# frozen_string_literal: true | ||
|
||
source 'https://rubygems.org' | ||
git_source(:github) { |repo| "https://github.com/#{repo}.git" } | ||
|
||
ruby '2.7.2' | ||
|
||
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails', branch: 'main' | ||
gem 'rails', '~> 6.1.3', '>= 6.1.3.2' | ||
# Use postgresql as the database for Active Record | ||
gem 'pg', '~> 1.1' | ||
# Use Puma as the app server | ||
gem 'puma', '~> 5.0' | ||
# Use SCSS for stylesheets | ||
gem 'sass-rails', '>= 6' | ||
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker | ||
gem 'webpacker', '~> 5.0' | ||
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks | ||
gem 'turbolinks', '~> 5' | ||
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder | ||
gem 'jbuilder', '~> 2.7' | ||
# Use Redis adapter to run Action Cable in production | ||
# gem 'redis', '~> 4.0' | ||
# Use Active Model has_secure_password | ||
# gem 'bcrypt', '~> 3.1.7' | ||
|
||
# Use Active Storage variant | ||
# gem 'image_processing', '~> 1.2' | ||
|
||
# Reduces boot times through caching; required in config/boot.rb | ||
gem 'bootsnap', '>= 1.4.4', require: false | ||
|
||
group :development, :test do | ||
# Call 'byebug' anywhere in the code to stop execution and get a debugger console | ||
gem 'byebug', platforms: %i[mri mingw x64_mingw] | ||
gem 'rspec-rails', '~> 5.0' | ||
end | ||
|
||
group :development do | ||
# Access an interactive console on exception pages or by calling 'console' anywhere in the code. | ||
gem 'annotate', '~> 3.1', '>= 3.1.1' | ||
gem 'web-console', '>= 4.1.0' | ||
# Display performance information such as SQL time and flame graphs for each request in your browser. | ||
# Can be configured to work on production as well see: https://github.com/MiniProfiler/rack-mini-profiler/blob/master/README.md | ||
gem 'listen', '~> 3.3' | ||
gem 'rack-mini-profiler', '~> 2.0' | ||
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring | ||
gem 'rubocop', '~> 1.14' | ||
gem 'spring' | ||
# Metrics | ||
gem 'rake', '~> 13.0' | ||
gem 'rubocop-rails', '~> 2.10' | ||
gem 'rubycritic', '~> 4.6' | ||
gem 'rubycritic-small-badge', '~> 0.2.1' | ||
gem 'sandi_meter', '~> 1.2' | ||
# Front | ||
gem 'hamlit', '~> 2.15' | ||
gem 'hamlit-rails', '~> 0.2.3' | ||
gem 'simple_form', '~> 5.1' | ||
end | ||
|
||
group :test do | ||
gem "simplecov", "~> 0.21.2" | ||
gem "simplecov-small-badge", "~> 0.2.4" | ||
end | ||
|
||
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem | ||
# gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could it be that you forgot to configure this gem? or are you going to do it later in other issue?