├── .byebug_history ├── .gitattributes ├── .gitignore ├── .ruby-version ├── Gemfile ├── Gemfile.lock ├── Procfile.dev ├── README.md ├── Rakefile ├── app ├── assets │ ├── builds │ │ └── .keep │ ├── config │ │ └── manifest.js │ ├── images │ │ └── .keep │ └── stylesheets │ │ └── application.bootstrap.scss ├── channels │ └── application_cable │ │ ├── channel.rb │ │ └── connection.rb ├── controllers │ ├── Users │ │ ├── confirmations_controller.rb │ │ ├── omniauth_callbacks_controller.rb │ │ ├── passwords_controller.rb │ │ ├── registrations_controller.rb │ │ ├── sessions_controller.rb │ │ └── unlocks_controller.rb │ ├── agreements_controller.rb │ ├── application_controller.rb │ ├── concerns │ │ └── .keep │ ├── investigators_controller.rb │ ├── minutes_controller.rb │ ├── pages_controller.rb │ ├── projects_controller.rb │ └── transactions_controller.rb ├── helpers │ ├── agreements_helper.rb │ ├── application_helper.rb │ ├── investigators_helper.rb │ ├── minutes_helper.rb │ ├── pages_helper.rb │ ├── projects_helper.rb │ └── transactions_helper.rb ├── javascript │ ├── application.js │ └── controllers │ │ ├── application.js │ │ ├── hello_controller.js │ │ ├── index.js │ │ ├── nested_form_controller.js │ │ └── select_controller.js ├── jobs │ └── application_job.rb ├── mailers │ └── application_mailer.rb ├── models │ ├── agreement.rb │ ├── application_record.rb │ ├── article.rb │ ├── concerns │ │ └── .keep │ ├── investigator.rb │ ├── minute.rb │ ├── project.rb │ ├── project_investigator.rb │ ├── transaction.rb │ └── user.rb └── views │ ├── agreements │ ├── _agreement.html.erb │ ├── _agreement.json.jbuilder │ ├── _form.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── index.json.jbuilder │ ├── new.html.erb │ ├── show.html.erb │ └── show.json.jbuilder │ ├── investigators │ ├── _form.html.erb │ ├── _investigator.html.erb │ ├── _investigator.json.jbuilder │ ├── _investigator_filter.html.erb │ ├── _investigator_table_actions.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── index.json.jbuilder │ ├── new.html.erb │ ├── show.html.erb │ └── show.json.jbuilder │ ├── layouts │ ├── application.html.erb │ ├── mailer.html.erb │ └── mailer.text.erb │ ├── minutes │ ├── _form.html.erb │ ├── _minute.html.erb │ ├── _minute.json.jbuilder │ ├── articles │ │ ├── _articles_fields.html.erb │ │ └── _articles_form.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── index.json.jbuilder │ ├── new.html.erb │ ├── show.html.erb │ └── show.json.jbuilder │ ├── pages │ └── home.html.erb │ ├── projects │ ├── _project.html.erb │ ├── _project.json.jbuilder │ ├── _project_table.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── index.json.jbuilder │ ├── new.html.erb │ ├── project_form │ │ ├── _add_investigator_actions.html.erb │ │ ├── _add_investigator_form.html.erb │ │ ├── _form.html.erb │ │ └── _project_data_form.html.erb │ ├── show.html.erb │ └── show.json.jbuilder │ ├── shared │ ├── _devise_notifications.html.erb │ ├── _investigator_table.html.erb │ └── _navigation.html.erb │ ├── transactions │ ├── _form.html.erb │ ├── _transaction.html.erb │ ├── _transaction.json.jbuilder │ ├── edit.html.erb │ ├── index.html.erb │ ├── index.json.jbuilder │ ├── new.html.erb │ ├── show.html.erb │ └── show.json.jbuilder │ └── users │ ├── confirmations │ └── new.html.erb │ ├── mailer │ ├── confirmation_instructions.html.erb │ ├── email_changed.html.erb │ ├── password_change.html.erb │ ├── reset_password_instructions.html.erb │ └── unlock_instructions.html.erb │ ├── passwords │ ├── edit.html.erb │ └── new.html.erb │ ├── registrations │ ├── edit.html.erb │ └── new.html.erb │ ├── sessions │ └── new.html.erb │ ├── shared │ ├── _error_messages.html.erb │ └── _links.html.erb │ └── unlocks │ └── new.html.erb ├── bin ├── bundle ├── dev ├── rails ├── rake └── setup ├── config.ru ├── config ├── application.rb ├── boot.rb ├── cable.yml ├── credentials.yml.enc ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── assets.rb │ ├── content_security_policy.rb │ ├── devise.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ └── permissions_policy.rb ├── locales │ ├── devise.en.yml │ └── en.yml ├── puma.rb ├── routes.rb └── storage.yml ├── db ├── migrate │ ├── 20220618171429_devise_create_users.rb │ ├── 20220619013813_create_investigators.rb │ ├── 20220619054820_create_projects.rb │ ├── 20220620044002_create_project_investigators.rb │ ├── 20220621045601_create_active_storage_tables.active_storage.rb │ ├── 20220621045935_create_minutes.rb │ ├── 20220806045927_create_articles.rb │ ├── 20220806231734_create_agreements.rb │ ├── 20220806233143_create_transactions.rb │ ├── 20220807025137_add_column_agreement_to_transactions.rb │ └── 20220808195327_add_column_article_to_agreement.rb ├── schema.rb └── seeds.rb ├── lib ├── assets │ └── .keep └── tasks │ └── .keep ├── log └── .keep ├── package.json ├── public ├── 404.html ├── 422.html ├── 500.html ├── apple-touch-icon-precomposed.png ├── apple-touch-icon.png ├── favicon.ico └── robots.txt ├── storage └── .keep ├── test ├── application_system_test_case.rb ├── channels │ └── application_cable │ │ └── connection_test.rb ├── controllers │ ├── .keep │ ├── agreements_controller_test.rb │ ├── investigators_controller_test.rb │ ├── minutes_controller_test.rb │ ├── pages_controller_test.rb │ ├── projects_controller_test.rb │ └── transactions_controller_test.rb ├── fixtures │ ├── agreements.yml │ ├── articles.yml │ ├── files │ │ └── .keep │ ├── investigators.yml │ ├── minutes.yml │ ├── project_investigators.yml │ ├── projects.yml │ ├── transactions.yml │ └── users.yml ├── helpers │ └── .keep ├── integration │ └── .keep ├── mailers │ └── .keep ├── models │ ├── .keep │ ├── agreement_test.rb │ ├── article_test.rb │ ├── investigator_test.rb │ ├── minute_test.rb │ ├── project_investigator_test.rb │ ├── project_test.rb │ ├── transaction_test.rb │ └── user_test.rb ├── system │ ├── .keep │ ├── agreements_test.rb │ ├── investigators_test.rb │ ├── minutes_test.rb │ ├── projects_test.rb │ └── transactions_test.rb └── test_helper.rb ├── tmp ├── .keep ├── pids │ └── .keep └── storage │ └── .keep ├── vendor └── .keep └── yarn.lock /.byebug_history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/.byebug_history -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.1.2 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Procfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/Procfile.dev -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/builds/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/assets/config/manifest.js -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/stylesheets/application.bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/assets/stylesheets/application.bootstrap.scss -------------------------------------------------------------------------------- /app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /app/controllers/Users/confirmations_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/controllers/Users/confirmations_controller.rb -------------------------------------------------------------------------------- /app/controllers/Users/omniauth_callbacks_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/controllers/Users/omniauth_callbacks_controller.rb -------------------------------------------------------------------------------- /app/controllers/Users/passwords_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/controllers/Users/passwords_controller.rb -------------------------------------------------------------------------------- /app/controllers/Users/registrations_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/controllers/Users/registrations_controller.rb -------------------------------------------------------------------------------- /app/controllers/Users/sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/controllers/Users/sessions_controller.rb -------------------------------------------------------------------------------- /app/controllers/Users/unlocks_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/controllers/Users/unlocks_controller.rb -------------------------------------------------------------------------------- /app/controllers/agreements_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/controllers/agreements_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/investigators_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/controllers/investigators_controller.rb -------------------------------------------------------------------------------- /app/controllers/minutes_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/controllers/minutes_controller.rb -------------------------------------------------------------------------------- /app/controllers/pages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/controllers/pages_controller.rb -------------------------------------------------------------------------------- /app/controllers/projects_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/controllers/projects_controller.rb -------------------------------------------------------------------------------- /app/controllers/transactions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/controllers/transactions_controller.rb -------------------------------------------------------------------------------- /app/helpers/agreements_helper.rb: -------------------------------------------------------------------------------- 1 | module AgreementsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/investigators_helper.rb: -------------------------------------------------------------------------------- 1 | module InvestigatorsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/minutes_helper.rb: -------------------------------------------------------------------------------- 1 | module MinutesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/pages_helper.rb: -------------------------------------------------------------------------------- 1 | module PagesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/projects_helper.rb: -------------------------------------------------------------------------------- 1 | module ProjectsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/transactions_helper.rb: -------------------------------------------------------------------------------- 1 | module TransactionsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/javascript/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/javascript/application.js -------------------------------------------------------------------------------- /app/javascript/controllers/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/javascript/controllers/application.js -------------------------------------------------------------------------------- /app/javascript/controllers/hello_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/javascript/controllers/hello_controller.js -------------------------------------------------------------------------------- /app/javascript/controllers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/javascript/controllers/index.js -------------------------------------------------------------------------------- /app/javascript/controllers/nested_form_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/javascript/controllers/nested_form_controller.js -------------------------------------------------------------------------------- /app/javascript/controllers/select_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/javascript/controllers/select_controller.js -------------------------------------------------------------------------------- /app/jobs/application_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/jobs/application_job.rb -------------------------------------------------------------------------------- /app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /app/models/agreement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/models/agreement.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/article.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/models/article.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/investigator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/models/investigator.rb -------------------------------------------------------------------------------- /app/models/minute.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/models/minute.rb -------------------------------------------------------------------------------- /app/models/project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/models/project.rb -------------------------------------------------------------------------------- /app/models/project_investigator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/models/project_investigator.rb -------------------------------------------------------------------------------- /app/models/transaction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/models/transaction.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/views/agreements/_agreement.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/agreements/_agreement.html.erb -------------------------------------------------------------------------------- /app/views/agreements/_agreement.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/agreements/_agreement.json.jbuilder -------------------------------------------------------------------------------- /app/views/agreements/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/agreements/_form.html.erb -------------------------------------------------------------------------------- /app/views/agreements/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/agreements/edit.html.erb -------------------------------------------------------------------------------- /app/views/agreements/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/agreements/index.html.erb -------------------------------------------------------------------------------- /app/views/agreements/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/agreements/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/agreements/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/agreements/new.html.erb -------------------------------------------------------------------------------- /app/views/agreements/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/agreements/show.html.erb -------------------------------------------------------------------------------- /app/views/agreements/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/agreements/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/investigators/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/investigators/_form.html.erb -------------------------------------------------------------------------------- /app/views/investigators/_investigator.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/investigators/_investigator.html.erb -------------------------------------------------------------------------------- /app/views/investigators/_investigator.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/investigators/_investigator.json.jbuilder -------------------------------------------------------------------------------- /app/views/investigators/_investigator_filter.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/investigators/_investigator_filter.html.erb -------------------------------------------------------------------------------- /app/views/investigators/_investigator_table_actions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/investigators/_investigator_table_actions.html.erb -------------------------------------------------------------------------------- /app/views/investigators/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/investigators/edit.html.erb -------------------------------------------------------------------------------- /app/views/investigators/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/investigators/index.html.erb -------------------------------------------------------------------------------- /app/views/investigators/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/investigators/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/investigators/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/investigators/new.html.erb -------------------------------------------------------------------------------- /app/views/investigators/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/investigators/show.html.erb -------------------------------------------------------------------------------- /app/views/investigators/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/investigators/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /app/views/minutes/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/minutes/_form.html.erb -------------------------------------------------------------------------------- /app/views/minutes/_minute.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/minutes/_minute.html.erb -------------------------------------------------------------------------------- /app/views/minutes/_minute.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/minutes/_minute.json.jbuilder -------------------------------------------------------------------------------- /app/views/minutes/articles/_articles_fields.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/minutes/articles/_articles_fields.html.erb -------------------------------------------------------------------------------- /app/views/minutes/articles/_articles_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/minutes/articles/_articles_form.html.erb -------------------------------------------------------------------------------- /app/views/minutes/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/minutes/edit.html.erb -------------------------------------------------------------------------------- /app/views/minutes/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/minutes/index.html.erb -------------------------------------------------------------------------------- /app/views/minutes/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/minutes/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/minutes/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/minutes/new.html.erb -------------------------------------------------------------------------------- /app/views/minutes/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/minutes/show.html.erb -------------------------------------------------------------------------------- /app/views/minutes/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/minutes/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/pages/home.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/pages/home.html.erb -------------------------------------------------------------------------------- /app/views/projects/_project.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/projects/_project.html.erb -------------------------------------------------------------------------------- /app/views/projects/_project.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/projects/_project.json.jbuilder -------------------------------------------------------------------------------- /app/views/projects/_project_table.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/projects/_project_table.html.erb -------------------------------------------------------------------------------- /app/views/projects/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/projects/edit.html.erb -------------------------------------------------------------------------------- /app/views/projects/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/projects/index.html.erb -------------------------------------------------------------------------------- /app/views/projects/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/projects/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/projects/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/projects/new.html.erb -------------------------------------------------------------------------------- /app/views/projects/project_form/_add_investigator_actions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/projects/project_form/_add_investigator_actions.html.erb -------------------------------------------------------------------------------- /app/views/projects/project_form/_add_investigator_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/projects/project_form/_add_investigator_form.html.erb -------------------------------------------------------------------------------- /app/views/projects/project_form/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/projects/project_form/_form.html.erb -------------------------------------------------------------------------------- /app/views/projects/project_form/_project_data_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/projects/project_form/_project_data_form.html.erb -------------------------------------------------------------------------------- /app/views/projects/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/projects/show.html.erb -------------------------------------------------------------------------------- /app/views/projects/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/projects/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/shared/_devise_notifications.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/shared/_devise_notifications.html.erb -------------------------------------------------------------------------------- /app/views/shared/_investigator_table.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/shared/_investigator_table.html.erb -------------------------------------------------------------------------------- /app/views/shared/_navigation.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/shared/_navigation.html.erb -------------------------------------------------------------------------------- /app/views/transactions/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/transactions/_form.html.erb -------------------------------------------------------------------------------- /app/views/transactions/_transaction.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/transactions/_transaction.html.erb -------------------------------------------------------------------------------- /app/views/transactions/_transaction.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/transactions/_transaction.json.jbuilder -------------------------------------------------------------------------------- /app/views/transactions/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/transactions/edit.html.erb -------------------------------------------------------------------------------- /app/views/transactions/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/transactions/index.html.erb -------------------------------------------------------------------------------- /app/views/transactions/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/transactions/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/transactions/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/transactions/new.html.erb -------------------------------------------------------------------------------- /app/views/transactions/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/transactions/show.html.erb -------------------------------------------------------------------------------- /app/views/transactions/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/transactions/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/users/confirmations/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/users/confirmations/new.html.erb -------------------------------------------------------------------------------- /app/views/users/mailer/confirmation_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/users/mailer/confirmation_instructions.html.erb -------------------------------------------------------------------------------- /app/views/users/mailer/email_changed.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/users/mailer/email_changed.html.erb -------------------------------------------------------------------------------- /app/views/users/mailer/password_change.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/users/mailer/password_change.html.erb -------------------------------------------------------------------------------- /app/views/users/mailer/reset_password_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/users/mailer/reset_password_instructions.html.erb -------------------------------------------------------------------------------- /app/views/users/mailer/unlock_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/users/mailer/unlock_instructions.html.erb -------------------------------------------------------------------------------- /app/views/users/passwords/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/users/passwords/edit.html.erb -------------------------------------------------------------------------------- /app/views/users/passwords/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/users/passwords/new.html.erb -------------------------------------------------------------------------------- /app/views/users/registrations/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/users/registrations/edit.html.erb -------------------------------------------------------------------------------- /app/views/users/registrations/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/users/registrations/new.html.erb -------------------------------------------------------------------------------- /app/views/users/sessions/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/users/sessions/new.html.erb -------------------------------------------------------------------------------- /app/views/users/shared/_error_messages.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/users/shared/_error_messages.html.erb -------------------------------------------------------------------------------- /app/views/users/shared/_links.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/users/shared/_links.html.erb -------------------------------------------------------------------------------- /app/views/users/unlocks/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/app/views/users/unlocks/new.html.erb -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/bin/dev -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/bin/setup -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/config/cable.yml -------------------------------------------------------------------------------- /config/credentials.yml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/config/credentials.yml.enc -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /config/initializers/devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/config/initializers/devise.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/permissions_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/config/initializers/permissions_policy.rb -------------------------------------------------------------------------------- /config/locales/devise.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/config/locales/devise.en.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/config/storage.yml -------------------------------------------------------------------------------- /db/migrate/20220618171429_devise_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/db/migrate/20220618171429_devise_create_users.rb -------------------------------------------------------------------------------- /db/migrate/20220619013813_create_investigators.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/db/migrate/20220619013813_create_investigators.rb -------------------------------------------------------------------------------- /db/migrate/20220619054820_create_projects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/db/migrate/20220619054820_create_projects.rb -------------------------------------------------------------------------------- /db/migrate/20220620044002_create_project_investigators.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/db/migrate/20220620044002_create_project_investigators.rb -------------------------------------------------------------------------------- /db/migrate/20220621045601_create_active_storage_tables.active_storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/db/migrate/20220621045601_create_active_storage_tables.active_storage.rb -------------------------------------------------------------------------------- /db/migrate/20220621045935_create_minutes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/db/migrate/20220621045935_create_minutes.rb -------------------------------------------------------------------------------- /db/migrate/20220806045927_create_articles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/db/migrate/20220806045927_create_articles.rb -------------------------------------------------------------------------------- /db/migrate/20220806231734_create_agreements.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/db/migrate/20220806231734_create_agreements.rb -------------------------------------------------------------------------------- /db/migrate/20220806233143_create_transactions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/db/migrate/20220806233143_create_transactions.rb -------------------------------------------------------------------------------- /db/migrate/20220807025137_add_column_agreement_to_transactions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/db/migrate/20220807025137_add_column_agreement_to_transactions.rb -------------------------------------------------------------------------------- /db/migrate/20220808195327_add_column_article_to_agreement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/db/migrate/20220808195327_add_column_article_to_agreement.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/package.json -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/public/500.html -------------------------------------------------------------------------------- /public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/public/robots.txt -------------------------------------------------------------------------------- /storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/application_system_test_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/test/application_system_test_case.rb -------------------------------------------------------------------------------- /test/channels/application_cable/connection_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/test/channels/application_cable/connection_test.rb -------------------------------------------------------------------------------- /test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/controllers/agreements_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/test/controllers/agreements_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/investigators_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/test/controllers/investigators_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/minutes_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/test/controllers/minutes_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/pages_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/test/controllers/pages_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/projects_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/test/controllers/projects_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/transactions_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/test/controllers/transactions_controller_test.rb -------------------------------------------------------------------------------- /test/fixtures/agreements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/test/fixtures/agreements.yml -------------------------------------------------------------------------------- /test/fixtures/articles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/test/fixtures/articles.yml -------------------------------------------------------------------------------- /test/fixtures/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/investigators.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/test/fixtures/investigators.yml -------------------------------------------------------------------------------- /test/fixtures/minutes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/test/fixtures/minutes.yml -------------------------------------------------------------------------------- /test/fixtures/project_investigators.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/test/fixtures/project_investigators.yml -------------------------------------------------------------------------------- /test/fixtures/projects.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/test/fixtures/projects.yml -------------------------------------------------------------------------------- /test/fixtures/transactions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/test/fixtures/transactions.yml -------------------------------------------------------------------------------- /test/fixtures/users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/test/fixtures/users.yml -------------------------------------------------------------------------------- /test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/agreement_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/test/models/agreement_test.rb -------------------------------------------------------------------------------- /test/models/article_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/test/models/article_test.rb -------------------------------------------------------------------------------- /test/models/investigator_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/test/models/investigator_test.rb -------------------------------------------------------------------------------- /test/models/minute_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/test/models/minute_test.rb -------------------------------------------------------------------------------- /test/models/project_investigator_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/test/models/project_investigator_test.rb -------------------------------------------------------------------------------- /test/models/project_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/test/models/project_test.rb -------------------------------------------------------------------------------- /test/models/transaction_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/test/models/transaction_test.rb -------------------------------------------------------------------------------- /test/models/user_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/test/models/user_test.rb -------------------------------------------------------------------------------- /test/system/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/system/agreements_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/test/system/agreements_test.rb -------------------------------------------------------------------------------- /test/system/investigators_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/test/system/investigators_test.rb -------------------------------------------------------------------------------- /test/system/minutes_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/test/system/minutes_test.rb -------------------------------------------------------------------------------- /test/system/projects_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/test/system/projects_test.rb -------------------------------------------------------------------------------- /test/system/transactions_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/test/system/transactions_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /tmp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tmp/pids/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tmp/storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlosDVargas/CoordinacionInvestigacion/HEAD/yarn.lock --------------------------------------------------------------------------------