Skip to content
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

Tests #3

Merged
merged 17 commits into from
Aug 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,4 @@ node_modules/

# Ignore master key for decrypting credentials and more.
/config/master.key

.env
1 change: 1 addition & 0 deletions .rspec
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
--require spec_helper
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ group :development, :test do
gem 'debug', platforms: %i[mri mingw x64_mingw]
gem 'factory_bot_rails'
gem 'rspec-rails'
gem 'shoulda-matchers', '~> 3.0', require: false
gem 'shoulda-matchers', '~> 3.0'
end

group :development do
Expand Down
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,7 @@

# 📖 Budget App <a name="about-project"></a>

**Budget App** is a clever app that lets you track of your items in a ballance Sheet

**Budget App** is a mobile web application where you can manage your budget: you can see how much money you spent and on what.
## 🛠 Built With <a name="built-with"></a>

### Tech Stack <a name="tech-stack"></a>
Expand All @@ -55,9 +54,9 @@

<!-- Presentation -->

## Video Presentation <a name="video"></a>
## 🎥 Video Presentation <a name="video"></a>

-[Presentation Video](https:)
-[Presentation Video](https://www.loom.com/share/c45771dd78824ad1afdf601ea3a0fbad?sid=86866998-a70c-4ef0-95b4-210712835049)

<!-- GETTING STARTED -->

Expand Down
4 changes: 3 additions & 1 deletion app/assets/stylesheets/application.scss
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,14 @@ h2 {
text-align: center;
background-color: $blue;
padding: 15px 0;
margin: -40px -30px 0 -30px;
margin: -20px -30px 0 -30px;
}

a {
text-decoration: none;
color: $black;
display: flex;
justify-content: center;
}

// Forms
Expand Down
1 change: 0 additions & 1 deletion app/controllers/clothes_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ def create
@cloth.user_id = @user.id
@cloth.group_id = params[:cloth][:group_id]


if @cloth.save
redirect_to group_clothes_path(@cloth.group_id)
else
Expand Down
2 changes: 1 addition & 1 deletion app/views/clothes/_form.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@
<br/>

<div>
<%= form.submit %>
<%= form.submit 'Save', class:"new-buttons" %>
</div>
<% end %>
2 changes: 1 addition & 1 deletion app/views/groups/_form.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@


<div>
<%= form.submit class:"new-buttons"%>
<%= form.submit 'Save', class:"new-buttons"%>
</div>
<% end %>
4 changes: 0 additions & 4 deletions db/migrate/20230807115326_add_confirmation_to_users.rb
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
class AddConfirmationToUsers < ActiveRecord::Migration[7.0]
def change
add_column :users, :confirmation_token, :string
add_column :users, :confirmed_at, :datetime
add_column :users, :confirmation_sent_at, :datetime
add_column :users, :unconfirmed_email, :string

add_index :users, :confirmation_token, unique: true
end
end
5 changes: 0 additions & 5 deletions db/migrate/20230810141321_drop_group_clothes.rb

This file was deleted.

8 changes: 4 additions & 4 deletions db/schema.rb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 0 additions & 12 deletions node_modules/.bin/autoprefixer

This file was deleted.

17 changes: 0 additions & 17 deletions node_modules/.bin/autoprefixer.cmd

This file was deleted.

28 changes: 0 additions & 28 deletions node_modules/.bin/autoprefixer.ps1

This file was deleted.

12 changes: 0 additions & 12 deletions node_modules/.bin/browserslist

This file was deleted.

17 changes: 0 additions & 17 deletions node_modules/.bin/browserslist.cmd

This file was deleted.

28 changes: 0 additions & 28 deletions node_modules/.bin/browserslist.ps1

This file was deleted.

12 changes: 0 additions & 12 deletions node_modules/.bin/cssesc

This file was deleted.

17 changes: 0 additions & 17 deletions node_modules/.bin/cssesc.cmd

This file was deleted.

28 changes: 0 additions & 28 deletions node_modules/.bin/cssesc.ps1

This file was deleted.

12 changes: 0 additions & 12 deletions node_modules/.bin/gonzales

This file was deleted.

17 changes: 0 additions & 17 deletions node_modules/.bin/gonzales.cmd

This file was deleted.

28 changes: 0 additions & 28 deletions node_modules/.bin/gonzales.ps1

This file was deleted.

12 changes: 0 additions & 12 deletions node_modules/.bin/jsesc

This file was deleted.

17 changes: 0 additions & 17 deletions node_modules/.bin/jsesc.cmd

This file was deleted.

Loading
Loading