From 13bdaf0bd20fb74b34a9a0cc4a90a9db9a6fb1c4 Mon Sep 17 00:00:00 2001 From: Manuel Bustillo Date: Sat, 30 Nov 2024 10:03:46 +0000 Subject: [PATCH] Add copyright notice --- app/models/user.rb | 2 ++ config/initializers/devise.rb | 2 ++ db/migrate/20241130095753_devise_create_users.rb | 2 ++ db/schema.rb | 2 ++ spec/factories/users.rb | 2 ++ spec/models/user_spec.rb | 2 ++ 6 files changed, 12 insertions(+) diff --git a/app/models/user.rb b/app/models/user.rb index 2104185..ff94b20 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -1,3 +1,5 @@ +# Copyright (C) 2024 Manuel Bustillo + # == Schema Information # # Table name: users diff --git a/config/initializers/devise.rb b/config/initializers/devise.rb index 7de951c..77d542f 100644 --- a/config/initializers/devise.rb +++ b/config/initializers/devise.rb @@ -1,3 +1,5 @@ +# Copyright (C) 2024 Manuel Bustillo + # frozen_string_literal: true # Assuming you have not yet modified this file, each configuration option below diff --git a/db/migrate/20241130095753_devise_create_users.rb b/db/migrate/20241130095753_devise_create_users.rb index 718cea0..d1fb02d 100644 --- a/db/migrate/20241130095753_devise_create_users.rb +++ b/db/migrate/20241130095753_devise_create_users.rb @@ -1,3 +1,5 @@ +# Copyright (C) 2024 Manuel Bustillo + # frozen_string_literal: true class DeviseCreateUsers < ActiveRecord::Migration[8.0] diff --git a/db/schema.rb b/db/schema.rb index 4297661..45b3d87 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -1,3 +1,5 @@ +# Copyright (C) 2024 Manuel Bustillo + # 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. diff --git a/spec/factories/users.rb b/spec/factories/users.rb index 628434c..7839fbe 100644 --- a/spec/factories/users.rb +++ b/spec/factories/users.rb @@ -1,3 +1,5 @@ +# Copyright (C) 2024 Manuel Bustillo + FactoryBot.define do factory :user do diff --git a/spec/models/user_spec.rb b/spec/models/user_spec.rb index 47a31bb..0277d58 100644 --- a/spec/models/user_spec.rb +++ b/spec/models/user_spec.rb @@ -1,3 +1,5 @@ +# Copyright (C) 2024 Manuel Bustillo + require 'rails_helper' RSpec.describe User, type: :model do