├── README.md ├── aula012 ├── aula012.1.rb └── aula012.rb ├── aula013 ├── aula013.1.rb ├── aula013.2.rb ├── aula013.rb └── soma.rb ├── aula014 └── nomes.rb ├── aula015 └── metodos.rb ├── aula016 ├── constantes.rb ├── eval.rb ├── instanceof.rb ├── parenteses.rb ├── ranges.rb └── splitjoin.rb ├── aula017 └── pessoa.rb ├── aula018 ├── pessoa.rb ├── pessoa_fisica.rb └── pessoa_juridica.rb ├── aula019 ├── frete.rb ├── init.rb ├── pagamento.rb └── venda.rb ├── aula022 └── agenda.ep ├── aula023 ├── agenda.dmd └── agenda │ ├── ChangeRequests.local │ ├── businessinfo │ ├── Business Information.xml │ └── Objects.local │ ├── datatypes │ ├── DDLSelection.local │ ├── DataTypes.xml │ ├── Diagrams.local │ ├── Objects.local │ ├── structuredtype │ │ └── seg_0 │ │ │ ├── 47E390DE-0671-C4B1-8428-0F45CBEE18F8.xml │ │ │ └── F72C39E0-D1CA-8821-2AD7-A1E95A37D3D1.xml │ └── subviews │ │ └── B3025A68-51F2-57FE-DF1C-A92E3680AC0F.xml │ ├── dl_settings.xml │ ├── dl_settings.xml.merge_conflicts.local │ ├── dmd_open.local │ ├── logical │ ├── Diagrams.local │ ├── Logical.xml │ ├── Objects.local │ └── subviews │ │ └── B2713D35-FACB-C018-5B72-C19EE0480309.xml │ ├── mapping │ ├── DeletedMap_RMA96B76F7-0541-D945-9347-96001F1F8AC5.xml │ ├── ExtendedMap.xml │ └── ExtendedMap_RMA96B76F7-0541-D945-9347-96001F1F8AC5.xml │ ├── pm │ ├── Objects.local │ └── Process Model.xml │ ├── rdbms │ └── agenda_RDBMSSites.xml │ └── rel │ ├── A96B76F7-96001F1F8AC5.xml │ └── A96B76F7-96001F1F8AC5 │ ├── DDLSelection.local │ ├── Diagrams.local │ ├── Objects.local │ ├── foreignkey │ └── seg_0 │ │ ├── 1DD6B8EF-F9A6-0461-E1D7-34246E01D60E.xml │ │ ├── 62B32C42-6551-1BD5-1182-D44F78E4AAAC.xml │ │ └── 9B92561E-9F18-4D63-ACD0-A5246D2E4925.xml │ ├── subviews │ └── 6599FF58-D3A8-CD2A-BC4D-36A289171276.xml │ └── table │ └── seg_0 │ ├── 00EA44F1-DD8A-2A16-F087-A3D861E97B1A.xml │ ├── 0CA73B9F-5B1E-6872-3C89-6A551EE846A3.xml │ ├── 27CBDA48-F04D-4AB1-34A4-1B3B40038C63.xml │ └── DE34C081-8870-2AE1-B5A8-CE9C8C8AB8BE.xml ├── aula025 └── notebook │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.rdoc │ ├── Rakefile │ ├── app │ ├── assets │ │ ├── images │ │ │ └── .keep │ │ ├── javascripts │ │ │ ├── addresses.coffee │ │ │ ├── application.js │ │ │ ├── contacts.coffee │ │ │ ├── kinds.coffee │ │ │ └── phones.coffee │ │ └── stylesheets │ │ │ ├── addresses.scss │ │ │ ├── application.css │ │ │ ├── contacts.scss │ │ │ ├── kinds.scss │ │ │ ├── phones.scss │ │ │ └── scaffolds.scss │ ├── controllers │ │ ├── addresses_controller.rb │ │ ├── application_controller.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contacts_controller.rb │ │ ├── kinds_controller.rb │ │ └── phones_controller.rb │ ├── helpers │ │ ├── addresses_helper.rb │ │ ├── application_helper.rb │ │ ├── contacts_helper.rb │ │ ├── kinds_helper.rb │ │ └── phones_helper.rb │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contact.rb │ │ ├── kind.rb │ │ └── phone.rb │ └── views │ │ ├── addresses │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── contacts │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── kinds │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── layouts │ │ └── application.html.erb │ │ └── phones │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ ├── bin │ ├── bundle │ ├── rails │ ├── rake │ ├── setup │ └── spring │ ├── config.ru │ ├── config │ ├── application.rb │ ├── boot.rb │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── assets.rb │ │ ├── backtrace_silencers.rb │ │ ├── cookies_serializer.rb │ │ ├── filter_parameter_logging.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ ├── session_store.rb │ │ └── wrap_parameters.rb │ ├── locales │ │ └── en.yml │ ├── routes.rb │ └── secrets.yml │ ├── db │ ├── migrate │ │ ├── 20160531010402_create_kinds.rb │ │ ├── 20160531010605_create_contacts.rb │ │ ├── 20160531010710_create_addresses.rb │ │ └── 20160531010745_create_phones.rb │ └── seeds.rb │ ├── lib │ ├── assets │ │ └── .keep │ └── tasks │ │ └── .keep │ ├── log │ ├── .keep │ ├── PRODUCTION.log │ └── development.log │ ├── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── favicon.ico │ └── robots.txt │ ├── test │ ├── controllers │ │ ├── .keep │ │ ├── addresses_controller_test.rb │ │ ├── contacts_controller_test.rb │ │ ├── kinds_controller_test.rb │ │ └── phones_controller_test.rb │ ├── fixtures │ │ ├── .keep │ │ ├── addresses.yml │ │ ├── contacts.yml │ │ ├── kinds.yml │ │ └── phones.yml │ ├── helpers │ │ └── .keep │ ├── integration │ │ └── .keep │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address_test.rb │ │ ├── contact_test.rb │ │ ├── kind_test.rb │ │ └── phone_test.rb │ └── test_helper.rb │ └── vendor │ └── assets │ ├── javascripts │ └── .keep │ └── stylesheets │ └── .keep ├── aula027 └── notebook │ ├── .gitignore │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.rdoc │ ├── Rakefile │ ├── app │ ├── assets │ │ ├── images │ │ │ └── .keep │ │ ├── javascripts │ │ │ ├── addresses.coffee │ │ │ ├── application.js │ │ │ ├── contacts.coffee │ │ │ ├── kinds.coffee │ │ │ └── phones.coffee │ │ └── stylesheets │ │ │ ├── addresses.scss │ │ │ ├── application.css │ │ │ ├── contacts.scss │ │ │ ├── kinds.scss │ │ │ ├── phones.scss │ │ │ └── scaffolds.scss │ ├── controllers │ │ ├── addresses_controller.rb │ │ ├── application_controller.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contacts_controller.rb │ │ ├── kinds_controller.rb │ │ └── phones_controller.rb │ ├── helpers │ │ ├── addresses_helper.rb │ │ ├── application_helper.rb │ │ ├── contacts_helper.rb │ │ ├── kinds_helper.rb │ │ └── phones_helper.rb │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contact.rb │ │ ├── kind.rb │ │ └── phone.rb │ └── views │ │ ├── addresses │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── contacts │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── kinds │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── layouts │ │ └── application.html.erb │ │ └── phones │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ ├── bin │ ├── bundle │ ├── rails │ ├── rake │ ├── setup │ └── spring │ ├── config.ru │ ├── config │ ├── application.rb │ ├── boot.rb │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── assets.rb │ │ ├── backtrace_silencers.rb │ │ ├── cookies_serializer.rb │ │ ├── filter_parameter_logging.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ ├── session_store.rb │ │ └── wrap_parameters.rb │ ├── locales │ │ └── en.yml │ ├── routes.rb │ └── secrets.yml │ ├── db │ ├── migrate │ │ ├── 20160531010402_create_kinds.rb │ │ ├── 20160531010605_create_contacts.rb │ │ ├── 20160531010710_create_addresses.rb │ │ └── 20160531010745_create_phones.rb │ ├── schema.rb │ └── seeds.rb │ ├── lib │ ├── assets │ │ └── .keep │ └── tasks │ │ └── .keep │ ├── log │ └── .keep │ ├── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── favicon.ico │ └── robots.txt │ ├── test │ ├── controllers │ │ ├── .keep │ │ ├── addresses_controller_test.rb │ │ ├── contacts_controller_test.rb │ │ ├── kinds_controller_test.rb │ │ └── phones_controller_test.rb │ ├── fixtures │ │ ├── .keep │ │ ├── addresses.yml │ │ ├── contacts.yml │ │ ├── kinds.yml │ │ └── phones.yml │ ├── helpers │ │ └── .keep │ ├── integration │ │ └── .keep │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address_test.rb │ │ ├── contact_test.rb │ │ ├── kind_test.rb │ │ └── phone_test.rb │ └── test_helper.rb │ └── vendor │ └── assets │ ├── javascripts │ └── .keep │ └── stylesheets │ └── .keep ├── aula028 └── notebook │ ├── .gitignore │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.rdoc │ ├── Rakefile │ ├── app │ ├── assets │ │ ├── images │ │ │ └── .keep │ │ ├── javascripts │ │ │ ├── addresses.coffee │ │ │ ├── application.js │ │ │ ├── contacts.coffee │ │ │ ├── home.coffee │ │ │ ├── kinds.coffee │ │ │ └── phones.coffee │ │ └── stylesheets │ │ │ ├── addresses.scss │ │ │ ├── application.css │ │ │ ├── contacts.scss │ │ │ ├── home.scss │ │ │ ├── kinds.scss │ │ │ ├── phones.scss │ │ │ └── scaffolds.scss │ ├── controllers │ │ ├── addresses_controller.rb │ │ ├── application_controller.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contacts_controller.rb │ │ ├── home_controller.rb │ │ ├── kinds_controller.rb │ │ └── phones_controller.rb │ ├── helpers │ │ ├── addresses_helper.rb │ │ ├── application_helper.rb │ │ ├── contacts_helper.rb │ │ ├── home_helper.rb │ │ ├── kinds_helper.rb │ │ └── phones_helper.rb │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contact.rb │ │ ├── kind.rb │ │ └── phone.rb │ └── views │ │ ├── addresses │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── contacts │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── home │ │ └── index.html.erb │ │ ├── kinds │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── layouts │ │ └── application.html.erb │ │ └── phones │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ ├── bin │ ├── bundle │ ├── rails │ ├── rake │ ├── setup │ └── spring │ ├── config.ru │ ├── config │ ├── application.rb │ ├── boot.rb │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── assets.rb │ │ ├── backtrace_silencers.rb │ │ ├── cookies_serializer.rb │ │ ├── filter_parameter_logging.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ ├── session_store.rb │ │ └── wrap_parameters.rb │ ├── locales │ │ └── en.yml │ ├── routes.rb │ └── secrets.yml │ ├── db │ ├── migrate │ │ ├── 20160531010402_create_kinds.rb │ │ ├── 20160531010605_create_contacts.rb │ │ ├── 20160531010710_create_addresses.rb │ │ └── 20160531010745_create_phones.rb │ ├── schema.rb │ └── seeds.rb │ ├── lib │ ├── assets │ │ └── .keep │ └── tasks │ │ └── .keep │ ├── log │ └── .keep │ ├── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── favicon.ico │ └── robots.txt │ ├── test │ ├── controllers │ │ ├── .keep │ │ ├── addresses_controller_test.rb │ │ ├── contacts_controller_test.rb │ │ ├── home_controller_test.rb │ │ ├── kinds_controller_test.rb │ │ └── phones_controller_test.rb │ ├── fixtures │ │ ├── .keep │ │ ├── addresses.yml │ │ ├── contacts.yml │ │ ├── kinds.yml │ │ └── phones.yml │ ├── helpers │ │ └── .keep │ ├── integration │ │ └── .keep │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address_test.rb │ │ ├── contact_test.rb │ │ ├── kind_test.rb │ │ └── phone_test.rb │ └── test_helper.rb │ └── vendor │ └── assets │ ├── javascripts │ └── .keep │ └── stylesheets │ └── .keep ├── aula029 └── notebook │ ├── .gitignore │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.rdoc │ ├── Rakefile │ ├── app │ ├── assets │ │ ├── images │ │ │ └── .keep │ │ ├── javascripts │ │ │ ├── addresses.coffee │ │ │ ├── application.js │ │ │ ├── contacts.coffee │ │ │ ├── home.coffee │ │ │ ├── kinds.coffee │ │ │ └── phones.coffee │ │ └── stylesheets │ │ │ ├── addresses.scss │ │ │ ├── application.css │ │ │ ├── contacts.scss │ │ │ ├── home.scss │ │ │ ├── kinds.scss │ │ │ ├── phones.scss │ │ │ └── scaffolds.scss │ ├── controllers │ │ ├── addresses_controller.rb │ │ ├── application_controller.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contacts_controller.rb │ │ ├── home_controller.rb │ │ ├── kinds_controller.rb │ │ └── phones_controller.rb │ ├── helpers │ │ ├── addresses_helper.rb │ │ ├── application_helper.rb │ │ ├── contacts_helper.rb │ │ ├── home_helper.rb │ │ ├── kinds_helper.rb │ │ └── phones_helper.rb │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contact.rb │ │ ├── kind.rb │ │ └── phone.rb │ └── views │ │ ├── addresses │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── contacts │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── home │ │ └── index.html.erb │ │ ├── kinds │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── layouts │ │ └── application.html.erb │ │ └── phones │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ ├── bin │ ├── bundle │ ├── rails │ ├── rake │ ├── setup │ └── spring │ ├── config.ru │ ├── config │ ├── application.rb │ ├── boot.rb │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── assets.rb │ │ ├── backtrace_silencers.rb │ │ ├── cookies_serializer.rb │ │ ├── filter_parameter_logging.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ ├── session_store.rb │ │ └── wrap_parameters.rb │ ├── locales │ │ └── en.yml │ ├── routes.rb │ └── secrets.yml │ ├── db │ ├── migrate │ │ ├── 20160531010402_create_kinds.rb │ │ ├── 20160531010605_create_contacts.rb │ │ ├── 20160531010710_create_addresses.rb │ │ └── 20160531010745_create_phones.rb │ ├── schema.rb │ └── seeds.rb │ ├── lib │ ├── assets │ │ └── .keep │ └── tasks │ │ └── .keep │ ├── log │ └── .keep │ ├── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── favicon.ico │ └── robots.txt │ ├── test │ ├── controllers │ │ ├── .keep │ │ ├── addresses_controller_test.rb │ │ ├── contacts_controller_test.rb │ │ ├── home_controller_test.rb │ │ ├── kinds_controller_test.rb │ │ └── phones_controller_test.rb │ ├── fixtures │ │ ├── .keep │ │ ├── addresses.yml │ │ ├── contacts.yml │ │ ├── kinds.yml │ │ └── phones.yml │ ├── helpers │ │ └── .keep │ ├── integration │ │ └── .keep │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address_test.rb │ │ ├── contact_test.rb │ │ ├── kind_test.rb │ │ └── phone_test.rb │ └── test_helper.rb │ └── vendor │ └── assets │ ├── javascripts │ └── .keep │ └── stylesheets │ └── .keep ├── aula030 └── notebook │ ├── .gitignore │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.rdoc │ ├── Rakefile │ ├── app │ ├── assets │ │ ├── images │ │ │ └── .keep │ │ ├── javascripts │ │ │ ├── addresses.coffee │ │ │ ├── application.js │ │ │ ├── contacts.coffee │ │ │ ├── home.coffee │ │ │ ├── kinds.coffee │ │ │ └── phones.coffee │ │ └── stylesheets │ │ │ ├── addresses.scss │ │ │ ├── application.css │ │ │ ├── contacts.scss │ │ │ ├── home.scss │ │ │ ├── kinds.scss │ │ │ ├── phones.scss │ │ │ └── scaffolds.scss │ ├── controllers │ │ ├── addresses_controller.rb │ │ ├── application_controller.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contacts_controller.rb │ │ ├── home_controller.rb │ │ ├── kinds_controller.rb │ │ └── phones_controller.rb │ ├── helpers │ │ ├── addresses_helper.rb │ │ ├── application_helper.rb │ │ ├── contacts_helper.rb │ │ ├── home_helper.rb │ │ ├── kinds_helper.rb │ │ └── phones_helper.rb │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contact.rb │ │ ├── kind.rb │ │ └── phone.rb │ └── views │ │ ├── addresses │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── contacts │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── home │ │ └── index.html.erb │ │ ├── kinds │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── layouts │ │ └── application.html.erb │ │ └── phones │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ ├── bin │ ├── bundle │ ├── rails │ ├── rake │ ├── setup │ └── spring │ ├── config.ru │ ├── config │ ├── application.rb │ ├── boot.rb │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── assets.rb │ │ ├── backtrace_silencers.rb │ │ ├── cookies_serializer.rb │ │ ├── filter_parameter_logging.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ ├── session_store.rb │ │ └── wrap_parameters.rb │ ├── locales │ │ └── en.yml │ ├── routes.rb │ └── secrets.yml │ ├── db │ ├── migrate │ │ ├── 20160531010402_create_kinds.rb │ │ ├── 20160531010605_create_contacts.rb │ │ ├── 20160531010710_create_addresses.rb │ │ └── 20160531010745_create_phones.rb │ ├── schema.rb │ └── seeds.rb │ ├── lib │ ├── assets │ │ └── .keep │ └── tasks │ │ └── .keep │ ├── log │ └── .keep │ ├── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── favicon.ico │ └── robots.txt │ ├── test │ ├── controllers │ │ ├── .keep │ │ ├── addresses_controller_test.rb │ │ ├── contacts_controller_test.rb │ │ ├── home_controller_test.rb │ │ ├── kinds_controller_test.rb │ │ └── phones_controller_test.rb │ ├── fixtures │ │ ├── .keep │ │ ├── addresses.yml │ │ ├── contacts.yml │ │ ├── kinds.yml │ │ └── phones.yml │ ├── helpers │ │ └── .keep │ ├── integration │ │ └── .keep │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address_test.rb │ │ ├── contact_test.rb │ │ ├── kind_test.rb │ │ └── phone_test.rb │ └── test_helper.rb │ └── vendor │ └── assets │ ├── javascripts │ └── .keep │ └── stylesheets │ └── .keep ├── aula031 └── notebook │ ├── .gitignore │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.rdoc │ ├── Rakefile │ ├── app │ ├── assets │ │ ├── images │ │ │ └── .keep │ │ ├── javascripts │ │ │ ├── addresses.coffee │ │ │ ├── application.js │ │ │ ├── contacts.coffee │ │ │ ├── home.coffee │ │ │ ├── kinds.coffee │ │ │ └── phones.coffee │ │ └── stylesheets │ │ │ ├── addresses.scss │ │ │ ├── application.css │ │ │ ├── contacts.scss │ │ │ ├── home.scss │ │ │ ├── kinds.scss │ │ │ ├── phones.scss │ │ │ └── scaffolds.scss │ ├── controllers │ │ ├── addresses_controller.rb │ │ ├── application_controller.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contacts_controller.rb │ │ ├── home_controller.rb │ │ ├── kinds_controller.rb │ │ └── phones_controller.rb │ ├── helpers │ │ ├── addresses_helper.rb │ │ ├── application_helper.rb │ │ ├── contacts_helper.rb │ │ ├── home_helper.rb │ │ ├── kinds_helper.rb │ │ └── phones_helper.rb │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contact.rb │ │ ├── kind.rb │ │ └── phone.rb │ └── views │ │ ├── addresses │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── contacts │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── home │ │ └── index.html.erb │ │ ├── kinds │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── layouts │ │ └── application.html.erb │ │ └── phones │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ ├── bin │ ├── bundle │ ├── rails │ ├── rake │ ├── setup │ └── spring │ ├── config.ru │ ├── config │ ├── application.rb │ ├── boot.rb │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── assets.rb │ │ ├── backtrace_silencers.rb │ │ ├── cookies_serializer.rb │ │ ├── filter_parameter_logging.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ ├── session_store.rb │ │ └── wrap_parameters.rb │ ├── locales │ │ └── en.yml │ ├── routes.rb │ └── secrets.yml │ ├── db │ ├── migrate │ │ ├── 20160531010402_create_kinds.rb │ │ ├── 20160531010605_create_contacts.rb │ │ ├── 20160531010710_create_addresses.rb │ │ └── 20160531010745_create_phones.rb │ ├── schema.rb │ └── seeds.rb │ ├── lib │ ├── assets │ │ └── .keep │ └── tasks │ │ └── .keep │ ├── log │ └── .keep │ ├── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── favicon.ico │ └── robots.txt │ ├── test │ ├── controllers │ │ ├── .keep │ │ ├── addresses_controller_test.rb │ │ ├── contacts_controller_test.rb │ │ ├── home_controller_test.rb │ │ ├── kinds_controller_test.rb │ │ └── phones_controller_test.rb │ ├── fixtures │ │ ├── .keep │ │ ├── addresses.yml │ │ ├── contacts.yml │ │ ├── kinds.yml │ │ └── phones.yml │ ├── helpers │ │ └── .keep │ ├── integration │ │ └── .keep │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address_test.rb │ │ ├── contact_test.rb │ │ ├── kind_test.rb │ │ └── phone_test.rb │ └── test_helper.rb │ └── vendor │ └── assets │ ├── javascripts │ └── .keep │ └── stylesheets │ └── .keep ├── aula032 └── notebook │ ├── .gitignore │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.rdoc │ ├── Rakefile │ ├── app │ ├── assets │ │ ├── images │ │ │ └── .keep │ │ ├── javascripts │ │ │ ├── addresses.coffee │ │ │ ├── application.js │ │ │ ├── contacts.coffee │ │ │ ├── home.coffee │ │ │ ├── kinds.coffee │ │ │ └── phones.coffee │ │ └── stylesheets │ │ │ ├── addresses.scss │ │ │ ├── application.css │ │ │ ├── contacts.scss │ │ │ ├── home.scss │ │ │ ├── kinds.scss │ │ │ ├── phones.scss │ │ │ └── scaffolds.scss │ ├── controllers │ │ ├── addresses_controller.rb │ │ ├── application_controller.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contacts_controller.rb │ │ ├── home_controller.rb │ │ ├── kinds_controller.rb │ │ └── phones_controller.rb │ ├── helpers │ │ ├── addresses_helper.rb │ │ ├── application_helper.rb │ │ ├── contacts_helper.rb │ │ ├── home_helper.rb │ │ ├── kinds_helper.rb │ │ └── phones_helper.rb │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contact.rb │ │ ├── kind.rb │ │ └── phone.rb │ └── views │ │ ├── addresses │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── contacts │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── home │ │ └── index.html.erb │ │ ├── kinds │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── layouts │ │ └── application.html.erb │ │ └── phones │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ ├── bin │ ├── bundle │ ├── rails │ ├── rake │ ├── setup │ └── spring │ ├── config.ru │ ├── config │ ├── application.rb │ ├── boot.rb │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── assets.rb │ │ ├── backtrace_silencers.rb │ │ ├── cookies_serializer.rb │ │ ├── filter_parameter_logging.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ ├── session_store.rb │ │ └── wrap_parameters.rb │ ├── locales │ │ └── en.yml │ ├── routes.rb │ └── secrets.yml │ ├── db │ ├── migrate │ │ ├── 20160531010402_create_kinds.rb │ │ ├── 20160531010605_create_contacts.rb │ │ ├── 20160531010710_create_addresses.rb │ │ └── 20160531010745_create_phones.rb │ ├── schema.rb │ └── seeds.rb │ ├── lib │ ├── assets │ │ └── .keep │ └── tasks │ │ └── .keep │ ├── log │ └── .keep │ ├── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── favicon.ico │ └── robots.txt │ ├── test │ ├── controllers │ │ ├── .keep │ │ ├── addresses_controller_test.rb │ │ ├── contacts_controller_test.rb │ │ ├── home_controller_test.rb │ │ ├── kinds_controller_test.rb │ │ └── phones_controller_test.rb │ ├── fixtures │ │ ├── .keep │ │ ├── addresses.yml │ │ ├── contacts.yml │ │ ├── kinds.yml │ │ └── phones.yml │ ├── helpers │ │ └── .keep │ ├── integration │ │ └── .keep │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address_test.rb │ │ ├── contact_test.rb │ │ ├── kind_test.rb │ │ └── phone_test.rb │ └── test_helper.rb │ └── vendor │ └── assets │ ├── javascripts │ └── .keep │ └── stylesheets │ └── .keep ├── aula033 └── notebook │ ├── .gitignore │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.rdoc │ ├── Rakefile │ ├── app │ ├── assets │ │ ├── images │ │ │ └── .keep │ │ ├── javascripts │ │ │ ├── addresses.coffee │ │ │ ├── application.js │ │ │ ├── contacts.coffee │ │ │ ├── home.coffee │ │ │ ├── kinds.coffee │ │ │ └── phones.coffee │ │ └── stylesheets │ │ │ ├── addresses.scss │ │ │ ├── application.css │ │ │ ├── contacts.scss │ │ │ ├── home.scss │ │ │ ├── kinds.scss │ │ │ ├── phones.scss │ │ │ └── scaffolds.scss │ ├── controllers │ │ ├── addresses_controller.rb │ │ ├── application_controller.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contacts_controller.rb │ │ ├── home_controller.rb │ │ ├── kinds_controller.rb │ │ └── phones_controller.rb │ ├── helpers │ │ ├── addresses_helper.rb │ │ ├── application_helper.rb │ │ ├── contacts_helper.rb │ │ ├── home_helper.rb │ │ ├── kinds_helper.rb │ │ └── phones_helper.rb │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contact.rb │ │ ├── kind.rb │ │ └── phone.rb │ └── views │ │ ├── addresses │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── contacts │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── shared │ │ │ └── _teste.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── home │ │ └── index.html.erb │ │ ├── kinds │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── layouts │ │ └── application.html.erb │ │ └── phones │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ ├── bin │ ├── bundle │ ├── rails │ ├── rake │ ├── setup │ └── spring │ ├── config.ru │ ├── config │ ├── application.rb │ ├── boot.rb │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── assets.rb │ │ ├── backtrace_silencers.rb │ │ ├── cookies_serializer.rb │ │ ├── filter_parameter_logging.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ ├── session_store.rb │ │ └── wrap_parameters.rb │ ├── locales │ │ └── en.yml │ ├── routes.rb │ └── secrets.yml │ ├── db │ ├── migrate │ │ ├── 20160531010402_create_kinds.rb │ │ ├── 20160531010605_create_contacts.rb │ │ ├── 20160531010710_create_addresses.rb │ │ └── 20160531010745_create_phones.rb │ ├── schema.rb │ └── seeds.rb │ ├── lib │ ├── assets │ │ └── .keep │ └── tasks │ │ └── .keep │ ├── log │ └── .keep │ ├── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── favicon.ico │ └── robots.txt │ ├── test │ ├── controllers │ │ ├── .keep │ │ ├── addresses_controller_test.rb │ │ ├── contacts_controller_test.rb │ │ ├── home_controller_test.rb │ │ ├── kinds_controller_test.rb │ │ └── phones_controller_test.rb │ ├── fixtures │ │ ├── .keep │ │ ├── addresses.yml │ │ ├── contacts.yml │ │ ├── kinds.yml │ │ └── phones.yml │ ├── helpers │ │ └── .keep │ ├── integration │ │ └── .keep │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address_test.rb │ │ ├── contact_test.rb │ │ ├── kind_test.rb │ │ └── phone_test.rb │ └── test_helper.rb │ └── vendor │ └── assets │ ├── javascripts │ └── .keep │ └── stylesheets │ └── .keep ├── aula034 └── notebook │ ├── .gitignore │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.rdoc │ ├── Rakefile │ ├── app │ ├── assets │ │ ├── images │ │ │ ├── .keep │ │ │ └── down-arrow.png │ │ ├── javascripts │ │ │ ├── addresses.coffee │ │ │ ├── application.js │ │ │ ├── contacts.coffee │ │ │ ├── home.coffee │ │ │ ├── kinds.coffee │ │ │ └── phones.coffee │ │ └── stylesheets │ │ │ ├── addresses.scss │ │ │ ├── application.css │ │ │ ├── contacts.scss │ │ │ ├── home.scss │ │ │ ├── kinds.scss │ │ │ ├── phones.scss │ │ │ ├── scaffolds.old │ │ │ └── scaffolds.scss │ ├── controllers │ │ ├── addresses_controller.rb │ │ ├── application_controller.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contacts_controller.rb │ │ ├── home_controller.rb │ │ ├── kinds_controller.rb │ │ └── phones_controller.rb │ ├── helpers │ │ ├── addresses_helper.rb │ │ ├── application_helper.rb │ │ ├── contacts_helper.rb │ │ ├── home_helper.rb │ │ ├── kinds_helper.rb │ │ └── phones_helper.rb │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contact.rb │ │ ├── kind.rb │ │ └── phone.rb │ └── views │ │ ├── addresses │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── contacts │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── shared │ │ │ └── _teste.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── home │ │ └── index.html.erb │ │ ├── kinds │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── layouts │ │ └── application.html.erb │ │ └── phones │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ ├── bin │ ├── bundle │ ├── rails │ ├── rake │ ├── setup │ └── spring │ ├── config.ru │ ├── config │ ├── application.rb │ ├── boot.rb │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── assets.rb │ │ ├── backtrace_silencers.rb │ │ ├── cookies_serializer.rb │ │ ├── filter_parameter_logging.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ ├── session_store.rb │ │ └── wrap_parameters.rb │ ├── locales │ │ └── en.yml │ ├── routes.rb │ └── secrets.yml │ ├── db │ ├── migrate │ │ ├── 20160531010402_create_kinds.rb │ │ ├── 20160531010605_create_contacts.rb │ │ ├── 20160531010710_create_addresses.rb │ │ └── 20160531010745_create_phones.rb │ ├── schema.rb │ └── seeds.rb │ ├── lib │ ├── assets │ │ └── .keep │ └── tasks │ │ └── .keep │ ├── log │ └── .keep │ ├── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── favicon.ico │ ├── robots.txt │ └── template │ │ ├── form.css │ │ └── form.html │ ├── test │ ├── controllers │ │ ├── .keep │ │ ├── addresses_controller_test.rb │ │ ├── contacts_controller_test.rb │ │ ├── home_controller_test.rb │ │ ├── kinds_controller_test.rb │ │ └── phones_controller_test.rb │ ├── fixtures │ │ ├── .keep │ │ ├── addresses.yml │ │ ├── contacts.yml │ │ ├── kinds.yml │ │ └── phones.yml │ ├── helpers │ │ └── .keep │ ├── integration │ │ └── .keep │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address_test.rb │ │ ├── contact_test.rb │ │ ├── kind_test.rb │ │ └── phone_test.rb │ └── test_helper.rb │ └── vendor │ └── assets │ ├── javascripts │ └── .keep │ └── stylesheets │ └── .keep ├── aula036 └── notebook │ ├── .gitignore │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.rdoc │ ├── Rakefile │ ├── app │ ├── assets │ │ ├── images │ │ │ ├── .keep │ │ │ └── down-arrow.png │ │ ├── javascripts │ │ │ ├── addresses.coffee │ │ │ ├── application.js │ │ │ ├── contacts.coffee │ │ │ ├── home.coffee │ │ │ ├── kinds.coffee │ │ │ └── phones.coffee │ │ └── stylesheets │ │ │ ├── addresses.scss │ │ │ ├── application.css │ │ │ ├── contacts.scss │ │ │ ├── home.scss │ │ │ ├── kinds.scss │ │ │ ├── phones.scss │ │ │ ├── scaffolds.old │ │ │ └── scaffolds.scss │ ├── controllers │ │ ├── addresses_controller.rb │ │ ├── application_controller.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contacts_controller.rb │ │ ├── home_controller.rb │ │ ├── kinds_controller.rb │ │ └── phones_controller.rb │ ├── helpers │ │ ├── addresses_helper.rb │ │ ├── application_helper.rb │ │ ├── contacts_helper.rb │ │ ├── home_helper.rb │ │ ├── kinds_helper.rb │ │ └── phones_helper.rb │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contact.rb │ │ ├── kind.rb │ │ └── phone.rb │ └── views │ │ ├── addresses │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── contacts │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── shared │ │ │ └── _teste.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── home │ │ └── index.html.erb │ │ ├── kinds │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── layouts │ │ └── application.html.erb │ │ └── phones │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ ├── bin │ ├── bundle │ ├── rails │ ├── rake │ ├── setup │ └── spring │ ├── config.ru │ ├── config │ ├── application.rb │ ├── boot.rb │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── assets.rb │ │ ├── backtrace_silencers.rb │ │ ├── cookies_serializer.rb │ │ ├── filter_parameter_logging.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ ├── session_store.rb │ │ └── wrap_parameters.rb │ ├── locales │ │ └── en.yml │ ├── routes.rb │ └── secrets.yml │ ├── db │ ├── migrate │ │ ├── 20160531010402_create_kinds.rb │ │ ├── 20160531010605_create_contacts.rb │ │ ├── 20160531010710_create_addresses.rb │ │ └── 20160531010745_create_phones.rb │ ├── schema.rb │ └── seeds.rb │ ├── lib │ ├── assets │ │ └── .keep │ └── tasks │ │ └── .keep │ ├── log │ └── .keep │ ├── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── favicon.ico │ ├── robots.txt │ └── template │ │ ├── form.css │ │ └── form.html │ ├── test │ ├── controllers │ │ ├── .keep │ │ ├── addresses_controller_test.rb │ │ ├── contacts_controller_test.rb │ │ ├── home_controller_test.rb │ │ ├── kinds_controller_test.rb │ │ └── phones_controller_test.rb │ ├── fixtures │ │ ├── .keep │ │ ├── addresses.yml │ │ ├── contacts.yml │ │ ├── kinds.yml │ │ └── phones.yml │ ├── helpers │ │ └── .keep │ ├── integration │ │ └── .keep │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address_test.rb │ │ ├── contact_test.rb │ │ ├── kind_test.rb │ │ └── phone_test.rb │ └── test_helper.rb │ └── vendor │ └── assets │ ├── javascripts │ └── .keep │ └── stylesheets │ └── .keep ├── aula037 └── notebook │ ├── .gitignore │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.rdoc │ ├── Rakefile │ ├── app │ ├── assets │ │ ├── images │ │ │ ├── .keep │ │ │ └── down-arrow.png │ │ ├── javascripts │ │ │ ├── addresses.coffee │ │ │ ├── application.js │ │ │ ├── contacts.coffee │ │ │ ├── home.coffee │ │ │ ├── kinds.coffee │ │ │ └── phones.coffee │ │ └── stylesheets │ │ │ ├── addresses.scss │ │ │ ├── application.css │ │ │ ├── contacts.scss │ │ │ ├── home.scss │ │ │ ├── kinds.scss │ │ │ ├── phones.scss │ │ │ ├── scaffolds.old │ │ │ └── scaffolds.scss │ ├── controllers │ │ ├── addresses_controller.rb │ │ ├── application_controller.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contacts_controller.rb │ │ ├── home_controller.rb │ │ ├── kinds_controller.rb │ │ └── phones_controller.rb │ ├── helpers │ │ ├── addresses_helper.rb │ │ ├── application_helper.rb │ │ ├── contacts_helper.rb │ │ ├── home_helper.rb │ │ ├── kinds_helper.rb │ │ └── phones_helper.rb │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contact.rb │ │ ├── kind.rb │ │ └── phone.rb │ └── views │ │ ├── addresses │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── contacts │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── shared │ │ │ └── _teste.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── home │ │ └── index.html.erb │ │ ├── kinds │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── layouts │ │ └── application.html.erb │ │ └── phones │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ ├── bin │ ├── bundle │ ├── rails │ ├── rake │ ├── setup │ └── spring │ ├── config.ru │ ├── config │ ├── application.rb │ ├── boot.rb │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── assets.rb │ │ ├── backtrace_silencers.rb │ │ ├── cookies_serializer.rb │ │ ├── filter_parameter_logging.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ ├── session_store.rb │ │ └── wrap_parameters.rb │ ├── locales │ │ └── en.yml │ ├── routes.rb │ └── secrets.yml │ ├── db │ ├── migrate │ │ ├── 20160531010402_create_kinds.rb │ │ ├── 20160531010605_create_contacts.rb │ │ ├── 20160531010710_create_addresses.rb │ │ └── 20160531010745_create_phones.rb │ ├── schema.rb │ └── seeds.rb │ ├── lib │ ├── assets │ │ └── .keep │ └── tasks │ │ ├── .keep │ │ └── utils.rake │ ├── log │ └── .keep │ ├── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── favicon.ico │ ├── robots.txt │ └── template │ │ ├── form.css │ │ └── form.html │ ├── test │ ├── controllers │ │ ├── .keep │ │ ├── addresses_controller_test.rb │ │ ├── contacts_controller_test.rb │ │ ├── home_controller_test.rb │ │ ├── kinds_controller_test.rb │ │ └── phones_controller_test.rb │ ├── fixtures │ │ ├── .keep │ │ ├── addresses.yml │ │ ├── contacts.yml │ │ ├── kinds.yml │ │ └── phones.yml │ ├── helpers │ │ └── .keep │ ├── integration │ │ └── .keep │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address_test.rb │ │ ├── contact_test.rb │ │ ├── kind_test.rb │ │ └── phone_test.rb │ └── test_helper.rb │ └── vendor │ └── assets │ ├── javascripts │ └── .keep │ └── stylesheets │ └── .keep ├── aula040 └── notebook │ ├── .gitignore │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.rdoc │ ├── Rakefile │ ├── app │ ├── assets │ │ ├── images │ │ │ ├── .keep │ │ │ └── down-arrow.png │ │ ├── javascripts │ │ │ ├── addresses.coffee │ │ │ ├── application.js │ │ │ ├── contacts.coffee │ │ │ ├── home.coffee │ │ │ ├── kinds.coffee │ │ │ └── phones.coffee │ │ └── stylesheets │ │ │ ├── addresses.scss │ │ │ ├── application.css │ │ │ ├── contacts.scss │ │ │ ├── home.scss │ │ │ ├── kinds.scss │ │ │ ├── phones.scss │ │ │ ├── scaffolds.old │ │ │ └── scaffolds.scss │ ├── controllers │ │ ├── addresses_controller.rb │ │ ├── application_controller.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contacts_controller.rb │ │ ├── home_controller.rb │ │ ├── kinds_controller.rb │ │ └── phones_controller.rb │ ├── helpers │ │ ├── addresses_helper.rb │ │ ├── application_helper.rb │ │ ├── contacts_helper.rb │ │ ├── home_helper.rb │ │ ├── kinds_helper.rb │ │ └── phones_helper.rb │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contact.rb │ │ ├── kind.rb │ │ └── phone.rb │ └── views │ │ ├── addresses │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── contacts │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── shared │ │ │ └── _teste.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── home │ │ └── index.html.erb │ │ ├── kinds │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── layouts │ │ └── application.html.erb │ │ └── phones │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ ├── bin │ ├── bundle │ ├── rails │ ├── rake │ ├── setup │ └── spring │ ├── config.ru │ ├── config │ ├── application.rb │ ├── boot.rb │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── assets.rb │ │ ├── backtrace_silencers.rb │ │ ├── cookies_serializer.rb │ │ ├── filter_parameter_logging.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ ├── session_store.rb │ │ └── wrap_parameters.rb │ ├── locales │ │ └── en.yml │ ├── routes.rb │ └── secrets.yml │ ├── db │ ├── migrate │ │ ├── 20160531010402_create_kinds.rb │ │ ├── 20160531010605_create_contacts.rb │ │ ├── 20160531010710_create_addresses.rb │ │ └── 20160531010745_create_phones.rb │ ├── schema.rb │ └── seeds.rb │ ├── lib │ ├── assets │ │ └── .keep │ └── tasks │ │ ├── .keep │ │ └── utils.rake │ ├── log │ └── .keep │ ├── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── favicon.ico │ ├── robots.txt │ └── template │ │ ├── form.css │ │ └── form.html │ ├── test │ ├── controllers │ │ ├── .keep │ │ ├── addresses_controller_test.rb │ │ ├── contacts_controller_test.rb │ │ ├── home_controller_test.rb │ │ ├── kinds_controller_test.rb │ │ └── phones_controller_test.rb │ ├── fixtures │ │ ├── .keep │ │ ├── addresses.yml │ │ ├── contacts.yml │ │ ├── kinds.yml │ │ └── phones.yml │ ├── helpers │ │ └── .keep │ ├── integration │ │ └── .keep │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address_test.rb │ │ ├── contact_test.rb │ │ ├── kind_test.rb │ │ └── phone_test.rb │ └── test_helper.rb │ └── vendor │ └── assets │ ├── javascripts │ └── .keep │ └── stylesheets │ └── .keep ├── aula041 └── notebook │ ├── .gitignore │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.rdoc │ ├── Rakefile │ ├── app │ ├── assets │ │ ├── images │ │ │ ├── .keep │ │ │ └── down-arrow.png │ │ ├── javascripts │ │ │ ├── addresses.coffee │ │ │ ├── application.js │ │ │ ├── contacts.coffee │ │ │ ├── home.coffee │ │ │ ├── kinds.coffee │ │ │ └── phones.coffee │ │ └── stylesheets │ │ │ ├── addresses.scss │ │ │ ├── application.css │ │ │ ├── contacts.scss │ │ │ ├── home.scss │ │ │ ├── kinds.scss │ │ │ ├── phones.scss │ │ │ ├── scaffolds.old │ │ │ └── scaffolds.scss │ ├── controllers │ │ ├── addresses_controller.rb │ │ ├── application_controller.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contacts_controller.rb │ │ ├── home_controller.rb │ │ ├── kinds_controller.rb │ │ └── phones_controller.rb │ ├── helpers │ │ ├── addresses_helper.rb │ │ ├── application_helper.rb │ │ ├── contacts_helper.rb │ │ ├── home_helper.rb │ │ ├── kinds_helper.rb │ │ └── phones_helper.rb │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contact.rb │ │ ├── kind.rb │ │ └── phone.rb │ └── views │ │ ├── addresses │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── contacts │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── shared │ │ │ └── _teste.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── home │ │ └── index.html.erb │ │ ├── kinds │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── layouts │ │ └── application.html.erb │ │ └── phones │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ ├── bin │ ├── bundle │ ├── rails │ ├── rake │ ├── setup │ └── spring │ ├── config.ru │ ├── config │ ├── application.rb │ ├── boot.rb │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── assets.rb │ │ ├── backtrace_silencers.rb │ │ ├── cookies_serializer.rb │ │ ├── filter_parameter_logging.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ ├── session_store.rb │ │ └── wrap_parameters.rb │ ├── locales │ │ ├── en.yml │ │ ├── models.pt-BR.yml │ │ └── pt-BR.yml │ ├── routes.rb │ └── secrets.yml │ ├── db │ ├── migrate │ │ ├── 20160531010402_create_kinds.rb │ │ ├── 20160531010605_create_contacts.rb │ │ ├── 20160531010710_create_addresses.rb │ │ └── 20160531010745_create_phones.rb │ ├── schema.rb │ └── seeds.rb │ ├── lib │ ├── assets │ │ └── .keep │ └── tasks │ │ ├── .keep │ │ └── utils.rake │ ├── log │ └── .keep │ ├── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── favicon.ico │ ├── robots.txt │ └── template │ │ ├── form.css │ │ └── form.html │ ├── test │ ├── controllers │ │ ├── .keep │ │ ├── addresses_controller_test.rb │ │ ├── contacts_controller_test.rb │ │ ├── home_controller_test.rb │ │ ├── kinds_controller_test.rb │ │ └── phones_controller_test.rb │ ├── fixtures │ │ ├── .keep │ │ ├── addresses.yml │ │ ├── contacts.yml │ │ ├── kinds.yml │ │ └── phones.yml │ ├── helpers │ │ └── .keep │ ├── integration │ │ └── .keep │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address_test.rb │ │ ├── contact_test.rb │ │ ├── kind_test.rb │ │ └── phone_test.rb │ └── test_helper.rb │ └── vendor │ └── assets │ ├── javascripts │ └── .keep │ └── stylesheets │ └── .keep ├── aula042 └── notebook │ ├── .gitignore │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.rdoc │ ├── Rakefile │ ├── app │ ├── assets │ │ ├── images │ │ │ ├── .keep │ │ │ └── down-arrow.png │ │ ├── javascripts │ │ │ ├── addresses.coffee │ │ │ ├── application.js │ │ │ ├── contacts.coffee │ │ │ ├── home.coffee │ │ │ ├── kinds.coffee │ │ │ └── phones.coffee │ │ └── stylesheets │ │ │ ├── addresses.scss │ │ │ ├── application.css │ │ │ ├── contacts.scss │ │ │ ├── home.scss │ │ │ ├── kinds.scss │ │ │ ├── phones.scss │ │ │ ├── scaffolds.old │ │ │ └── scaffolds.scss │ ├── controllers │ │ ├── addresses_controller.rb │ │ ├── application_controller.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contacts_controller.rb │ │ ├── home_controller.rb │ │ ├── kinds_controller.rb │ │ └── phones_controller.rb │ ├── helpers │ │ ├── addresses_helper.rb │ │ ├── application_helper.rb │ │ ├── contacts_helper.rb │ │ ├── home_helper.rb │ │ ├── kinds_helper.rb │ │ └── phones_helper.rb │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contact.rb │ │ ├── kind.rb │ │ └── phone.rb │ └── views │ │ ├── addresses │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── contacts │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── shared │ │ │ └── _teste.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── home │ │ └── index.html.erb │ │ ├── kinds │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── layouts │ │ └── application.html.erb │ │ └── phones │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ ├── bin │ ├── bundle │ ├── rails │ ├── rake │ ├── setup │ └── spring │ ├── config.ru │ ├── config │ ├── application.rb │ ├── boot.rb │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── assets.rb │ │ ├── backtrace_silencers.rb │ │ ├── cookies_serializer.rb │ │ ├── filter_parameter_logging.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ ├── session_store.rb │ │ └── wrap_parameters.rb │ ├── locales │ │ ├── en.yml │ │ ├── models.pt-BR.yml │ │ └── pt-BR.yml │ ├── routes.rb │ └── secrets.yml │ ├── db │ ├── migrate │ │ ├── 20160531010402_create_kinds.rb │ │ ├── 20160531010605_create_contacts.rb │ │ ├── 20160531010710_create_addresses.rb │ │ └── 20160531010745_create_phones.rb │ ├── schema.rb │ └── seeds.rb │ ├── lib │ ├── assets │ │ └── .keep │ └── tasks │ │ ├── .keep │ │ └── utils.rake │ ├── log │ └── .keep │ ├── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── favicon.ico │ ├── robots.txt │ └── template │ │ ├── form.css │ │ └── form.html │ ├── test │ ├── controllers │ │ ├── .keep │ │ ├── addresses_controller_test.rb │ │ ├── contacts_controller_test.rb │ │ ├── home_controller_test.rb │ │ ├── kinds_controller_test.rb │ │ └── phones_controller_test.rb │ ├── fixtures │ │ ├── .keep │ │ ├── addresses.yml │ │ ├── contacts.yml │ │ ├── kinds.yml │ │ └── phones.yml │ ├── helpers │ │ └── .keep │ ├── integration │ │ └── .keep │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address_test.rb │ │ ├── contact_test.rb │ │ ├── kind_test.rb │ │ └── phone_test.rb │ └── test_helper.rb │ └── vendor │ └── assets │ ├── javascripts │ └── .keep │ └── stylesheets │ └── .keep ├── aula043 └── notebook │ ├── .gitignore │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.rdoc │ ├── Rakefile │ ├── app │ ├── assets │ │ ├── images │ │ │ ├── .keep │ │ │ └── down-arrow.png │ │ ├── javascripts │ │ │ ├── addresses.coffee │ │ │ ├── application.js │ │ │ ├── contacts.coffee │ │ │ ├── home.coffee │ │ │ ├── kinds.coffee │ │ │ └── phones.coffee │ │ └── stylesheets │ │ │ ├── addresses.scss │ │ │ ├── application.css │ │ │ ├── contacts.scss │ │ │ ├── home.scss │ │ │ ├── kinds.scss │ │ │ ├── phones.scss │ │ │ ├── scaffolds.old │ │ │ └── scaffolds.scss │ ├── controllers │ │ ├── addresses_controller.rb │ │ ├── application_controller.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contacts_controller.rb │ │ ├── home_controller.rb │ │ ├── kinds_controller.rb │ │ └── phones_controller.rb │ ├── helpers │ │ ├── addresses_helper.rb │ │ ├── application_helper.rb │ │ ├── contacts_helper.rb │ │ ├── home_helper.rb │ │ ├── kinds_helper.rb │ │ └── phones_helper.rb │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contact.rb │ │ ├── kind.rb │ │ └── phone.rb │ └── views │ │ ├── addresses │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── contacts │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── home │ │ └── index.html.erb │ │ ├── kinds │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── layouts │ │ └── application.html.erb │ │ └── phones │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ ├── bin │ ├── bundle │ ├── rails │ ├── rake │ ├── setup │ └── spring │ ├── config.ru │ ├── config │ ├── application.rb │ ├── boot.rb │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── assets.rb │ │ ├── backtrace_silencers.rb │ │ ├── cookies_serializer.rb │ │ ├── filter_parameter_logging.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ ├── session_store.rb │ │ └── wrap_parameters.rb │ ├── locales │ │ ├── buttons.pt-BR.yml │ │ ├── en.yml │ │ ├── messages.pt-BR.yml │ │ ├── models.pt-BR.yml │ │ └── pt-BR.yml │ ├── routes.rb │ └── secrets.yml │ ├── db │ ├── migrate │ │ ├── 20160531010402_create_kinds.rb │ │ ├── 20160531010605_create_contacts.rb │ │ ├── 20160531010710_create_addresses.rb │ │ └── 20160531010745_create_phones.rb │ ├── schema.rb │ └── seeds.rb │ ├── lib │ ├── assets │ │ └── .keep │ └── tasks │ │ ├── .keep │ │ └── utils.rake │ ├── log │ └── .keep │ ├── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── favicon.ico │ ├── robots.txt │ └── template │ │ ├── form.css │ │ └── form.html │ ├── test │ ├── controllers │ │ ├── .keep │ │ ├── addresses_controller_test.rb │ │ ├── contacts_controller_test.rb │ │ ├── home_controller_test.rb │ │ ├── kinds_controller_test.rb │ │ └── phones_controller_test.rb │ ├── fixtures │ │ ├── .keep │ │ ├── addresses.yml │ │ ├── contacts.yml │ │ ├── kinds.yml │ │ └── phones.yml │ ├── helpers │ │ └── .keep │ ├── integration │ │ └── .keep │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address_test.rb │ │ ├── contact_test.rb │ │ ├── kind_test.rb │ │ └── phone_test.rb │ └── test_helper.rb │ └── vendor │ └── assets │ ├── javascripts │ └── .keep │ └── stylesheets │ └── .keep ├── aula044 └── notebook │ ├── .gitignore │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.rdoc │ ├── Rakefile │ ├── app │ ├── assets │ │ ├── images │ │ │ ├── .keep │ │ │ └── down-arrow.png │ │ ├── javascripts │ │ │ ├── addresses.coffee │ │ │ ├── application.js │ │ │ ├── contacts.coffee │ │ │ ├── home.coffee │ │ │ ├── kinds.coffee │ │ │ └── phones.coffee │ │ └── stylesheets │ │ │ ├── addresses.scss │ │ │ ├── application.css │ │ │ ├── contacts.scss │ │ │ ├── home.scss │ │ │ ├── kinds.scss │ │ │ ├── phones.scss │ │ │ ├── scaffolds.old │ │ │ └── scaffolds.scss │ ├── controllers │ │ ├── addresses_controller.rb │ │ ├── application_controller.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contacts_controller.rb │ │ ├── home_controller.rb │ │ ├── kinds_controller.rb │ │ └── phones_controller.rb │ ├── helpers │ │ ├── addresses_helper.rb │ │ ├── application_helper.rb │ │ ├── contacts_helper.rb │ │ ├── home_helper.rb │ │ ├── kinds_helper.rb │ │ └── phones_helper.rb │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contact.rb │ │ ├── kind.rb │ │ └── phone.rb │ └── views │ │ ├── addresses │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── contacts │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── home │ │ └── index.html.erb │ │ ├── kinds │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── layouts │ │ └── application.html.erb │ │ └── phones │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ ├── bin │ ├── bundle │ ├── rails │ ├── rake │ ├── setup │ └── spring │ ├── config.ru │ ├── config │ ├── application.rb │ ├── boot.rb │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── assets.rb │ │ ├── backtrace_silencers.rb │ │ ├── cookies_serializer.rb │ │ ├── filter_parameter_logging.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ ├── session_store.rb │ │ └── wrap_parameters.rb │ ├── locales │ │ ├── buttons.pt-BR.yml │ │ ├── en.yml │ │ ├── messages.pt-BR.yml │ │ ├── models.pt-BR.yml │ │ └── pt-BR.yml │ ├── routes.rb │ └── secrets.yml │ ├── db │ ├── migrate │ │ ├── 20160531010402_create_kinds.rb │ │ ├── 20160531010605_create_contacts.rb │ │ ├── 20160531010710_create_addresses.rb │ │ └── 20160531010745_create_phones.rb │ ├── schema.rb │ └── seeds.rb │ ├── lib │ ├── assets │ │ └── .keep │ └── tasks │ │ ├── .keep │ │ └── utils.rake │ ├── log │ └── .keep │ ├── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── favicon.ico │ ├── robots.txt │ └── template │ │ ├── form.css │ │ └── form.html │ ├── test │ ├── controllers │ │ ├── .keep │ │ ├── addresses_controller_test.rb │ │ ├── contacts_controller_test.rb │ │ ├── home_controller_test.rb │ │ ├── kinds_controller_test.rb │ │ └── phones_controller_test.rb │ ├── fixtures │ │ ├── .keep │ │ ├── addresses.yml │ │ ├── contacts.yml │ │ ├── kinds.yml │ │ └── phones.yml │ ├── helpers │ │ └── .keep │ ├── integration │ │ └── .keep │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address_test.rb │ │ ├── contact_test.rb │ │ ├── kind_test.rb │ │ └── phone_test.rb │ └── test_helper.rb │ └── vendor │ └── assets │ ├── javascripts │ └── .keep │ └── stylesheets │ └── .keep ├── aula045 └── notebook │ ├── .gitignore │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.rdoc │ ├── Rakefile │ ├── app │ ├── assets │ │ ├── images │ │ │ ├── .keep │ │ │ └── down-arrow.png │ │ ├── javascripts │ │ │ ├── addresses.coffee │ │ │ ├── application.js │ │ │ ├── contacts.coffee │ │ │ ├── home.coffee │ │ │ ├── kinds.coffee │ │ │ └── phones.coffee │ │ └── stylesheets │ │ │ ├── addresses.scss │ │ │ ├── application.css │ │ │ ├── contacts.scss │ │ │ ├── home.scss │ │ │ ├── kinds.scss │ │ │ ├── phones.scss │ │ │ ├── scaffolds.old │ │ │ └── scaffolds.scss │ ├── controllers │ │ ├── addresses_controller.rb │ │ ├── application_controller.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contacts_controller.rb │ │ ├── home_controller.rb │ │ ├── kinds_controller.rb │ │ └── phones_controller.rb │ ├── helpers │ │ ├── addresses_helper.rb │ │ ├── application_helper.rb │ │ ├── contacts_helper.rb │ │ ├── home_helper.rb │ │ ├── kinds_helper.rb │ │ └── phones_helper.rb │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contact.rb │ │ ├── kind.rb │ │ └── phone.rb │ └── views │ │ ├── addresses │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── contacts │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── home │ │ └── index.html.erb │ │ ├── kinds │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── layouts │ │ └── application.html.erb │ │ └── phones │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ ├── bin │ ├── bundle │ ├── rails │ ├── rake │ ├── setup │ └── spring │ ├── config.ru │ ├── config │ ├── application.rb │ ├── boot.rb │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── assets.rb │ │ ├── backtrace_silencers.rb │ │ ├── cookies_serializer.rb │ │ ├── filter_parameter_logging.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ ├── session_store.rb │ │ └── wrap_parameters.rb │ ├── locales │ │ ├── buttons.pt-BR.yml │ │ ├── en.yml │ │ ├── messages.pt-BR.yml │ │ ├── models.pt-BR.yml │ │ └── pt-BR.yml │ ├── routes.rb │ └── secrets.yml │ ├── db │ ├── migrate │ │ ├── 20160531010402_create_kinds.rb │ │ ├── 20160531010605_create_contacts.rb │ │ ├── 20160531010710_create_addresses.rb │ │ └── 20160531010745_create_phones.rb │ ├── schema.rb │ └── seeds.rb │ ├── lib │ ├── assets │ │ └── .keep │ └── tasks │ │ ├── .keep │ │ └── utils.rake │ ├── log │ └── .keep │ ├── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── favicon.ico │ ├── robots.txt │ └── template │ │ ├── form.css │ │ └── form.html │ ├── test │ ├── controllers │ │ ├── .keep │ │ ├── addresses_controller_test.rb │ │ ├── contacts_controller_test.rb │ │ ├── home_controller_test.rb │ │ ├── kinds_controller_test.rb │ │ └── phones_controller_test.rb │ ├── fixtures │ │ ├── .keep │ │ ├── addresses.yml │ │ ├── contacts.yml │ │ ├── kinds.yml │ │ └── phones.yml │ ├── helpers │ │ └── .keep │ ├── integration │ │ └── .keep │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address_test.rb │ │ ├── contact_test.rb │ │ ├── kind_test.rb │ │ └── phone_test.rb │ └── test_helper.rb │ └── vendor │ └── assets │ ├── javascripts │ └── .keep │ └── stylesheets │ └── .keep ├── aula046 └── notebook │ ├── .gitignore │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.rdoc │ ├── Rakefile │ ├── app │ ├── assets │ │ ├── images │ │ │ ├── .keep │ │ │ └── down-arrow.png │ │ ├── javascripts │ │ │ ├── addresses.coffee │ │ │ ├── application.js │ │ │ ├── contacts.coffee │ │ │ ├── home.coffee │ │ │ ├── kinds.coffee │ │ │ └── phones.coffee │ │ └── stylesheets │ │ │ ├── addresses.scss │ │ │ ├── application.css │ │ │ ├── contacts.scss │ │ │ ├── home.scss │ │ │ ├── kinds.scss │ │ │ ├── phones.scss │ │ │ ├── scaffolds.old │ │ │ └── scaffolds.scss │ ├── controllers │ │ ├── addresses_controller.rb │ │ ├── application_controller.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contacts_controller.rb │ │ ├── home_controller.rb │ │ ├── kinds_controller.rb │ │ └── phones_controller.rb │ ├── helpers │ │ ├── addresses_helper.rb │ │ ├── application_helper.rb │ │ ├── contacts_helper.rb │ │ ├── home_helper.rb │ │ ├── kinds_helper.rb │ │ └── phones_helper.rb │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contact.rb │ │ ├── kind.rb │ │ └── phone.rb │ └── views │ │ ├── addresses │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── contacts │ │ ├── _form.html.erb │ │ ├── _phone_fields.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── home │ │ └── index.html.erb │ │ ├── kinds │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── layouts │ │ └── application.html.erb │ │ └── phones │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ ├── bin │ ├── bundle │ ├── rails │ ├── rake │ ├── setup │ └── spring │ ├── config.ru │ ├── config │ ├── application.rb │ ├── boot.rb │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── assets.rb │ │ ├── backtrace_silencers.rb │ │ ├── cookies_serializer.rb │ │ ├── filter_parameter_logging.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ ├── session_store.rb │ │ └── wrap_parameters.rb │ ├── locales │ │ ├── buttons.pt-BR.yml │ │ ├── en.yml │ │ ├── messages.pt-BR.yml │ │ ├── models.pt-BR.yml │ │ └── pt-BR.yml │ ├── routes.rb │ └── secrets.yml │ ├── db │ ├── migrate │ │ ├── 20160531010402_create_kinds.rb │ │ ├── 20160531010605_create_contacts.rb │ │ ├── 20160531010710_create_addresses.rb │ │ └── 20160531010745_create_phones.rb │ ├── schema.rb │ └── seeds.rb │ ├── lib │ ├── assets │ │ └── .keep │ └── tasks │ │ ├── .keep │ │ └── utils.rake │ ├── log │ └── .keep │ ├── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── favicon.ico │ ├── robots.txt │ └── template │ │ ├── form.css │ │ └── form.html │ ├── test │ ├── controllers │ │ ├── .keep │ │ ├── addresses_controller_test.rb │ │ ├── contacts_controller_test.rb │ │ ├── home_controller_test.rb │ │ ├── kinds_controller_test.rb │ │ └── phones_controller_test.rb │ ├── fixtures │ │ ├── .keep │ │ ├── addresses.yml │ │ ├── contacts.yml │ │ ├── kinds.yml │ │ └── phones.yml │ ├── helpers │ │ └── .keep │ ├── integration │ │ └── .keep │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address_test.rb │ │ ├── contact_test.rb │ │ ├── kind_test.rb │ │ └── phone_test.rb │ └── test_helper.rb │ └── vendor │ └── assets │ ├── javascripts │ └── .keep │ └── stylesheets │ └── .keep ├── aula047 └── notebook │ ├── .gitignore │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.rdoc │ ├── Rakefile │ ├── app │ ├── assets │ │ ├── images │ │ │ ├── .keep │ │ │ └── down-arrow.png │ │ ├── javascripts │ │ │ ├── addresses.coffee │ │ │ ├── application.js │ │ │ ├── contacts.coffee │ │ │ ├── home.coffee │ │ │ ├── kinds.coffee │ │ │ └── phones.coffee │ │ └── stylesheets │ │ │ ├── addresses.scss │ │ │ ├── application.css │ │ │ ├── contacts.scss │ │ │ ├── home.scss │ │ │ ├── kinds.scss │ │ │ ├── phones.scss │ │ │ ├── scaffolds.old │ │ │ └── scaffolds.scss │ ├── controllers │ │ ├── addresses_controller.rb │ │ ├── application_controller.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contacts_controller.rb │ │ ├── home_controller.rb │ │ ├── kinds_controller.rb │ │ └── phones_controller.rb │ ├── helpers │ │ ├── addresses_helper.rb │ │ ├── application_helper.rb │ │ ├── contacts_helper.rb │ │ ├── home_helper.rb │ │ ├── kinds_helper.rb │ │ └── phones_helper.rb │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contact.rb │ │ ├── kind.rb │ │ └── phone.rb │ └── views │ │ ├── addresses │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── contacts │ │ ├── _form.html.erb │ │ ├── _phone_fields.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── home │ │ └── index.html.erb │ │ ├── kinds │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── layouts │ │ └── application.html.erb │ │ └── phones │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ ├── bin │ ├── bundle │ ├── rails │ ├── rake │ ├── setup │ └── spring │ ├── config.ru │ ├── config │ ├── application.rb │ ├── boot.rb │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── assets.rb │ │ ├── backtrace_silencers.rb │ │ ├── cookies_serializer.rb │ │ ├── filter_parameter_logging.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ ├── session_store.rb │ │ └── wrap_parameters.rb │ ├── locales │ │ ├── buttons.pt-BR.yml │ │ ├── en.yml │ │ ├── messages.pt-BR.yml │ │ ├── models.pt-BR.yml │ │ └── pt-BR.yml │ ├── routes.rb │ └── secrets.yml │ ├── db │ ├── migrate │ │ ├── 20160531010402_create_kinds.rb │ │ ├── 20160531010605_create_contacts.rb │ │ ├── 20160531010710_create_addresses.rb │ │ └── 20160531010745_create_phones.rb │ ├── schema.rb │ └── seeds.rb │ ├── lib │ ├── assets │ │ └── .keep │ └── tasks │ │ ├── .keep │ │ └── utils.rake │ ├── log │ └── .keep │ ├── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── favicon.ico │ ├── robots.txt │ └── template │ │ ├── form.css │ │ └── form.html │ ├── test │ ├── controllers │ │ ├── .keep │ │ ├── addresses_controller_test.rb │ │ ├── contacts_controller_test.rb │ │ ├── home_controller_test.rb │ │ ├── kinds_controller_test.rb │ │ └── phones_controller_test.rb │ ├── fixtures │ │ ├── .keep │ │ ├── addresses.yml │ │ ├── contacts.yml │ │ ├── kinds.yml │ │ └── phones.yml │ ├── helpers │ │ └── .keep │ ├── integration │ │ └── .keep │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address_test.rb │ │ ├── contact_test.rb │ │ ├── kind_test.rb │ │ └── phone_test.rb │ └── test_helper.rb │ └── vendor │ └── assets │ ├── javascripts │ └── .keep │ └── stylesheets │ └── .keep ├── aula048 └── notebook │ ├── .gitignore │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.rdoc │ ├── Rakefile │ ├── app │ ├── assets │ │ ├── images │ │ │ ├── .keep │ │ │ └── down-arrow.png │ │ ├── javascripts │ │ │ ├── addresses.coffee │ │ │ ├── application.js │ │ │ ├── contacts.coffee │ │ │ ├── home.coffee │ │ │ ├── kinds.coffee │ │ │ └── phones.coffee │ │ └── stylesheets │ │ │ ├── addresses.scss │ │ │ ├── application.css │ │ │ ├── contacts.scss │ │ │ ├── home.scss │ │ │ ├── kinds.scss │ │ │ ├── phones.scss │ │ │ ├── scaffolds.old │ │ │ └── scaffolds.scss │ ├── controllers │ │ ├── addresses_controller.rb │ │ ├── application_controller.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contacts_controller.rb │ │ ├── home_controller.rb │ │ ├── kinds_controller.rb │ │ └── phones_controller.rb │ ├── helpers │ │ ├── addresses_helper.rb │ │ ├── application_helper.rb │ │ ├── contacts_helper.rb │ │ ├── home_helper.rb │ │ ├── kinds_helper.rb │ │ └── phones_helper.rb │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contact.rb │ │ ├── kind.rb │ │ └── phone.rb │ └── views │ │ ├── addresses │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── contacts │ │ ├── _form.html.erb │ │ ├── _phone_fields.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── home │ │ └── index.html.erb │ │ ├── kinds │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── layouts │ │ └── application.html.erb │ │ └── phones │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ ├── bin │ ├── bundle │ ├── rails │ ├── rake │ ├── setup │ └── spring │ ├── config.ru │ ├── config │ ├── application.rb │ ├── boot.rb │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── assets.rb │ │ ├── backtrace_silencers.rb │ │ ├── cookies_serializer.rb │ │ ├── filter_parameter_logging.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ ├── session_store.rb │ │ └── wrap_parameters.rb │ ├── locales │ │ ├── buttons.pt-BR.yml │ │ ├── en.yml │ │ ├── messages.pt-BR.yml │ │ ├── models.pt-BR.yml │ │ └── pt-BR.yml │ ├── routes.rb │ └── secrets.yml │ ├── db │ ├── migrate │ │ ├── 20160531010402_create_kinds.rb │ │ ├── 20160531010605_create_contacts.rb │ │ ├── 20160531010710_create_addresses.rb │ │ └── 20160531010745_create_phones.rb │ ├── schema.rb │ └── seeds.rb │ ├── lib │ ├── assets │ │ └── .keep │ └── tasks │ │ ├── .keep │ │ └── utils.rake │ ├── log │ └── .keep │ ├── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── favicon.ico │ ├── robots.txt │ └── template │ │ ├── form.css │ │ └── form.html │ ├── test │ ├── controllers │ │ ├── .keep │ │ ├── addresses_controller_test.rb │ │ ├── contacts_controller_test.rb │ │ ├── home_controller_test.rb │ │ ├── kinds_controller_test.rb │ │ └── phones_controller_test.rb │ ├── fixtures │ │ ├── .keep │ │ ├── addresses.yml │ │ ├── contacts.yml │ │ ├── kinds.yml │ │ └── phones.yml │ ├── helpers │ │ └── .keep │ ├── integration │ │ └── .keep │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address_test.rb │ │ ├── contact_test.rb │ │ ├── kind_test.rb │ │ └── phone_test.rb │ └── test_helper.rb │ └── vendor │ └── assets │ ├── javascripts │ └── .keep │ └── stylesheets │ └── .keep ├── aula049 └── notebook │ ├── .gitignore │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.rdoc │ ├── Rakefile │ ├── app │ ├── assets │ │ ├── images │ │ │ ├── .keep │ │ │ └── down-arrow.png │ │ ├── javascripts │ │ │ ├── addresses.coffee │ │ │ ├── application.js │ │ │ ├── contacts.coffee │ │ │ ├── home.coffee │ │ │ ├── kinds.coffee │ │ │ └── phones.coffee │ │ └── stylesheets │ │ │ ├── addresses.scss │ │ │ ├── application.css │ │ │ ├── contacts.scss │ │ │ ├── home.scss │ │ │ ├── kinds.scss │ │ │ ├── phones.scss │ │ │ ├── scaffolds.old │ │ │ └── scaffolds.scss │ ├── controllers │ │ ├── addresses_controller.rb │ │ ├── application_controller.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contacts_controller.rb │ │ ├── home_controller.rb │ │ ├── kinds_controller.rb │ │ └── phones_controller.rb │ ├── helpers │ │ ├── addresses_helper.rb │ │ ├── application_helper.rb │ │ ├── contacts_helper.rb │ │ ├── home_helper.rb │ │ ├── kinds_helper.rb │ │ └── phones_helper.rb │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contact.rb │ │ ├── kind.rb │ │ └── phone.rb │ └── views │ │ ├── addresses │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── contacts │ │ ├── _form.html.erb │ │ ├── _phone_fields.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── home │ │ └── index.html.erb │ │ ├── kinds │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── layouts │ │ └── application.html.erb │ │ └── phones │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ ├── bin │ ├── bundle │ ├── rails │ ├── rake │ ├── setup │ └── spring │ ├── config.ru │ ├── config │ ├── application.rb │ ├── boot.rb │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── assets.rb │ │ ├── backtrace_silencers.rb │ │ ├── cookies_serializer.rb │ │ ├── filter_parameter_logging.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ ├── session_store.rb │ │ └── wrap_parameters.rb │ ├── locales │ │ ├── buttons.pt-BR.yml │ │ ├── en.yml │ │ ├── messages.pt-BR.yml │ │ ├── models.pt-BR.yml │ │ └── pt-BR.yml │ ├── routes.rb │ └── secrets.yml │ ├── db │ ├── migrate │ │ ├── 20160531010402_create_kinds.rb │ │ ├── 20160531010605_create_contacts.rb │ │ ├── 20160531010710_create_addresses.rb │ │ └── 20160531010745_create_phones.rb │ ├── schema.rb │ └── seeds.rb │ ├── lib │ ├── assets │ │ └── .keep │ └── tasks │ │ ├── .keep │ │ └── utils.rake │ ├── log │ └── .keep │ ├── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── favicon.ico │ ├── robots.txt │ └── template │ │ ├── form.css │ │ └── form.html │ ├── test │ ├── controllers │ │ ├── .keep │ │ ├── addresses_controller_test.rb │ │ ├── contacts_controller_test.rb │ │ ├── home_controller_test.rb │ │ ├── kinds_controller_test.rb │ │ └── phones_controller_test.rb │ ├── fixtures │ │ ├── .keep │ │ ├── addresses.yml │ │ ├── contacts.yml │ │ ├── kinds.yml │ │ └── phones.yml │ ├── helpers │ │ └── .keep │ ├── integration │ │ └── .keep │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address_test.rb │ │ ├── contact_test.rb │ │ ├── kind_test.rb │ │ └── phone_test.rb │ └── test_helper.rb │ └── vendor │ └── assets │ ├── javascripts │ └── .keep │ └── stylesheets │ └── .keep ├── aula051 └── notebook │ ├── .gitignore │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.rdoc │ ├── Rakefile │ ├── app │ ├── assets │ │ ├── images │ │ │ ├── .keep │ │ │ └── down-arrow.png │ │ ├── javascripts │ │ │ ├── addresses.coffee │ │ │ ├── application.js │ │ │ ├── contacts.coffee │ │ │ ├── home.coffee │ │ │ ├── kinds.coffee │ │ │ └── phones.coffee │ │ └── stylesheets │ │ │ ├── addresses.scss │ │ │ ├── application.css │ │ │ ├── contacts.scss │ │ │ ├── home.scss │ │ │ ├── kinds.scss │ │ │ ├── phones.scss │ │ │ ├── scaffolds.old │ │ │ └── scaffolds.scss.erb │ ├── controllers │ │ ├── addresses_controller.rb │ │ ├── application_controller.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contacts_controller.rb │ │ ├── home_controller.rb │ │ ├── kinds_controller.rb │ │ └── phones_controller.rb │ ├── helpers │ │ ├── addresses_helper.rb │ │ ├── application_helper.rb │ │ ├── contacts_helper.rb │ │ ├── home_helper.rb │ │ ├── kinds_helper.rb │ │ └── phones_helper.rb │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contact.rb │ │ ├── kind.rb │ │ └── phone.rb │ └── views │ │ ├── addresses │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── contacts │ │ ├── _form.html.erb │ │ ├── _phone_fields.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── home │ │ └── index.html.erb │ │ ├── kinds │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── layouts │ │ └── application.html.erb │ │ └── phones │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ ├── bin │ ├── bundle │ ├── rails │ ├── rake │ ├── setup │ └── spring │ ├── config.ru │ ├── config │ ├── application.rb │ ├── boot.rb │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── assets.rb │ │ ├── backtrace_silencers.rb │ │ ├── cookies_serializer.rb │ │ ├── filter_parameter_logging.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ ├── session_store.rb │ │ └── wrap_parameters.rb │ ├── locales │ │ ├── buttons.pt-BR.yml │ │ ├── en.yml │ │ ├── messages.pt-BR.yml │ │ ├── models.pt-BR.yml │ │ └── pt-BR.yml │ ├── routes.rb │ └── secrets.yml │ ├── db │ ├── migrate │ │ ├── 20160531010402_create_kinds.rb │ │ ├── 20160531010605_create_contacts.rb │ │ ├── 20160531010710_create_addresses.rb │ │ └── 20160531010745_create_phones.rb │ ├── schema.rb │ └── seeds.rb │ ├── lib │ ├── assets │ │ ├── .keep │ │ └── javascripts │ │ │ └── alert.js │ └── tasks │ │ ├── .keep │ │ └── utils.rake │ ├── log │ └── .keep │ ├── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── favicon.ico │ ├── robots.txt │ └── template │ │ ├── form.css │ │ └── form.html │ ├── test │ ├── controllers │ │ ├── .keep │ │ ├── addresses_controller_test.rb │ │ ├── contacts_controller_test.rb │ │ ├── home_controller_test.rb │ │ ├── kinds_controller_test.rb │ │ └── phones_controller_test.rb │ ├── fixtures │ │ ├── .keep │ │ ├── addresses.yml │ │ ├── contacts.yml │ │ ├── kinds.yml │ │ └── phones.yml │ ├── helpers │ │ └── .keep │ ├── integration │ │ └── .keep │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address_test.rb │ │ ├── contact_test.rb │ │ ├── kind_test.rb │ │ └── phone_test.rb │ └── test_helper.rb │ └── vendor │ └── assets │ ├── javascripts │ └── .keep │ └── stylesheets │ └── .keep ├── aula052 └── notebook │ ├── .gitignore │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.rdoc │ ├── Rakefile │ ├── app │ ├── assets │ │ ├── images │ │ │ ├── .keep │ │ │ └── down-arrow.png │ │ ├── javascripts │ │ │ ├── addresses.coffee │ │ │ ├── application.js │ │ │ ├── contacts.coffee │ │ │ ├── home.coffee │ │ │ ├── kinds.coffee │ │ │ └── phones.coffee │ │ └── stylesheets │ │ │ ├── addresses.scss │ │ │ ├── application.css │ │ │ ├── contacts.scss │ │ │ ├── home.scss │ │ │ ├── kinds.scss │ │ │ ├── phones.scss │ │ │ ├── scaffolds.old │ │ │ └── scaffolds.scss.erb │ ├── controllers │ │ ├── addresses_controller.rb │ │ ├── application_controller.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contacts_controller.rb │ │ ├── home_controller.rb │ │ ├── kinds_controller.rb │ │ └── phones_controller.rb │ ├── helpers │ │ ├── addresses_helper.rb │ │ ├── application_helper.rb │ │ ├── contacts_helper.rb │ │ ├── home_helper.rb │ │ ├── kinds_helper.rb │ │ └── phones_helper.rb │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contact.rb │ │ ├── kind.rb │ │ └── phone.rb │ └── views │ │ ├── addresses │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── contacts │ │ ├── _form.html.erb │ │ ├── _phone_fields.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── home │ │ └── index.html.erb │ │ ├── kinds │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── layouts │ │ └── application.html.erb │ │ └── phones │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.js.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ ├── bin │ ├── bundle │ ├── rails │ ├── rake │ ├── setup │ └── spring │ ├── config.ru │ ├── config │ ├── application.rb │ ├── boot.rb │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── assets.rb │ │ ├── backtrace_silencers.rb │ │ ├── cookies_serializer.rb │ │ ├── filter_parameter_logging.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ ├── session_store.rb │ │ └── wrap_parameters.rb │ ├── locales │ │ ├── buttons.pt-BR.yml │ │ ├── en.yml │ │ ├── messages.pt-BR.yml │ │ ├── models.pt-BR.yml │ │ └── pt-BR.yml │ ├── routes.rb │ └── secrets.yml │ ├── db │ ├── migrate │ │ ├── 20160531010402_create_kinds.rb │ │ ├── 20160531010605_create_contacts.rb │ │ ├── 20160531010710_create_addresses.rb │ │ └── 20160531010745_create_phones.rb │ ├── schema.rb │ └── seeds.rb │ ├── lib │ ├── assets │ │ ├── .keep │ │ └── javascripts │ │ │ └── alert.js │ └── tasks │ │ ├── .keep │ │ └── utils.rake │ ├── log │ └── .keep │ ├── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── favicon.ico │ ├── robots.txt │ └── template │ │ ├── form.css │ │ └── form.html │ ├── test │ ├── controllers │ │ ├── .keep │ │ ├── addresses_controller_test.rb │ │ ├── contacts_controller_test.rb │ │ ├── home_controller_test.rb │ │ ├── kinds_controller_test.rb │ │ └── phones_controller_test.rb │ ├── fixtures │ │ ├── .keep │ │ ├── addresses.yml │ │ ├── contacts.yml │ │ ├── kinds.yml │ │ └── phones.yml │ ├── helpers │ │ └── .keep │ ├── integration │ │ └── .keep │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address_test.rb │ │ ├── contact_test.rb │ │ ├── kind_test.rb │ │ └── phone_test.rb │ └── test_helper.rb │ └── vendor │ └── assets │ ├── javascripts │ └── .keep │ └── stylesheets │ └── .keep ├── aula053 └── notebook │ ├── .gitignore │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.rdoc │ ├── Rakefile │ ├── app │ ├── assets │ │ ├── images │ │ │ ├── .keep │ │ │ └── down-arrow.png │ │ ├── javascripts │ │ │ ├── addresses.coffee │ │ │ ├── application.js │ │ │ ├── contacts.coffee │ │ │ ├── home.coffee │ │ │ ├── kinds.coffee │ │ │ └── phones.coffee │ │ └── stylesheets │ │ │ ├── addresses.scss │ │ │ ├── application.css │ │ │ ├── contacts.scss │ │ │ ├── home.scss │ │ │ ├── kinds.scss │ │ │ ├── phones.scss │ │ │ ├── scaffolds.old │ │ │ └── scaffolds.scss.erb │ ├── controllers │ │ ├── addresses_controller.rb │ │ ├── application_controller.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contacts_controller.rb │ │ ├── home_controller.rb │ │ ├── kinds_controller.rb │ │ └── phones_controller.rb │ ├── helpers │ │ ├── addresses_helper.rb │ │ ├── application_helper.rb │ │ ├── contacts_helper.rb │ │ ├── home_helper.rb │ │ ├── kinds_helper.rb │ │ └── phones_helper.rb │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contact.rb │ │ ├── kind.rb │ │ └── phone.rb │ └── views │ │ ├── addresses │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── contacts │ │ ├── _form.html.erb │ │ ├── _phone_fields.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── home │ │ └── index.html.erb │ │ ├── kinds │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── layouts │ │ └── application.html.erb │ │ └── phones │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.js.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ ├── bin │ ├── bundle │ ├── rails │ ├── rake │ ├── setup │ └── spring │ ├── config.ru │ ├── config │ ├── application.rb │ ├── boot.rb │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── assets.rb │ │ ├── backtrace_silencers.rb │ │ ├── cookies_serializer.rb │ │ ├── filter_parameter_logging.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ ├── session_store.rb │ │ └── wrap_parameters.rb │ ├── locales │ │ ├── buttons.pt-BR.yml │ │ ├── en.yml │ │ ├── messages.pt-BR.yml │ │ ├── models.pt-BR.yml │ │ └── pt-BR.yml │ ├── routes.rb │ └── secrets.yml │ ├── db │ ├── migrate │ │ ├── 20160531010402_create_kinds.rb │ │ ├── 20160531010605_create_contacts.rb │ │ ├── 20160531010710_create_addresses.rb │ │ └── 20160531010745_create_phones.rb │ ├── schema.rb │ └── seeds.rb │ ├── lib │ ├── assets │ │ ├── .keep │ │ └── javascripts │ │ │ └── alert.js │ └── tasks │ │ ├── .keep │ │ └── utils.rake │ ├── log │ └── .keep │ ├── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── favicon.ico │ ├── robots.txt │ └── template │ │ ├── form.css │ │ └── form.html │ ├── test │ ├── controllers │ │ ├── .keep │ │ ├── addresses_controller_test.rb │ │ ├── contacts_controller_test.rb │ │ ├── home_controller_test.rb │ │ ├── kinds_controller_test.rb │ │ └── phones_controller_test.rb │ ├── fixtures │ │ ├── .keep │ │ ├── addresses.yml │ │ ├── contacts.yml │ │ ├── kinds.yml │ │ └── phones.yml │ ├── helpers │ │ └── .keep │ ├── integration │ │ └── .keep │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address_test.rb │ │ ├── contact_test.rb │ │ ├── kind_test.rb │ │ └── phone_test.rb │ └── test_helper.rb │ └── vendor │ └── assets │ ├── javascripts │ ├── .keep │ └── notifyjs │ │ └── notify.js │ └── stylesheets │ └── .keep ├── aula054 └── notebook │ ├── .gitignore │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.rdoc │ ├── Rakefile │ ├── app │ ├── assets │ │ ├── images │ │ │ ├── .keep │ │ │ └── down-arrow.png │ │ ├── javascripts │ │ │ ├── addresses.coffee │ │ │ ├── application.js │ │ │ ├── contacts.coffee │ │ │ ├── home.coffee │ │ │ ├── kinds.coffee │ │ │ └── phones.coffee │ │ └── stylesheets │ │ │ ├── addresses.scss │ │ │ ├── application.css │ │ │ ├── contacts.scss │ │ │ ├── home.scss │ │ │ ├── kinds.scss │ │ │ ├── phones.scss │ │ │ ├── scaffolds.old │ │ │ └── scaffolds.scss.erb │ ├── controllers │ │ ├── addresses_controller.rb │ │ ├── application_controller.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contacts_controller.rb │ │ ├── home_controller.rb │ │ ├── kinds_controller.rb │ │ └── phones_controller.rb │ ├── helpers │ │ ├── addresses_helper.rb │ │ ├── application_helper.rb │ │ ├── contacts_helper.rb │ │ ├── home_helper.rb │ │ ├── kinds_helper.rb │ │ └── phones_helper.rb │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contact.rb │ │ ├── kind.rb │ │ └── phone.rb │ └── views │ │ ├── addresses │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── contacts │ │ ├── _form.html.erb │ │ ├── _phone_fields.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── home │ │ └── index.html.erb │ │ ├── kinds │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── layouts │ │ └── application.html.erb │ │ └── phones │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.js.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ ├── bin │ ├── bundle │ ├── rails │ ├── rake │ ├── setup │ └── spring │ ├── bower.json │ ├── config.ru │ ├── config │ ├── application.rb │ ├── boot.rb │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── assets.rb │ │ ├── backtrace_silencers.rb │ │ ├── bower_rails.rb │ │ ├── cookies_serializer.rb │ │ ├── filter_parameter_logging.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ ├── session_store.rb │ │ └── wrap_parameters.rb │ ├── locales │ │ ├── buttons.pt-BR.yml │ │ ├── en.yml │ │ ├── messages.pt-BR.yml │ │ ├── models.pt-BR.yml │ │ └── pt-BR.yml │ ├── routes.rb │ └── secrets.yml │ ├── db │ ├── migrate │ │ ├── 20160531010402_create_kinds.rb │ │ ├── 20160531010605_create_contacts.rb │ │ ├── 20160531010710_create_addresses.rb │ │ └── 20160531010745_create_phones.rb │ ├── schema.rb │ └── seeds.rb │ ├── lib │ ├── assets │ │ ├── .keep │ │ └── javascripts │ │ │ └── alert.js │ └── tasks │ │ ├── .keep │ │ └── utils.rake │ ├── log │ └── .keep │ ├── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── favicon.ico │ ├── robots.txt │ └── template │ │ ├── form.css │ │ └── form.html │ ├── test │ ├── controllers │ │ ├── .keep │ │ ├── addresses_controller_test.rb │ │ ├── contacts_controller_test.rb │ │ ├── home_controller_test.rb │ │ ├── kinds_controller_test.rb │ │ └── phones_controller_test.rb │ ├── fixtures │ │ ├── .keep │ │ ├── addresses.yml │ │ ├── contacts.yml │ │ ├── kinds.yml │ │ └── phones.yml │ ├── helpers │ │ └── .keep │ ├── integration │ │ └── .keep │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address_test.rb │ │ ├── contact_test.rb │ │ ├── kind_test.rb │ │ └── phone_test.rb │ └── test_helper.rb │ └── vendor │ └── assets │ ├── bower_components │ └── notifyjs │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── CHANGES.md │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ ├── notify.js │ │ └── styles │ │ │ └── metro │ │ │ ├── notify-metro.css │ │ │ └── notify-metro.js │ │ ├── examples │ │ ├── classes.html │ │ ├── images │ │ │ └── Mail.png │ │ ├── inlines.html │ │ ├── metro.html │ │ ├── multi-text.html │ │ └── position.html │ │ ├── notify.jquery.json │ │ └── package.json │ ├── javascripts │ └── .keep │ └── stylesheets │ └── .keep ├── aula055 └── notebook │ ├── .gitignore │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.rdoc │ ├── Rakefile │ ├── app │ ├── assets │ │ ├── images │ │ │ ├── .keep │ │ │ └── down-arrow.png │ │ ├── javascripts │ │ │ ├── addresses.coffee │ │ │ ├── application.js │ │ │ ├── contacts.coffee │ │ │ ├── home.coffee │ │ │ ├── kinds.coffee │ │ │ └── phones.coffee │ │ └── stylesheets │ │ │ ├── addresses.scss │ │ │ ├── application.css │ │ │ ├── contacts.scss │ │ │ ├── home.scss │ │ │ ├── kinds.scss │ │ │ ├── phones.scss │ │ │ ├── scaffolds.old │ │ │ └── scaffolds.scss.erb │ ├── controllers │ │ ├── addresses_controller.rb │ │ ├── application_controller.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contacts_controller.rb │ │ ├── home_controller.rb │ │ ├── kinds_controller.rb │ │ └── phones_controller.rb │ ├── helpers │ │ ├── addresses_helper.rb │ │ ├── application_helper.rb │ │ ├── contacts_helper.rb │ │ ├── home_helper.rb │ │ ├── kinds_helper.rb │ │ └── phones_helper.rb │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contact.rb │ │ ├── kind.rb │ │ └── phone.rb │ └── views │ │ ├── addresses │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── contacts │ │ ├── _form.html.erb │ │ ├── _phone_fields.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── home │ │ └── index.html.erb │ │ ├── kinds │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── layouts │ │ └── application.html.erb │ │ └── phones │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.js.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ ├── bin │ ├── bundle │ ├── rails │ ├── rake │ ├── setup │ └── spring │ ├── config.ru │ ├── config │ ├── application.rb │ ├── boot.rb │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── assets.rb │ │ ├── backtrace_silencers.rb │ │ ├── cookies_serializer.rb │ │ ├── filter_parameter_logging.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ ├── session_store.rb │ │ └── wrap_parameters.rb │ ├── locales │ │ ├── buttons.pt-BR.yml │ │ ├── en.yml │ │ ├── messages.pt-BR.yml │ │ ├── models.pt-BR.yml │ │ └── pt-BR.yml │ ├── routes.rb │ └── secrets.yml │ ├── db │ ├── migrate │ │ ├── 20160531010402_create_kinds.rb │ │ ├── 20160531010605_create_contacts.rb │ │ ├── 20160531010710_create_addresses.rb │ │ └── 20160531010745_create_phones.rb │ ├── schema.rb │ └── seeds.rb │ ├── lib │ ├── assets │ │ ├── .keep │ │ └── javascripts │ │ │ └── alert.js │ └── tasks │ │ ├── .keep │ │ └── utils.rake │ ├── log │ └── .keep │ ├── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── favicon.ico │ ├── robots.txt │ └── template │ │ ├── form.css │ │ └── form.html │ ├── test │ ├── controllers │ │ ├── .keep │ │ ├── addresses_controller_test.rb │ │ ├── contacts_controller_test.rb │ │ ├── home_controller_test.rb │ │ ├── kinds_controller_test.rb │ │ └── phones_controller_test.rb │ ├── fixtures │ │ ├── .keep │ │ ├── addresses.yml │ │ ├── contacts.yml │ │ ├── kinds.yml │ │ └── phones.yml │ ├── helpers │ │ └── .keep │ ├── integration │ │ └── .keep │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address_test.rb │ │ ├── contact_test.rb │ │ ├── kind_test.rb │ │ └── phone_test.rb │ └── test_helper.rb │ └── vendor │ └── assets │ ├── bower_components │ └── notifyjs │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── CHANGES.md │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ ├── notify.js │ │ └── styles │ │ │ └── metro │ │ │ ├── notify-metro.css │ │ │ └── notify-metro.js │ │ ├── examples │ │ ├── classes.html │ │ ├── images │ │ │ └── Mail.png │ │ ├── inlines.html │ │ ├── metro.html │ │ ├── multi-text.html │ │ └── position.html │ │ ├── notify.jquery.json │ │ └── package.json │ ├── javascripts │ └── .keep │ └── stylesheets │ └── .keep ├── aula057 └── notebook │ ├── .gitignore │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.rdoc │ ├── Rakefile │ ├── app │ ├── assets │ │ ├── images │ │ │ ├── .keep │ │ │ └── down-arrow.png │ │ ├── javascripts │ │ │ ├── addresses.coffee │ │ │ ├── application.js │ │ │ ├── contacts.coffee │ │ │ ├── home.coffee │ │ │ ├── kinds.coffee │ │ │ └── phones.coffee │ │ └── stylesheets │ │ │ ├── addresses.scss │ │ │ ├── application.css │ │ │ ├── contacts.scss │ │ │ ├── home.scss │ │ │ ├── kinds.scss │ │ │ ├── phones.scss │ │ │ ├── scaffolds.old │ │ │ └── scaffolds.scss.erb │ ├── controllers │ │ ├── addresses_controller.rb │ │ ├── application_controller.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contacts_controller.rb │ │ ├── home_controller.rb │ │ ├── kinds_controller.rb │ │ └── phones_controller.rb │ ├── helpers │ │ ├── addresses_helper.rb │ │ ├── application_helper.rb │ │ ├── contacts_helper.rb │ │ ├── home_helper.rb │ │ ├── kinds_helper.rb │ │ └── phones_helper.rb │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contact.rb │ │ ├── kind.rb │ │ └── phone.rb │ └── views │ │ ├── addresses │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── contacts │ │ ├── _form.html.erb │ │ ├── _phone_fields.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── home │ │ └── index.html.erb │ │ ├── kinds │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── layouts │ │ └── application.html.erb │ │ └── phones │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.js.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ ├── bin │ ├── bundle │ ├── rails │ ├── rake │ ├── setup │ └── spring │ ├── config.ru │ ├── config │ ├── application.rb │ ├── boot.rb │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── assets.rb │ │ ├── backtrace_silencers.rb │ │ ├── cookies_serializer.rb │ │ ├── filter_parameter_logging.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ ├── session_store.rb │ │ └── wrap_parameters.rb │ ├── locales │ │ ├── buttons.pt-BR.yml │ │ ├── en.yml │ │ ├── messages.pt-BR.yml │ │ ├── models.pt-BR.yml │ │ └── pt-BR.yml │ ├── routes.rb │ └── secrets.yml │ ├── db │ ├── migrate │ │ ├── 20160531010402_create_kinds.rb │ │ ├── 20160531010605_create_contacts.rb │ │ ├── 20160531010710_create_addresses.rb │ │ └── 20160531010745_create_phones.rb │ ├── schema.rb │ └── seeds.rb │ ├── lib │ ├── assets │ │ ├── .keep │ │ └── javascripts │ │ │ └── alert.js │ └── tasks │ │ ├── .keep │ │ └── utils.rake │ ├── log │ └── .keep │ ├── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── favicon.ico │ ├── robots.txt │ └── template │ │ ├── form.css │ │ └── form.html │ ├── test │ ├── controllers │ │ ├── .keep │ │ ├── addresses_controller_test.rb │ │ ├── contacts_controller_test.rb │ │ ├── home_controller_test.rb │ │ ├── kinds_controller_test.rb │ │ └── phones_controller_test.rb │ ├── fixtures │ │ ├── .keep │ │ ├── addresses.yml │ │ ├── contacts.yml │ │ ├── kinds.yml │ │ └── phones.yml │ ├── helpers │ │ └── .keep │ ├── integration │ │ └── .keep │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address_test.rb │ │ ├── contact_test.rb │ │ ├── kind_test.rb │ │ └── phone_test.rb │ └── test_helper.rb │ └── vendor │ └── assets │ ├── bower_components │ └── notifyjs │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── CHANGES.md │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ ├── notify.js │ │ └── styles │ │ │ └── metro │ │ │ ├── notify-metro.css │ │ │ └── notify-metro.js │ │ ├── examples │ │ ├── classes.html │ │ ├── images │ │ │ └── Mail.png │ │ ├── inlines.html │ │ ├── metro.html │ │ ├── multi-text.html │ │ └── position.html │ │ ├── notify.jquery.json │ │ └── package.json │ ├── javascripts │ └── .keep │ └── stylesheets │ └── .keep ├── aula059 └── notebook │ ├── .gitignore │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.rdoc │ ├── Rakefile │ ├── app │ ├── assets │ │ ├── images │ │ │ ├── .keep │ │ │ └── down-arrow.png │ │ ├── javascripts │ │ │ ├── addresses.coffee │ │ │ ├── application.js │ │ │ ├── contacts.coffee │ │ │ ├── home.coffee │ │ │ ├── kinds.coffee │ │ │ └── phones.coffee │ │ └── stylesheets │ │ │ ├── addresses.scss │ │ │ ├── application.css │ │ │ ├── contacts.scss │ │ │ ├── home.scss │ │ │ ├── kinds.scss │ │ │ ├── phones.scss │ │ │ ├── scaffolds.old │ │ │ └── scaffolds.scss.erb │ ├── controllers │ │ ├── addresses_controller.rb │ │ ├── application_controller.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contacts_controller.rb │ │ ├── home_controller.rb │ │ ├── kinds_controller.rb │ │ └── phones_controller.rb │ ├── helpers │ │ ├── addresses_helper.rb │ │ ├── application_helper.rb │ │ ├── contacts_helper.rb │ │ ├── home_helper.rb │ │ ├── kinds_helper.rb │ │ └── phones_helper.rb │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contact.rb │ │ ├── kind.rb │ │ └── phone.rb │ └── views │ │ ├── addresses │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── contacts │ │ ├── _form.html.erb │ │ ├── _phone_fields.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── home │ │ └── index.html.erb │ │ ├── kinds │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ │ ├── layouts │ │ └── application.html.erb │ │ └── phones │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── index.js.erb │ │ ├── index.json.jbuilder │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ ├── bin │ ├── bundle │ ├── rails │ ├── rake │ ├── setup │ └── spring │ ├── config.ru │ ├── config │ ├── application.rb │ ├── boot.rb │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── assets.rb │ │ ├── backtrace_silencers.rb │ │ ├── cookies_serializer.rb │ │ ├── filter_parameter_logging.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ ├── session_store.rb │ │ └── wrap_parameters.rb │ ├── locales │ │ ├── buttons.pt-BR.yml │ │ ├── en.yml │ │ ├── messages.pt-BR.yml │ │ ├── models.pt-BR.yml │ │ └── pt-BR.yml │ ├── routes.rb │ └── secrets.yml │ ├── db │ ├── migrate │ │ ├── 20160531010402_create_kinds.rb │ │ ├── 20160531010605_create_contacts.rb │ │ ├── 20160531010710_create_addresses.rb │ │ └── 20160531010745_create_phones.rb │ ├── schema.rb │ └── seeds.rb │ ├── lib │ ├── assets │ │ ├── .keep │ │ └── javascripts │ │ │ └── alert.js │ └── tasks │ │ ├── .keep │ │ └── utils.rake │ ├── log │ └── .keep │ ├── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── favicon.ico │ ├── robots.txt │ └── template │ │ ├── form.css │ │ └── form.html │ ├── test │ ├── controllers │ │ ├── .keep │ │ ├── addresses_controller_test.rb │ │ ├── contacts_controller_test.rb │ │ ├── home_controller_test.rb │ │ ├── kinds_controller_test.rb │ │ └── phones_controller_test.rb │ ├── fixtures │ │ ├── .keep │ │ ├── addresses.yml │ │ ├── contacts.yml │ │ ├── kinds.yml │ │ └── phones.yml │ ├── helpers │ │ └── .keep │ ├── integration │ │ └── .keep │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── address_test.rb │ │ ├── contact_test.rb │ │ ├── kind_test.rb │ │ └── phone_test.rb │ └── test_helper.rb │ └── vendor │ └── assets │ ├── bower_components │ └── notifyjs │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── CHANGES.md │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ ├── notify.js │ │ └── styles │ │ │ └── metro │ │ │ ├── notify-metro.css │ │ │ └── notify-metro.js │ │ ├── examples │ │ ├── classes.html │ │ ├── images │ │ │ └── Mail.png │ │ ├── inlines.html │ │ ├── metro.html │ │ ├── multi-text.html │ │ └── position.html │ │ ├── notify.jquery.json │ │ └── package.json │ ├── javascripts │ └── .keep │ └── stylesheets │ └── .keep └── aula060 └── notebook ├── .gitignore ├── Gemfile ├── Gemfile.lock ├── README.rdoc ├── Rakefile ├── app ├── assets │ ├── images │ │ ├── .keep │ │ └── down-arrow.png │ ├── javascripts │ │ ├── addresses.coffee │ │ ├── application.js │ │ ├── contacts.coffee │ │ ├── home.coffee │ │ ├── kinds.coffee │ │ └── phones.coffee │ └── stylesheets │ │ ├── addresses.scss │ │ ├── application.css │ │ ├── contacts.scss │ │ ├── home.scss │ │ ├── kinds.scss │ │ ├── phones.scss │ │ ├── scaffolds.old │ │ └── scaffolds.scss.erb ├── controllers │ ├── application_controller.rb │ ├── concerns │ │ └── .keep │ ├── contacts_controller.rb │ ├── home_controller.rb │ └── kinds_controller.rb ├── helpers │ ├── addresses_helper.rb │ ├── application_helper.rb │ ├── contacts_helper.rb │ ├── home_helper.rb │ ├── kinds_helper.rb │ └── phones_helper.rb ├── mailers │ └── .keep ├── models │ ├── .keep │ ├── address.rb │ ├── concerns │ │ └── .keep │ ├── contact.rb │ ├── kind.rb │ └── phone.rb └── views │ ├── contacts │ ├── _form.html.erb │ ├── _phone_fields.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── index.json.jbuilder │ ├── new.html.erb │ ├── show.html.erb │ └── show.json.jbuilder │ ├── home │ └── index.html.erb │ ├── kinds │ ├── _form.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── index.json.jbuilder │ ├── new.html.erb │ ├── show.html.erb │ └── show.json.jbuilder │ └── layouts │ └── application.html.erb ├── bin ├── bundle ├── rails ├── rake ├── setup └── spring ├── config.ru ├── config ├── application.rb ├── boot.rb ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── cookies_serializer.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── session_store.rb │ └── wrap_parameters.rb ├── locales │ ├── buttons.pt-BR.yml │ ├── en.yml │ ├── messages.pt-BR.yml │ ├── models.pt-BR.yml │ └── pt-BR.yml ├── routes.rb └── secrets.yml ├── db ├── migrate │ ├── 20160531010402_create_kinds.rb │ ├── 20160531010605_create_contacts.rb │ ├── 20160531010710_create_addresses.rb │ └── 20160531010745_create_phones.rb ├── schema.rb └── seeds.rb ├── lib ├── assets │ ├── .keep │ └── javascripts │ │ └── alert.js └── tasks │ ├── .keep │ └── utils.rake ├── log └── .keep ├── public ├── 404.html ├── 422.html ├── 500.html ├── favicon.ico ├── robots.txt └── template │ ├── form.css │ └── form.html ├── test ├── controllers │ ├── .keep │ ├── addresses_controller_test.rb │ ├── contacts_controller_test.rb │ ├── home_controller_test.rb │ ├── kinds_controller_test.rb │ └── phones_controller_test.rb ├── fixtures │ ├── .keep │ ├── addresses.yml │ ├── contacts.yml │ ├── kinds.yml │ └── phones.yml ├── helpers │ └── .keep ├── integration │ └── .keep ├── mailers │ └── .keep ├── models │ ├── .keep │ ├── address_test.rb │ ├── contact_test.rb │ ├── kind_test.rb │ └── phone_test.rb └── test_helper.rb └── vendor └── assets ├── bower_components └── notifyjs │ ├── .bower.json │ ├── .gitignore │ ├── CHANGES.md │ ├── README.md │ ├── bower.json │ ├── dist │ ├── notify.js │ └── styles │ │ └── metro │ │ ├── notify-metro.css │ │ └── notify-metro.js │ ├── examples │ ├── classes.html │ ├── images │ │ └── Mail.png │ ├── inlines.html │ ├── metro.html │ ├── multi-text.html │ └── position.html │ ├── notify.jquery.json │ └── package.json ├── javascripts └── .keep └── stylesheets └── .keep /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/README.md -------------------------------------------------------------------------------- /aula012/aula012.1.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula012/aula012.1.rb -------------------------------------------------------------------------------- /aula012/aula012.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula012/aula012.rb -------------------------------------------------------------------------------- /aula013/aula013.1.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula013/aula013.1.rb -------------------------------------------------------------------------------- /aula013/aula013.2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula013/aula013.2.rb -------------------------------------------------------------------------------- /aula013/aula013.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula013/aula013.rb -------------------------------------------------------------------------------- /aula013/soma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula013/soma.rb -------------------------------------------------------------------------------- /aula014/nomes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula014/nomes.rb -------------------------------------------------------------------------------- /aula015/metodos.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula015/metodos.rb -------------------------------------------------------------------------------- /aula016/constantes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula016/constantes.rb -------------------------------------------------------------------------------- /aula016/eval.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula016/eval.rb -------------------------------------------------------------------------------- /aula016/instanceof.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula016/instanceof.rb -------------------------------------------------------------------------------- /aula016/parenteses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula016/parenteses.rb -------------------------------------------------------------------------------- /aula016/ranges.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula016/ranges.rb -------------------------------------------------------------------------------- /aula016/splitjoin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula016/splitjoin.rb -------------------------------------------------------------------------------- /aula017/pessoa.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula017/pessoa.rb -------------------------------------------------------------------------------- /aula018/pessoa.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula018/pessoa.rb -------------------------------------------------------------------------------- /aula018/pessoa_fisica.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula018/pessoa_fisica.rb -------------------------------------------------------------------------------- /aula018/pessoa_juridica.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula018/pessoa_juridica.rb -------------------------------------------------------------------------------- /aula019/frete.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula019/frete.rb -------------------------------------------------------------------------------- /aula019/init.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula019/init.rb -------------------------------------------------------------------------------- /aula019/pagamento.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula019/pagamento.rb -------------------------------------------------------------------------------- /aula019/venda.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula019/venda.rb -------------------------------------------------------------------------------- /aula022/agenda.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula022/agenda.ep -------------------------------------------------------------------------------- /aula023/agenda.dmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula023/agenda.dmd -------------------------------------------------------------------------------- /aula025/notebook/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula025/notebook/Gemfile -------------------------------------------------------------------------------- /aula025/notebook/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula025/notebook/Rakefile -------------------------------------------------------------------------------- /aula025/notebook/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula025/notebook/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula025/notebook/app/helpers/addresses_helper.rb: -------------------------------------------------------------------------------- 1 | module AddressesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula025/notebook/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula025/notebook/app/helpers/contacts_helper.rb: -------------------------------------------------------------------------------- 1 | module ContactsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula025/notebook/app/helpers/kinds_helper.rb: -------------------------------------------------------------------------------- 1 | module KindsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula025/notebook/app/helpers/phones_helper.rb: -------------------------------------------------------------------------------- 1 | module PhonesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula025/notebook/app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula025/notebook/app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula025/notebook/app/models/address.rb: -------------------------------------------------------------------------------- 1 | class Address < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula025/notebook/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula025/notebook/app/models/contact.rb: -------------------------------------------------------------------------------- 1 | class Contact < ActiveRecord::Base 2 | belongs_to :kind 3 | end 4 | -------------------------------------------------------------------------------- /aula025/notebook/app/models/kind.rb: -------------------------------------------------------------------------------- 1 | class Kind < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /aula025/notebook/app/models/phone.rb: -------------------------------------------------------------------------------- 1 | class Phone < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula025/notebook/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula025/notebook/bin/bundle -------------------------------------------------------------------------------- /aula025/notebook/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula025/notebook/bin/rails -------------------------------------------------------------------------------- /aula025/notebook/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula025/notebook/bin/rake -------------------------------------------------------------------------------- /aula025/notebook/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula025/notebook/bin/setup -------------------------------------------------------------------------------- /aula025/notebook/bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula025/notebook/bin/spring -------------------------------------------------------------------------------- /aula025/notebook/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula025/notebook/config.ru -------------------------------------------------------------------------------- /aula025/notebook/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula025/notebook/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula025/notebook/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula025/notebook/log/PRODUCTION.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula025/notebook/log/development.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula025/notebook/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula025/notebook/test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula025/notebook/test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula025/notebook/test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula025/notebook/test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula025/notebook/test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula025/notebook/test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula025/notebook/vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula025/notebook/vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula027/notebook/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula027/notebook/.gitignore -------------------------------------------------------------------------------- /aula027/notebook/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula027/notebook/Gemfile -------------------------------------------------------------------------------- /aula027/notebook/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula027/notebook/Rakefile -------------------------------------------------------------------------------- /aula027/notebook/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula027/notebook/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula027/notebook/app/helpers/addresses_helper.rb: -------------------------------------------------------------------------------- 1 | module AddressesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula027/notebook/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula027/notebook/app/helpers/contacts_helper.rb: -------------------------------------------------------------------------------- 1 | module ContactsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula027/notebook/app/helpers/kinds_helper.rb: -------------------------------------------------------------------------------- 1 | module KindsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula027/notebook/app/helpers/phones_helper.rb: -------------------------------------------------------------------------------- 1 | module PhonesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula027/notebook/app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula027/notebook/app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula027/notebook/app/models/address.rb: -------------------------------------------------------------------------------- 1 | class Address < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula027/notebook/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula027/notebook/app/models/contact.rb: -------------------------------------------------------------------------------- 1 | class Contact < ActiveRecord::Base 2 | belongs_to :kind 3 | end 4 | -------------------------------------------------------------------------------- /aula027/notebook/app/models/kind.rb: -------------------------------------------------------------------------------- 1 | class Kind < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /aula027/notebook/app/models/phone.rb: -------------------------------------------------------------------------------- 1 | class Phone < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula027/notebook/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula027/notebook/bin/bundle -------------------------------------------------------------------------------- /aula027/notebook/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula027/notebook/bin/rails -------------------------------------------------------------------------------- /aula027/notebook/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula027/notebook/bin/rake -------------------------------------------------------------------------------- /aula027/notebook/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula027/notebook/bin/setup -------------------------------------------------------------------------------- /aula027/notebook/bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula027/notebook/bin/spring -------------------------------------------------------------------------------- /aula027/notebook/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula027/notebook/config.ru -------------------------------------------------------------------------------- /aula027/notebook/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula027/notebook/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula027/notebook/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula027/notebook/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula027/notebook/test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula027/notebook/test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula027/notebook/test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula027/notebook/test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula027/notebook/test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula027/notebook/test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula027/notebook/vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula027/notebook/vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula028/notebook/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula028/notebook/.gitignore -------------------------------------------------------------------------------- /aula028/notebook/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula028/notebook/Gemfile -------------------------------------------------------------------------------- /aula028/notebook/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula028/notebook/Rakefile -------------------------------------------------------------------------------- /aula028/notebook/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula028/notebook/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula028/notebook/app/helpers/addresses_helper.rb: -------------------------------------------------------------------------------- 1 | module AddressesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula028/notebook/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula028/notebook/app/helpers/contacts_helper.rb: -------------------------------------------------------------------------------- 1 | module ContactsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula028/notebook/app/helpers/home_helper.rb: -------------------------------------------------------------------------------- 1 | module HomeHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula028/notebook/app/helpers/kinds_helper.rb: -------------------------------------------------------------------------------- 1 | module KindsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula028/notebook/app/helpers/phones_helper.rb: -------------------------------------------------------------------------------- 1 | module PhonesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula028/notebook/app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula028/notebook/app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula028/notebook/app/models/address.rb: -------------------------------------------------------------------------------- 1 | class Address < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula028/notebook/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula028/notebook/app/models/contact.rb: -------------------------------------------------------------------------------- 1 | class Contact < ActiveRecord::Base 2 | belongs_to :kind 3 | end 4 | -------------------------------------------------------------------------------- /aula028/notebook/app/models/kind.rb: -------------------------------------------------------------------------------- 1 | class Kind < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /aula028/notebook/app/models/phone.rb: -------------------------------------------------------------------------------- 1 | class Phone < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula028/notebook/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula028/notebook/bin/bundle -------------------------------------------------------------------------------- /aula028/notebook/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula028/notebook/bin/rails -------------------------------------------------------------------------------- /aula028/notebook/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula028/notebook/bin/rake -------------------------------------------------------------------------------- /aula028/notebook/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula028/notebook/bin/setup -------------------------------------------------------------------------------- /aula028/notebook/bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula028/notebook/bin/spring -------------------------------------------------------------------------------- /aula028/notebook/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula028/notebook/config.ru -------------------------------------------------------------------------------- /aula028/notebook/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula028/notebook/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula028/notebook/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula028/notebook/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula028/notebook/test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula028/notebook/test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula028/notebook/test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula028/notebook/test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula028/notebook/test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula028/notebook/test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula028/notebook/vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula028/notebook/vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula029/notebook/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula029/notebook/.gitignore -------------------------------------------------------------------------------- /aula029/notebook/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula029/notebook/Gemfile -------------------------------------------------------------------------------- /aula029/notebook/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula029/notebook/Rakefile -------------------------------------------------------------------------------- /aula029/notebook/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula029/notebook/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula029/notebook/app/helpers/addresses_helper.rb: -------------------------------------------------------------------------------- 1 | module AddressesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula029/notebook/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula029/notebook/app/helpers/contacts_helper.rb: -------------------------------------------------------------------------------- 1 | module ContactsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula029/notebook/app/helpers/home_helper.rb: -------------------------------------------------------------------------------- 1 | module HomeHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula029/notebook/app/helpers/kinds_helper.rb: -------------------------------------------------------------------------------- 1 | module KindsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula029/notebook/app/helpers/phones_helper.rb: -------------------------------------------------------------------------------- 1 | module PhonesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula029/notebook/app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula029/notebook/app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula029/notebook/app/models/address.rb: -------------------------------------------------------------------------------- 1 | class Address < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula029/notebook/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula029/notebook/app/models/contact.rb: -------------------------------------------------------------------------------- 1 | class Contact < ActiveRecord::Base 2 | belongs_to :kind 3 | end 4 | -------------------------------------------------------------------------------- /aula029/notebook/app/models/kind.rb: -------------------------------------------------------------------------------- 1 | class Kind < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /aula029/notebook/app/models/phone.rb: -------------------------------------------------------------------------------- 1 | class Phone < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula029/notebook/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula029/notebook/bin/bundle -------------------------------------------------------------------------------- /aula029/notebook/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula029/notebook/bin/rails -------------------------------------------------------------------------------- /aula029/notebook/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula029/notebook/bin/rake -------------------------------------------------------------------------------- /aula029/notebook/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula029/notebook/bin/setup -------------------------------------------------------------------------------- /aula029/notebook/bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula029/notebook/bin/spring -------------------------------------------------------------------------------- /aula029/notebook/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula029/notebook/config.ru -------------------------------------------------------------------------------- /aula029/notebook/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula029/notebook/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula029/notebook/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula029/notebook/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula029/notebook/test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula029/notebook/test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula029/notebook/test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula029/notebook/test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula029/notebook/test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula029/notebook/test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula029/notebook/vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula029/notebook/vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula030/notebook/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula030/notebook/.gitignore -------------------------------------------------------------------------------- /aula030/notebook/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula030/notebook/Gemfile -------------------------------------------------------------------------------- /aula030/notebook/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula030/notebook/Rakefile -------------------------------------------------------------------------------- /aula030/notebook/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula030/notebook/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula030/notebook/app/helpers/addresses_helper.rb: -------------------------------------------------------------------------------- 1 | module AddressesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula030/notebook/app/helpers/contacts_helper.rb: -------------------------------------------------------------------------------- 1 | module ContactsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula030/notebook/app/helpers/kinds_helper.rb: -------------------------------------------------------------------------------- 1 | module KindsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula030/notebook/app/helpers/phones_helper.rb: -------------------------------------------------------------------------------- 1 | module PhonesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula030/notebook/app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula030/notebook/app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula030/notebook/app/models/address.rb: -------------------------------------------------------------------------------- 1 | class Address < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula030/notebook/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula030/notebook/app/models/contact.rb: -------------------------------------------------------------------------------- 1 | class Contact < ActiveRecord::Base 2 | belongs_to :kind 3 | end 4 | -------------------------------------------------------------------------------- /aula030/notebook/app/models/kind.rb: -------------------------------------------------------------------------------- 1 | class Kind < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /aula030/notebook/app/models/phone.rb: -------------------------------------------------------------------------------- 1 | class Phone < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula030/notebook/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula030/notebook/bin/bundle -------------------------------------------------------------------------------- /aula030/notebook/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula030/notebook/bin/rails -------------------------------------------------------------------------------- /aula030/notebook/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula030/notebook/bin/rake -------------------------------------------------------------------------------- /aula030/notebook/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula030/notebook/bin/setup -------------------------------------------------------------------------------- /aula030/notebook/bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula030/notebook/bin/spring -------------------------------------------------------------------------------- /aula030/notebook/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula030/notebook/config.ru -------------------------------------------------------------------------------- /aula030/notebook/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula030/notebook/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula030/notebook/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula030/notebook/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula030/notebook/test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula030/notebook/test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula030/notebook/test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula030/notebook/test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula030/notebook/test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula030/notebook/test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula030/notebook/vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula030/notebook/vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula031/notebook/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula031/notebook/.gitignore -------------------------------------------------------------------------------- /aula031/notebook/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula031/notebook/Gemfile -------------------------------------------------------------------------------- /aula031/notebook/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula031/notebook/Rakefile -------------------------------------------------------------------------------- /aula031/notebook/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula031/notebook/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula031/notebook/app/helpers/addresses_helper.rb: -------------------------------------------------------------------------------- 1 | module AddressesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula031/notebook/app/helpers/contacts_helper.rb: -------------------------------------------------------------------------------- 1 | module ContactsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula031/notebook/app/helpers/kinds_helper.rb: -------------------------------------------------------------------------------- 1 | module KindsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula031/notebook/app/helpers/phones_helper.rb: -------------------------------------------------------------------------------- 1 | module PhonesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula031/notebook/app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula031/notebook/app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula031/notebook/app/models/address.rb: -------------------------------------------------------------------------------- 1 | class Address < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula031/notebook/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula031/notebook/app/models/contact.rb: -------------------------------------------------------------------------------- 1 | class Contact < ActiveRecord::Base 2 | belongs_to :kind 3 | end 4 | -------------------------------------------------------------------------------- /aula031/notebook/app/models/kind.rb: -------------------------------------------------------------------------------- 1 | class Kind < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /aula031/notebook/app/models/phone.rb: -------------------------------------------------------------------------------- 1 | class Phone < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula031/notebook/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula031/notebook/bin/bundle -------------------------------------------------------------------------------- /aula031/notebook/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula031/notebook/bin/rails -------------------------------------------------------------------------------- /aula031/notebook/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula031/notebook/bin/rake -------------------------------------------------------------------------------- /aula031/notebook/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula031/notebook/bin/setup -------------------------------------------------------------------------------- /aula031/notebook/bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula031/notebook/bin/spring -------------------------------------------------------------------------------- /aula031/notebook/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula031/notebook/config.ru -------------------------------------------------------------------------------- /aula031/notebook/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula031/notebook/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula031/notebook/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula031/notebook/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula031/notebook/test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula031/notebook/test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula031/notebook/test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula031/notebook/test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula031/notebook/test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula031/notebook/test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula031/notebook/vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula031/notebook/vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula032/notebook/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula032/notebook/.gitignore -------------------------------------------------------------------------------- /aula032/notebook/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula032/notebook/Gemfile -------------------------------------------------------------------------------- /aula032/notebook/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula032/notebook/Rakefile -------------------------------------------------------------------------------- /aula032/notebook/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula032/notebook/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula032/notebook/app/helpers/addresses_helper.rb: -------------------------------------------------------------------------------- 1 | module AddressesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula032/notebook/app/helpers/contacts_helper.rb: -------------------------------------------------------------------------------- 1 | module ContactsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula032/notebook/app/helpers/kinds_helper.rb: -------------------------------------------------------------------------------- 1 | module KindsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula032/notebook/app/helpers/phones_helper.rb: -------------------------------------------------------------------------------- 1 | module PhonesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula032/notebook/app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula032/notebook/app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula032/notebook/app/models/address.rb: -------------------------------------------------------------------------------- 1 | class Address < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula032/notebook/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula032/notebook/app/models/contact.rb: -------------------------------------------------------------------------------- 1 | class Contact < ActiveRecord::Base 2 | belongs_to :kind 3 | end 4 | -------------------------------------------------------------------------------- /aula032/notebook/app/models/kind.rb: -------------------------------------------------------------------------------- 1 | class Kind < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /aula032/notebook/app/models/phone.rb: -------------------------------------------------------------------------------- 1 | class Phone < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula032/notebook/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula032/notebook/bin/bundle -------------------------------------------------------------------------------- /aula032/notebook/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula032/notebook/bin/rails -------------------------------------------------------------------------------- /aula032/notebook/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula032/notebook/bin/rake -------------------------------------------------------------------------------- /aula032/notebook/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula032/notebook/bin/setup -------------------------------------------------------------------------------- /aula032/notebook/bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula032/notebook/bin/spring -------------------------------------------------------------------------------- /aula032/notebook/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula032/notebook/config.ru -------------------------------------------------------------------------------- /aula032/notebook/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula032/notebook/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula032/notebook/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula032/notebook/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula032/notebook/test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula032/notebook/test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula032/notebook/test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula032/notebook/test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula032/notebook/test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula032/notebook/test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula032/notebook/vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula032/notebook/vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula033/notebook/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula033/notebook/.gitignore -------------------------------------------------------------------------------- /aula033/notebook/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula033/notebook/Gemfile -------------------------------------------------------------------------------- /aula033/notebook/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula033/notebook/Rakefile -------------------------------------------------------------------------------- /aula033/notebook/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula033/notebook/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula033/notebook/app/helpers/addresses_helper.rb: -------------------------------------------------------------------------------- 1 | module AddressesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula033/notebook/app/helpers/contacts_helper.rb: -------------------------------------------------------------------------------- 1 | module ContactsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula033/notebook/app/helpers/kinds_helper.rb: -------------------------------------------------------------------------------- 1 | module KindsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula033/notebook/app/helpers/phones_helper.rb: -------------------------------------------------------------------------------- 1 | module PhonesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula033/notebook/app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula033/notebook/app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula033/notebook/app/models/address.rb: -------------------------------------------------------------------------------- 1 | class Address < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula033/notebook/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula033/notebook/app/models/contact.rb: -------------------------------------------------------------------------------- 1 | class Contact < ActiveRecord::Base 2 | belongs_to :kind 3 | end 4 | -------------------------------------------------------------------------------- /aula033/notebook/app/models/kind.rb: -------------------------------------------------------------------------------- 1 | class Kind < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /aula033/notebook/app/models/phone.rb: -------------------------------------------------------------------------------- 1 | class Phone < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula033/notebook/app/views/contacts/edit.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form' %> 2 | -------------------------------------------------------------------------------- /aula033/notebook/app/views/contacts/new.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form' %> 2 | -------------------------------------------------------------------------------- /aula033/notebook/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula033/notebook/bin/bundle -------------------------------------------------------------------------------- /aula033/notebook/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula033/notebook/bin/rails -------------------------------------------------------------------------------- /aula033/notebook/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula033/notebook/bin/rake -------------------------------------------------------------------------------- /aula033/notebook/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula033/notebook/bin/setup -------------------------------------------------------------------------------- /aula033/notebook/bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula033/notebook/bin/spring -------------------------------------------------------------------------------- /aula033/notebook/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula033/notebook/config.ru -------------------------------------------------------------------------------- /aula033/notebook/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula033/notebook/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula033/notebook/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula033/notebook/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula033/notebook/test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula033/notebook/test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula033/notebook/test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula033/notebook/test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula033/notebook/test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula033/notebook/test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula033/notebook/vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula033/notebook/vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula034/notebook/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula034/notebook/.gitignore -------------------------------------------------------------------------------- /aula034/notebook/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula034/notebook/Gemfile -------------------------------------------------------------------------------- /aula034/notebook/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula034/notebook/Rakefile -------------------------------------------------------------------------------- /aula034/notebook/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula034/notebook/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula034/notebook/app/helpers/addresses_helper.rb: -------------------------------------------------------------------------------- 1 | module AddressesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula034/notebook/app/helpers/contacts_helper.rb: -------------------------------------------------------------------------------- 1 | module ContactsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula034/notebook/app/helpers/kinds_helper.rb: -------------------------------------------------------------------------------- 1 | module KindsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula034/notebook/app/helpers/phones_helper.rb: -------------------------------------------------------------------------------- 1 | module PhonesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula034/notebook/app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula034/notebook/app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula034/notebook/app/models/address.rb: -------------------------------------------------------------------------------- 1 | class Address < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula034/notebook/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula034/notebook/app/models/contact.rb: -------------------------------------------------------------------------------- 1 | class Contact < ActiveRecord::Base 2 | belongs_to :kind 3 | end 4 | -------------------------------------------------------------------------------- /aula034/notebook/app/models/kind.rb: -------------------------------------------------------------------------------- 1 | class Kind < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /aula034/notebook/app/models/phone.rb: -------------------------------------------------------------------------------- 1 | class Phone < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula034/notebook/app/views/contacts/edit.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form' %> 2 | -------------------------------------------------------------------------------- /aula034/notebook/app/views/contacts/new.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form' %> 2 | -------------------------------------------------------------------------------- /aula034/notebook/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula034/notebook/bin/bundle -------------------------------------------------------------------------------- /aula034/notebook/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula034/notebook/bin/rails -------------------------------------------------------------------------------- /aula034/notebook/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula034/notebook/bin/rake -------------------------------------------------------------------------------- /aula034/notebook/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula034/notebook/bin/setup -------------------------------------------------------------------------------- /aula034/notebook/bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula034/notebook/bin/spring -------------------------------------------------------------------------------- /aula034/notebook/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula034/notebook/config.ru -------------------------------------------------------------------------------- /aula034/notebook/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula034/notebook/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula034/notebook/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula034/notebook/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula034/notebook/test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula034/notebook/test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula034/notebook/test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula034/notebook/test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula034/notebook/test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula034/notebook/test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula034/notebook/vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula034/notebook/vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula036/notebook/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula036/notebook/.gitignore -------------------------------------------------------------------------------- /aula036/notebook/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula036/notebook/Gemfile -------------------------------------------------------------------------------- /aula036/notebook/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula036/notebook/Rakefile -------------------------------------------------------------------------------- /aula036/notebook/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula036/notebook/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula036/notebook/app/helpers/addresses_helper.rb: -------------------------------------------------------------------------------- 1 | module AddressesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula036/notebook/app/helpers/contacts_helper.rb: -------------------------------------------------------------------------------- 1 | module ContactsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula036/notebook/app/helpers/kinds_helper.rb: -------------------------------------------------------------------------------- 1 | module KindsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula036/notebook/app/helpers/phones_helper.rb: -------------------------------------------------------------------------------- 1 | module PhonesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula036/notebook/app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula036/notebook/app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula036/notebook/app/models/address.rb: -------------------------------------------------------------------------------- 1 | class Address < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula036/notebook/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula036/notebook/app/models/contact.rb: -------------------------------------------------------------------------------- 1 | class Contact < ActiveRecord::Base 2 | belongs_to :kind 3 | end 4 | -------------------------------------------------------------------------------- /aula036/notebook/app/models/kind.rb: -------------------------------------------------------------------------------- 1 | class Kind < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /aula036/notebook/app/models/phone.rb: -------------------------------------------------------------------------------- 1 | class Phone < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula036/notebook/app/views/contacts/edit.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form' %> 2 | -------------------------------------------------------------------------------- /aula036/notebook/app/views/contacts/new.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form' %> 2 | -------------------------------------------------------------------------------- /aula036/notebook/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula036/notebook/bin/bundle -------------------------------------------------------------------------------- /aula036/notebook/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula036/notebook/bin/rails -------------------------------------------------------------------------------- /aula036/notebook/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula036/notebook/bin/rake -------------------------------------------------------------------------------- /aula036/notebook/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula036/notebook/bin/setup -------------------------------------------------------------------------------- /aula036/notebook/bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula036/notebook/bin/spring -------------------------------------------------------------------------------- /aula036/notebook/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula036/notebook/config.ru -------------------------------------------------------------------------------- /aula036/notebook/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula036/notebook/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula036/notebook/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula036/notebook/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula036/notebook/test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula036/notebook/test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula036/notebook/test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula036/notebook/test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula036/notebook/test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula036/notebook/test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula036/notebook/vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula036/notebook/vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula037/notebook/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula037/notebook/.gitignore -------------------------------------------------------------------------------- /aula037/notebook/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula037/notebook/Gemfile -------------------------------------------------------------------------------- /aula037/notebook/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula037/notebook/Rakefile -------------------------------------------------------------------------------- /aula037/notebook/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula037/notebook/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula037/notebook/app/helpers/addresses_helper.rb: -------------------------------------------------------------------------------- 1 | module AddressesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula037/notebook/app/helpers/contacts_helper.rb: -------------------------------------------------------------------------------- 1 | module ContactsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula037/notebook/app/helpers/kinds_helper.rb: -------------------------------------------------------------------------------- 1 | module KindsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula037/notebook/app/helpers/phones_helper.rb: -------------------------------------------------------------------------------- 1 | module PhonesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula037/notebook/app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula037/notebook/app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula037/notebook/app/models/address.rb: -------------------------------------------------------------------------------- 1 | class Address < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula037/notebook/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula037/notebook/app/models/contact.rb: -------------------------------------------------------------------------------- 1 | class Contact < ActiveRecord::Base 2 | belongs_to :kind 3 | end 4 | -------------------------------------------------------------------------------- /aula037/notebook/app/models/kind.rb: -------------------------------------------------------------------------------- 1 | class Kind < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /aula037/notebook/app/models/phone.rb: -------------------------------------------------------------------------------- 1 | class Phone < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula037/notebook/app/views/contacts/edit.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form' %> 2 | -------------------------------------------------------------------------------- /aula037/notebook/app/views/contacts/new.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form' %> 2 | -------------------------------------------------------------------------------- /aula037/notebook/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula037/notebook/bin/bundle -------------------------------------------------------------------------------- /aula037/notebook/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula037/notebook/bin/rails -------------------------------------------------------------------------------- /aula037/notebook/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula037/notebook/bin/rake -------------------------------------------------------------------------------- /aula037/notebook/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula037/notebook/bin/setup -------------------------------------------------------------------------------- /aula037/notebook/bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula037/notebook/bin/spring -------------------------------------------------------------------------------- /aula037/notebook/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula037/notebook/config.ru -------------------------------------------------------------------------------- /aula037/notebook/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula037/notebook/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula037/notebook/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula037/notebook/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula037/notebook/test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula037/notebook/test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula037/notebook/test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula037/notebook/test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula037/notebook/test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula037/notebook/test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula037/notebook/vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula037/notebook/vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula040/notebook/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula040/notebook/.gitignore -------------------------------------------------------------------------------- /aula040/notebook/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula040/notebook/Gemfile -------------------------------------------------------------------------------- /aula040/notebook/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula040/notebook/Rakefile -------------------------------------------------------------------------------- /aula040/notebook/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula040/notebook/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula040/notebook/app/helpers/addresses_helper.rb: -------------------------------------------------------------------------------- 1 | module AddressesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula040/notebook/app/helpers/contacts_helper.rb: -------------------------------------------------------------------------------- 1 | module ContactsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula040/notebook/app/helpers/kinds_helper.rb: -------------------------------------------------------------------------------- 1 | module KindsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula040/notebook/app/helpers/phones_helper.rb: -------------------------------------------------------------------------------- 1 | module PhonesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula040/notebook/app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula040/notebook/app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula040/notebook/app/models/address.rb: -------------------------------------------------------------------------------- 1 | class Address < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula040/notebook/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula040/notebook/app/models/kind.rb: -------------------------------------------------------------------------------- 1 | class Kind < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /aula040/notebook/app/models/phone.rb: -------------------------------------------------------------------------------- 1 | class Phone < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula040/notebook/app/views/contacts/edit.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form' %> 2 | -------------------------------------------------------------------------------- /aula040/notebook/app/views/contacts/new.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form' %> 2 | -------------------------------------------------------------------------------- /aula040/notebook/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula040/notebook/bin/bundle -------------------------------------------------------------------------------- /aula040/notebook/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula040/notebook/bin/rails -------------------------------------------------------------------------------- /aula040/notebook/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula040/notebook/bin/rake -------------------------------------------------------------------------------- /aula040/notebook/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula040/notebook/bin/setup -------------------------------------------------------------------------------- /aula040/notebook/bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula040/notebook/bin/spring -------------------------------------------------------------------------------- /aula040/notebook/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula040/notebook/config.ru -------------------------------------------------------------------------------- /aula040/notebook/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula040/notebook/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula040/notebook/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula040/notebook/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula040/notebook/test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula040/notebook/test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula040/notebook/test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula040/notebook/test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula040/notebook/test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula040/notebook/test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula040/notebook/vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula040/notebook/vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula041/notebook/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula041/notebook/.gitignore -------------------------------------------------------------------------------- /aula041/notebook/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula041/notebook/Gemfile -------------------------------------------------------------------------------- /aula041/notebook/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula041/notebook/Rakefile -------------------------------------------------------------------------------- /aula041/notebook/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula041/notebook/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula041/notebook/app/helpers/addresses_helper.rb: -------------------------------------------------------------------------------- 1 | module AddressesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula041/notebook/app/helpers/contacts_helper.rb: -------------------------------------------------------------------------------- 1 | module ContactsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula041/notebook/app/helpers/kinds_helper.rb: -------------------------------------------------------------------------------- 1 | module KindsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula041/notebook/app/helpers/phones_helper.rb: -------------------------------------------------------------------------------- 1 | module PhonesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula041/notebook/app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula041/notebook/app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula041/notebook/app/models/address.rb: -------------------------------------------------------------------------------- 1 | class Address < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula041/notebook/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula041/notebook/app/models/kind.rb: -------------------------------------------------------------------------------- 1 | class Kind < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /aula041/notebook/app/models/phone.rb: -------------------------------------------------------------------------------- 1 | class Phone < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula041/notebook/app/views/contacts/edit.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form' %> 2 | -------------------------------------------------------------------------------- /aula041/notebook/app/views/contacts/new.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form' %> 2 | -------------------------------------------------------------------------------- /aula041/notebook/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula041/notebook/bin/bundle -------------------------------------------------------------------------------- /aula041/notebook/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula041/notebook/bin/rails -------------------------------------------------------------------------------- /aula041/notebook/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula041/notebook/bin/rake -------------------------------------------------------------------------------- /aula041/notebook/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula041/notebook/bin/setup -------------------------------------------------------------------------------- /aula041/notebook/bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula041/notebook/bin/spring -------------------------------------------------------------------------------- /aula041/notebook/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula041/notebook/config.ru -------------------------------------------------------------------------------- /aula041/notebook/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula041/notebook/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula041/notebook/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula041/notebook/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula041/notebook/test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula041/notebook/test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula041/notebook/test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula041/notebook/test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula041/notebook/test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula041/notebook/test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula041/notebook/vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula041/notebook/vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula042/notebook/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula042/notebook/.gitignore -------------------------------------------------------------------------------- /aula042/notebook/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula042/notebook/Gemfile -------------------------------------------------------------------------------- /aula042/notebook/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula042/notebook/Rakefile -------------------------------------------------------------------------------- /aula042/notebook/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula042/notebook/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula042/notebook/app/helpers/addresses_helper.rb: -------------------------------------------------------------------------------- 1 | module AddressesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula042/notebook/app/helpers/contacts_helper.rb: -------------------------------------------------------------------------------- 1 | module ContactsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula042/notebook/app/helpers/kinds_helper.rb: -------------------------------------------------------------------------------- 1 | module KindsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula042/notebook/app/helpers/phones_helper.rb: -------------------------------------------------------------------------------- 1 | module PhonesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula042/notebook/app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula042/notebook/app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula042/notebook/app/models/address.rb: -------------------------------------------------------------------------------- 1 | class Address < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula042/notebook/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula042/notebook/app/models/kind.rb: -------------------------------------------------------------------------------- 1 | class Kind < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /aula042/notebook/app/models/phone.rb: -------------------------------------------------------------------------------- 1 | class Phone < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula042/notebook/app/views/contacts/edit.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form' %> 2 | -------------------------------------------------------------------------------- /aula042/notebook/app/views/contacts/new.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form' %> 2 | -------------------------------------------------------------------------------- /aula042/notebook/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula042/notebook/bin/bundle -------------------------------------------------------------------------------- /aula042/notebook/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula042/notebook/bin/rails -------------------------------------------------------------------------------- /aula042/notebook/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula042/notebook/bin/rake -------------------------------------------------------------------------------- /aula042/notebook/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula042/notebook/bin/setup -------------------------------------------------------------------------------- /aula042/notebook/bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula042/notebook/bin/spring -------------------------------------------------------------------------------- /aula042/notebook/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula042/notebook/config.ru -------------------------------------------------------------------------------- /aula042/notebook/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula042/notebook/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula042/notebook/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula042/notebook/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula042/notebook/test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula042/notebook/test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula042/notebook/test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula042/notebook/test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula042/notebook/test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula042/notebook/test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula042/notebook/vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula042/notebook/vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula043/notebook/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula043/notebook/.gitignore -------------------------------------------------------------------------------- /aula043/notebook/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula043/notebook/Gemfile -------------------------------------------------------------------------------- /aula043/notebook/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula043/notebook/Rakefile -------------------------------------------------------------------------------- /aula043/notebook/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula043/notebook/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula043/notebook/app/helpers/addresses_helper.rb: -------------------------------------------------------------------------------- 1 | module AddressesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula043/notebook/app/helpers/contacts_helper.rb: -------------------------------------------------------------------------------- 1 | module ContactsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula043/notebook/app/helpers/kinds_helper.rb: -------------------------------------------------------------------------------- 1 | module KindsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula043/notebook/app/helpers/phones_helper.rb: -------------------------------------------------------------------------------- 1 | module PhonesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula043/notebook/app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula043/notebook/app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula043/notebook/app/models/address.rb: -------------------------------------------------------------------------------- 1 | class Address < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula043/notebook/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula043/notebook/app/models/kind.rb: -------------------------------------------------------------------------------- 1 | class Kind < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /aula043/notebook/app/models/phone.rb: -------------------------------------------------------------------------------- 1 | class Phone < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula043/notebook/app/views/contacts/edit.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form' %> 2 | -------------------------------------------------------------------------------- /aula043/notebook/app/views/contacts/new.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form' %> 2 | -------------------------------------------------------------------------------- /aula043/notebook/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula043/notebook/bin/bundle -------------------------------------------------------------------------------- /aula043/notebook/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula043/notebook/bin/rails -------------------------------------------------------------------------------- /aula043/notebook/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula043/notebook/bin/rake -------------------------------------------------------------------------------- /aula043/notebook/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula043/notebook/bin/setup -------------------------------------------------------------------------------- /aula043/notebook/bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula043/notebook/bin/spring -------------------------------------------------------------------------------- /aula043/notebook/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula043/notebook/config.ru -------------------------------------------------------------------------------- /aula043/notebook/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula043/notebook/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula043/notebook/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula043/notebook/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula043/notebook/test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula043/notebook/test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula043/notebook/test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula043/notebook/test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula043/notebook/test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula043/notebook/test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula043/notebook/vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula043/notebook/vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula044/notebook/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula044/notebook/.gitignore -------------------------------------------------------------------------------- /aula044/notebook/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula044/notebook/Gemfile -------------------------------------------------------------------------------- /aula044/notebook/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula044/notebook/Rakefile -------------------------------------------------------------------------------- /aula044/notebook/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula044/notebook/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula044/notebook/app/helpers/addresses_helper.rb: -------------------------------------------------------------------------------- 1 | module AddressesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula044/notebook/app/helpers/contacts_helper.rb: -------------------------------------------------------------------------------- 1 | module ContactsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula044/notebook/app/helpers/kinds_helper.rb: -------------------------------------------------------------------------------- 1 | module KindsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula044/notebook/app/helpers/phones_helper.rb: -------------------------------------------------------------------------------- 1 | module PhonesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula044/notebook/app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula044/notebook/app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula044/notebook/app/models/address.rb: -------------------------------------------------------------------------------- 1 | class Address < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula044/notebook/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula044/notebook/app/models/kind.rb: -------------------------------------------------------------------------------- 1 | class Kind < ActiveRecord::Base 2 | has_many :contacts 3 | end 4 | -------------------------------------------------------------------------------- /aula044/notebook/app/models/phone.rb: -------------------------------------------------------------------------------- 1 | class Phone < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula044/notebook/app/views/contacts/edit.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form' %> 2 | -------------------------------------------------------------------------------- /aula044/notebook/app/views/contacts/new.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form' %> 2 | -------------------------------------------------------------------------------- /aula044/notebook/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula044/notebook/bin/bundle -------------------------------------------------------------------------------- /aula044/notebook/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula044/notebook/bin/rails -------------------------------------------------------------------------------- /aula044/notebook/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula044/notebook/bin/rake -------------------------------------------------------------------------------- /aula044/notebook/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula044/notebook/bin/setup -------------------------------------------------------------------------------- /aula044/notebook/bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula044/notebook/bin/spring -------------------------------------------------------------------------------- /aula044/notebook/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula044/notebook/config.ru -------------------------------------------------------------------------------- /aula044/notebook/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula044/notebook/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula044/notebook/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula044/notebook/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula044/notebook/test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula044/notebook/test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula044/notebook/test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula044/notebook/test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula044/notebook/test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula044/notebook/test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula044/notebook/vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula044/notebook/vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula045/notebook/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula045/notebook/.gitignore -------------------------------------------------------------------------------- /aula045/notebook/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula045/notebook/Gemfile -------------------------------------------------------------------------------- /aula045/notebook/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula045/notebook/Rakefile -------------------------------------------------------------------------------- /aula045/notebook/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula045/notebook/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula045/notebook/app/helpers/addresses_helper.rb: -------------------------------------------------------------------------------- 1 | module AddressesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula045/notebook/app/helpers/contacts_helper.rb: -------------------------------------------------------------------------------- 1 | module ContactsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula045/notebook/app/helpers/kinds_helper.rb: -------------------------------------------------------------------------------- 1 | module KindsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula045/notebook/app/helpers/phones_helper.rb: -------------------------------------------------------------------------------- 1 | module PhonesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula045/notebook/app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula045/notebook/app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula045/notebook/app/models/address.rb: -------------------------------------------------------------------------------- 1 | class Address < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula045/notebook/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula045/notebook/app/models/kind.rb: -------------------------------------------------------------------------------- 1 | class Kind < ActiveRecord::Base 2 | has_many :contacts 3 | end 4 | -------------------------------------------------------------------------------- /aula045/notebook/app/models/phone.rb: -------------------------------------------------------------------------------- 1 | class Phone < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula045/notebook/app/views/contacts/edit.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form' %> 2 | -------------------------------------------------------------------------------- /aula045/notebook/app/views/contacts/new.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form' %> 2 | -------------------------------------------------------------------------------- /aula045/notebook/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula045/notebook/bin/bundle -------------------------------------------------------------------------------- /aula045/notebook/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula045/notebook/bin/rails -------------------------------------------------------------------------------- /aula045/notebook/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula045/notebook/bin/rake -------------------------------------------------------------------------------- /aula045/notebook/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula045/notebook/bin/setup -------------------------------------------------------------------------------- /aula045/notebook/bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula045/notebook/bin/spring -------------------------------------------------------------------------------- /aula045/notebook/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula045/notebook/config.ru -------------------------------------------------------------------------------- /aula045/notebook/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula045/notebook/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula045/notebook/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula045/notebook/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula045/notebook/test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula045/notebook/test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula045/notebook/test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula045/notebook/test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula045/notebook/test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula045/notebook/test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula045/notebook/vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula045/notebook/vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula046/notebook/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula046/notebook/.gitignore -------------------------------------------------------------------------------- /aula046/notebook/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula046/notebook/Gemfile -------------------------------------------------------------------------------- /aula046/notebook/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula046/notebook/Rakefile -------------------------------------------------------------------------------- /aula046/notebook/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula046/notebook/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula046/notebook/app/helpers/addresses_helper.rb: -------------------------------------------------------------------------------- 1 | module AddressesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula046/notebook/app/helpers/contacts_helper.rb: -------------------------------------------------------------------------------- 1 | module ContactsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula046/notebook/app/helpers/kinds_helper.rb: -------------------------------------------------------------------------------- 1 | module KindsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula046/notebook/app/helpers/phones_helper.rb: -------------------------------------------------------------------------------- 1 | module PhonesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula046/notebook/app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula046/notebook/app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula046/notebook/app/models/address.rb: -------------------------------------------------------------------------------- 1 | class Address < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula046/notebook/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula046/notebook/app/models/kind.rb: -------------------------------------------------------------------------------- 1 | class Kind < ActiveRecord::Base 2 | has_many :contacts 3 | end 4 | -------------------------------------------------------------------------------- /aula046/notebook/app/models/phone.rb: -------------------------------------------------------------------------------- 1 | class Phone < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula046/notebook/app/views/contacts/edit.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form' %> 2 | -------------------------------------------------------------------------------- /aula046/notebook/app/views/contacts/new.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form' %> 2 | -------------------------------------------------------------------------------- /aula046/notebook/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula046/notebook/bin/bundle -------------------------------------------------------------------------------- /aula046/notebook/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula046/notebook/bin/rails -------------------------------------------------------------------------------- /aula046/notebook/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula046/notebook/bin/rake -------------------------------------------------------------------------------- /aula046/notebook/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula046/notebook/bin/setup -------------------------------------------------------------------------------- /aula046/notebook/bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula046/notebook/bin/spring -------------------------------------------------------------------------------- /aula046/notebook/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula046/notebook/config.ru -------------------------------------------------------------------------------- /aula046/notebook/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula046/notebook/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula046/notebook/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula046/notebook/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula046/notebook/test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula046/notebook/test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula046/notebook/test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula046/notebook/test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula046/notebook/test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula046/notebook/test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula046/notebook/vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula046/notebook/vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula047/notebook/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula047/notebook/.gitignore -------------------------------------------------------------------------------- /aula047/notebook/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula047/notebook/Gemfile -------------------------------------------------------------------------------- /aula047/notebook/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula047/notebook/Rakefile -------------------------------------------------------------------------------- /aula047/notebook/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula047/notebook/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula047/notebook/app/helpers/addresses_helper.rb: -------------------------------------------------------------------------------- 1 | module AddressesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula047/notebook/app/helpers/contacts_helper.rb: -------------------------------------------------------------------------------- 1 | module ContactsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula047/notebook/app/helpers/kinds_helper.rb: -------------------------------------------------------------------------------- 1 | module KindsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula047/notebook/app/helpers/phones_helper.rb: -------------------------------------------------------------------------------- 1 | module PhonesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula047/notebook/app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula047/notebook/app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula047/notebook/app/models/address.rb: -------------------------------------------------------------------------------- 1 | class Address < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula047/notebook/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula047/notebook/app/models/kind.rb: -------------------------------------------------------------------------------- 1 | class Kind < ActiveRecord::Base 2 | has_many :contacts 3 | end 4 | -------------------------------------------------------------------------------- /aula047/notebook/app/models/phone.rb: -------------------------------------------------------------------------------- 1 | class Phone < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula047/notebook/app/views/contacts/edit.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form' %> 2 | -------------------------------------------------------------------------------- /aula047/notebook/app/views/contacts/new.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form' %> 2 | -------------------------------------------------------------------------------- /aula047/notebook/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula047/notebook/bin/bundle -------------------------------------------------------------------------------- /aula047/notebook/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula047/notebook/bin/rails -------------------------------------------------------------------------------- /aula047/notebook/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula047/notebook/bin/rake -------------------------------------------------------------------------------- /aula047/notebook/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula047/notebook/bin/setup -------------------------------------------------------------------------------- /aula047/notebook/bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula047/notebook/bin/spring -------------------------------------------------------------------------------- /aula047/notebook/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula047/notebook/config.ru -------------------------------------------------------------------------------- /aula047/notebook/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula047/notebook/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula047/notebook/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula047/notebook/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula047/notebook/test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula047/notebook/test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula047/notebook/test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula047/notebook/test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula047/notebook/test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula047/notebook/test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula047/notebook/vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula047/notebook/vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula048/notebook/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula048/notebook/.gitignore -------------------------------------------------------------------------------- /aula048/notebook/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula048/notebook/Gemfile -------------------------------------------------------------------------------- /aula048/notebook/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula048/notebook/Rakefile -------------------------------------------------------------------------------- /aula048/notebook/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula048/notebook/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula048/notebook/app/helpers/addresses_helper.rb: -------------------------------------------------------------------------------- 1 | module AddressesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula048/notebook/app/helpers/contacts_helper.rb: -------------------------------------------------------------------------------- 1 | module ContactsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula048/notebook/app/helpers/kinds_helper.rb: -------------------------------------------------------------------------------- 1 | module KindsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula048/notebook/app/helpers/phones_helper.rb: -------------------------------------------------------------------------------- 1 | module PhonesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula048/notebook/app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula048/notebook/app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula048/notebook/app/models/address.rb: -------------------------------------------------------------------------------- 1 | class Address < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula048/notebook/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula048/notebook/app/models/kind.rb: -------------------------------------------------------------------------------- 1 | class Kind < ActiveRecord::Base 2 | has_many :contacts 3 | end 4 | -------------------------------------------------------------------------------- /aula048/notebook/app/models/phone.rb: -------------------------------------------------------------------------------- 1 | class Phone < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula048/notebook/app/views/contacts/edit.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form' %> 2 | -------------------------------------------------------------------------------- /aula048/notebook/app/views/contacts/new.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form' %> 2 | -------------------------------------------------------------------------------- /aula048/notebook/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula048/notebook/bin/bundle -------------------------------------------------------------------------------- /aula048/notebook/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula048/notebook/bin/rails -------------------------------------------------------------------------------- /aula048/notebook/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula048/notebook/bin/rake -------------------------------------------------------------------------------- /aula048/notebook/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula048/notebook/bin/setup -------------------------------------------------------------------------------- /aula048/notebook/bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula048/notebook/bin/spring -------------------------------------------------------------------------------- /aula048/notebook/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula048/notebook/config.ru -------------------------------------------------------------------------------- /aula048/notebook/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula048/notebook/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula048/notebook/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula048/notebook/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula048/notebook/test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula048/notebook/test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula048/notebook/test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula048/notebook/test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula048/notebook/test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula048/notebook/test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula048/notebook/vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula048/notebook/vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula049/notebook/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula049/notebook/.gitignore -------------------------------------------------------------------------------- /aula049/notebook/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula049/notebook/Gemfile -------------------------------------------------------------------------------- /aula049/notebook/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula049/notebook/Rakefile -------------------------------------------------------------------------------- /aula049/notebook/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula049/notebook/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula049/notebook/app/helpers/addresses_helper.rb: -------------------------------------------------------------------------------- 1 | module AddressesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula049/notebook/app/helpers/contacts_helper.rb: -------------------------------------------------------------------------------- 1 | module ContactsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula049/notebook/app/helpers/kinds_helper.rb: -------------------------------------------------------------------------------- 1 | module KindsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula049/notebook/app/helpers/phones_helper.rb: -------------------------------------------------------------------------------- 1 | module PhonesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula049/notebook/app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula049/notebook/app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula049/notebook/app/models/address.rb: -------------------------------------------------------------------------------- 1 | class Address < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula049/notebook/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula049/notebook/app/models/kind.rb: -------------------------------------------------------------------------------- 1 | class Kind < ActiveRecord::Base 2 | has_many :contacts 3 | end 4 | -------------------------------------------------------------------------------- /aula049/notebook/app/models/phone.rb: -------------------------------------------------------------------------------- 1 | class Phone < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula049/notebook/app/views/contacts/edit.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form' %> 2 | -------------------------------------------------------------------------------- /aula049/notebook/app/views/contacts/new.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form' %> 2 | -------------------------------------------------------------------------------- /aula049/notebook/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula049/notebook/bin/bundle -------------------------------------------------------------------------------- /aula049/notebook/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula049/notebook/bin/rails -------------------------------------------------------------------------------- /aula049/notebook/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula049/notebook/bin/rake -------------------------------------------------------------------------------- /aula049/notebook/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula049/notebook/bin/setup -------------------------------------------------------------------------------- /aula049/notebook/bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula049/notebook/bin/spring -------------------------------------------------------------------------------- /aula049/notebook/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula049/notebook/config.ru -------------------------------------------------------------------------------- /aula049/notebook/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula049/notebook/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula049/notebook/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula049/notebook/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula049/notebook/test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula049/notebook/test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula049/notebook/test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula049/notebook/test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula049/notebook/test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula049/notebook/test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula049/notebook/vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula049/notebook/vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula051/notebook/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula051/notebook/.gitignore -------------------------------------------------------------------------------- /aula051/notebook/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula051/notebook/Gemfile -------------------------------------------------------------------------------- /aula051/notebook/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula051/notebook/Rakefile -------------------------------------------------------------------------------- /aula051/notebook/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula051/notebook/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula051/notebook/app/helpers/addresses_helper.rb: -------------------------------------------------------------------------------- 1 | module AddressesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula051/notebook/app/helpers/contacts_helper.rb: -------------------------------------------------------------------------------- 1 | module ContactsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula051/notebook/app/helpers/kinds_helper.rb: -------------------------------------------------------------------------------- 1 | module KindsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula051/notebook/app/helpers/phones_helper.rb: -------------------------------------------------------------------------------- 1 | module PhonesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula051/notebook/app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula051/notebook/app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula051/notebook/app/models/address.rb: -------------------------------------------------------------------------------- 1 | class Address < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula051/notebook/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula051/notebook/app/models/kind.rb: -------------------------------------------------------------------------------- 1 | class Kind < ActiveRecord::Base 2 | has_many :contacts 3 | end 4 | -------------------------------------------------------------------------------- /aula051/notebook/app/models/phone.rb: -------------------------------------------------------------------------------- 1 | class Phone < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula051/notebook/app/views/contacts/edit.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form' %> 2 | -------------------------------------------------------------------------------- /aula051/notebook/app/views/contacts/new.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form' %> 2 | -------------------------------------------------------------------------------- /aula051/notebook/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula051/notebook/bin/bundle -------------------------------------------------------------------------------- /aula051/notebook/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula051/notebook/bin/rails -------------------------------------------------------------------------------- /aula051/notebook/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula051/notebook/bin/rake -------------------------------------------------------------------------------- /aula051/notebook/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula051/notebook/bin/setup -------------------------------------------------------------------------------- /aula051/notebook/bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula051/notebook/bin/spring -------------------------------------------------------------------------------- /aula051/notebook/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula051/notebook/config.ru -------------------------------------------------------------------------------- /aula051/notebook/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula051/notebook/lib/assets/javascripts/alert.js: -------------------------------------------------------------------------------- 1 | alert("Teste!!"); -------------------------------------------------------------------------------- /aula051/notebook/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula051/notebook/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula051/notebook/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula051/notebook/test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula051/notebook/test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula051/notebook/test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula051/notebook/test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula051/notebook/test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula051/notebook/test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula051/notebook/vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula051/notebook/vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula052/notebook/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula052/notebook/.gitignore -------------------------------------------------------------------------------- /aula052/notebook/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula052/notebook/Gemfile -------------------------------------------------------------------------------- /aula052/notebook/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula052/notebook/Rakefile -------------------------------------------------------------------------------- /aula052/notebook/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula052/notebook/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula052/notebook/app/helpers/addresses_helper.rb: -------------------------------------------------------------------------------- 1 | module AddressesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula052/notebook/app/helpers/contacts_helper.rb: -------------------------------------------------------------------------------- 1 | module ContactsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula052/notebook/app/helpers/kinds_helper.rb: -------------------------------------------------------------------------------- 1 | module KindsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula052/notebook/app/helpers/phones_helper.rb: -------------------------------------------------------------------------------- 1 | module PhonesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula052/notebook/app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula052/notebook/app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula052/notebook/app/models/address.rb: -------------------------------------------------------------------------------- 1 | class Address < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula052/notebook/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula052/notebook/app/models/kind.rb: -------------------------------------------------------------------------------- 1 | class Kind < ActiveRecord::Base 2 | has_many :contacts 3 | end 4 | -------------------------------------------------------------------------------- /aula052/notebook/app/models/phone.rb: -------------------------------------------------------------------------------- 1 | class Phone < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula052/notebook/app/views/contacts/edit.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form' %> 2 | -------------------------------------------------------------------------------- /aula052/notebook/app/views/contacts/new.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form' %> 2 | -------------------------------------------------------------------------------- /aula052/notebook/app/views/phones/index.js.erb: -------------------------------------------------------------------------------- 1 | alert("Teste do AJAX!"); -------------------------------------------------------------------------------- /aula052/notebook/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula052/notebook/bin/bundle -------------------------------------------------------------------------------- /aula052/notebook/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula052/notebook/bin/rails -------------------------------------------------------------------------------- /aula052/notebook/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula052/notebook/bin/rake -------------------------------------------------------------------------------- /aula052/notebook/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula052/notebook/bin/setup -------------------------------------------------------------------------------- /aula052/notebook/bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula052/notebook/bin/spring -------------------------------------------------------------------------------- /aula052/notebook/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula052/notebook/config.ru -------------------------------------------------------------------------------- /aula052/notebook/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula052/notebook/lib/assets/javascripts/alert.js: -------------------------------------------------------------------------------- 1 | alert("Teste!!"); -------------------------------------------------------------------------------- /aula052/notebook/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula052/notebook/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula052/notebook/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula052/notebook/test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula052/notebook/test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula052/notebook/test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula052/notebook/test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula052/notebook/test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula052/notebook/test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula052/notebook/vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula052/notebook/vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula053/notebook/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula053/notebook/.gitignore -------------------------------------------------------------------------------- /aula053/notebook/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula053/notebook/Gemfile -------------------------------------------------------------------------------- /aula053/notebook/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula053/notebook/Rakefile -------------------------------------------------------------------------------- /aula053/notebook/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula053/notebook/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula053/notebook/app/helpers/addresses_helper.rb: -------------------------------------------------------------------------------- 1 | module AddressesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula053/notebook/app/helpers/contacts_helper.rb: -------------------------------------------------------------------------------- 1 | module ContactsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula053/notebook/app/helpers/kinds_helper.rb: -------------------------------------------------------------------------------- 1 | module KindsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula053/notebook/app/helpers/phones_helper.rb: -------------------------------------------------------------------------------- 1 | module PhonesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula053/notebook/app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula053/notebook/app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula053/notebook/app/models/address.rb: -------------------------------------------------------------------------------- 1 | class Address < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula053/notebook/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula053/notebook/app/models/kind.rb: -------------------------------------------------------------------------------- 1 | class Kind < ActiveRecord::Base 2 | has_many :contacts 3 | end 4 | -------------------------------------------------------------------------------- /aula053/notebook/app/models/phone.rb: -------------------------------------------------------------------------------- 1 | class Phone < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula053/notebook/app/views/contacts/edit.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form' %> 2 | -------------------------------------------------------------------------------- /aula053/notebook/app/views/contacts/new.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form' %> 2 | -------------------------------------------------------------------------------- /aula053/notebook/app/views/phones/index.js.erb: -------------------------------------------------------------------------------- 1 | $.notify("Teste de AJAX!", "info"); -------------------------------------------------------------------------------- /aula053/notebook/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula053/notebook/bin/bundle -------------------------------------------------------------------------------- /aula053/notebook/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula053/notebook/bin/rails -------------------------------------------------------------------------------- /aula053/notebook/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula053/notebook/bin/rake -------------------------------------------------------------------------------- /aula053/notebook/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula053/notebook/bin/setup -------------------------------------------------------------------------------- /aula053/notebook/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula053/notebook/lib/assets/javascripts/alert.js: -------------------------------------------------------------------------------- 1 | alert("Teste!!"); -------------------------------------------------------------------------------- /aula053/notebook/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula053/notebook/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula053/notebook/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula053/notebook/test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula053/notebook/test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula053/notebook/test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula053/notebook/test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula053/notebook/test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula053/notebook/test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula053/notebook/vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula053/notebook/vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula054/notebook/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula054/notebook/Gemfile -------------------------------------------------------------------------------- /aula054/notebook/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula054/notebook/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula054/notebook/app/helpers/addresses_helper.rb: -------------------------------------------------------------------------------- 1 | module AddressesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula054/notebook/app/helpers/contacts_helper.rb: -------------------------------------------------------------------------------- 1 | module ContactsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula054/notebook/app/helpers/kinds_helper.rb: -------------------------------------------------------------------------------- 1 | module KindsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula054/notebook/app/helpers/phones_helper.rb: -------------------------------------------------------------------------------- 1 | module PhonesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula054/notebook/app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula054/notebook/app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula054/notebook/app/models/address.rb: -------------------------------------------------------------------------------- 1 | class Address < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula054/notebook/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula054/notebook/app/models/kind.rb: -------------------------------------------------------------------------------- 1 | class Kind < ActiveRecord::Base 2 | has_many :contacts 3 | end 4 | -------------------------------------------------------------------------------- /aula054/notebook/app/models/phone.rb: -------------------------------------------------------------------------------- 1 | class Phone < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula054/notebook/app/views/contacts/edit.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form' %> 2 | -------------------------------------------------------------------------------- /aula054/notebook/app/views/contacts/new.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form' %> 2 | -------------------------------------------------------------------------------- /aula054/notebook/app/views/phones/index.js.erb: -------------------------------------------------------------------------------- 1 | $.notify("Teste de AJAX!", "info"); -------------------------------------------------------------------------------- /aula054/notebook/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula054/notebook/lib/assets/javascripts/alert.js: -------------------------------------------------------------------------------- 1 | alert("Teste!!"); -------------------------------------------------------------------------------- /aula054/notebook/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula054/notebook/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula054/notebook/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula054/notebook/test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula054/notebook/test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula054/notebook/test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula054/notebook/test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula054/notebook/test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula054/notebook/test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula054/notebook/vendor/assets/bower_components/notifyjs/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /aula054/notebook/vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula054/notebook/vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula055/notebook/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula055/notebook/Gemfile -------------------------------------------------------------------------------- /aula055/notebook/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula055/notebook/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula055/notebook/app/helpers/addresses_helper.rb: -------------------------------------------------------------------------------- 1 | module AddressesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula055/notebook/app/helpers/contacts_helper.rb: -------------------------------------------------------------------------------- 1 | module ContactsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula055/notebook/app/helpers/kinds_helper.rb: -------------------------------------------------------------------------------- 1 | module KindsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula055/notebook/app/helpers/phones_helper.rb: -------------------------------------------------------------------------------- 1 | module PhonesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula055/notebook/app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula055/notebook/app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula055/notebook/app/models/address.rb: -------------------------------------------------------------------------------- 1 | class Address < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula055/notebook/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula055/notebook/app/models/kind.rb: -------------------------------------------------------------------------------- 1 | class Kind < ActiveRecord::Base 2 | has_many :contacts 3 | end 4 | -------------------------------------------------------------------------------- /aula055/notebook/app/models/phone.rb: -------------------------------------------------------------------------------- 1 | class Phone < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula055/notebook/app/views/contacts/edit.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form' %> 2 | -------------------------------------------------------------------------------- /aula055/notebook/app/views/contacts/new.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form' %> 2 | -------------------------------------------------------------------------------- /aula055/notebook/app/views/phones/index.js.erb: -------------------------------------------------------------------------------- 1 | $.notify("Teste de AJAX!", "info"); -------------------------------------------------------------------------------- /aula055/notebook/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula055/notebook/lib/assets/javascripts/alert.js: -------------------------------------------------------------------------------- 1 | alert("Teste!!"); -------------------------------------------------------------------------------- /aula055/notebook/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula055/notebook/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula055/notebook/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula055/notebook/test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula055/notebook/test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula055/notebook/test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula055/notebook/test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula055/notebook/test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula055/notebook/test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula055/notebook/vendor/assets/bower_components/notifyjs/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /aula055/notebook/vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula055/notebook/vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula057/notebook/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula057/notebook/Gemfile -------------------------------------------------------------------------------- /aula057/notebook/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula057/notebook/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula057/notebook/app/helpers/addresses_helper.rb: -------------------------------------------------------------------------------- 1 | module AddressesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula057/notebook/app/helpers/contacts_helper.rb: -------------------------------------------------------------------------------- 1 | module ContactsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula057/notebook/app/helpers/kinds_helper.rb: -------------------------------------------------------------------------------- 1 | module KindsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula057/notebook/app/helpers/phones_helper.rb: -------------------------------------------------------------------------------- 1 | module PhonesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula057/notebook/app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula057/notebook/app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula057/notebook/app/models/address.rb: -------------------------------------------------------------------------------- 1 | class Address < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula057/notebook/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula057/notebook/app/models/kind.rb: -------------------------------------------------------------------------------- 1 | class Kind < ActiveRecord::Base 2 | has_many :contacts 3 | end 4 | -------------------------------------------------------------------------------- /aula057/notebook/app/models/phone.rb: -------------------------------------------------------------------------------- 1 | class Phone < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula057/notebook/app/views/contacts/edit.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form' %> 2 | -------------------------------------------------------------------------------- /aula057/notebook/app/views/contacts/new.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form' %> 2 | -------------------------------------------------------------------------------- /aula057/notebook/app/views/phones/index.js.erb: -------------------------------------------------------------------------------- 1 | $.notify("Teste de AJAX!", "info"); -------------------------------------------------------------------------------- /aula057/notebook/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula057/notebook/lib/assets/javascripts/alert.js: -------------------------------------------------------------------------------- 1 | alert("Teste!!"); -------------------------------------------------------------------------------- /aula057/notebook/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula057/notebook/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula057/notebook/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula057/notebook/test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula057/notebook/test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula057/notebook/test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula057/notebook/test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula057/notebook/test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula057/notebook/test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula057/notebook/vendor/assets/bower_components/notifyjs/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /aula057/notebook/vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula057/notebook/vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula059/notebook/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula059/notebook/Gemfile -------------------------------------------------------------------------------- /aula059/notebook/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula059/notebook/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula059/notebook/app/helpers/addresses_helper.rb: -------------------------------------------------------------------------------- 1 | module AddressesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula059/notebook/app/helpers/contacts_helper.rb: -------------------------------------------------------------------------------- 1 | module ContactsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula059/notebook/app/helpers/kinds_helper.rb: -------------------------------------------------------------------------------- 1 | module KindsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula059/notebook/app/helpers/phones_helper.rb: -------------------------------------------------------------------------------- 1 | module PhonesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula059/notebook/app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula059/notebook/app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula059/notebook/app/models/address.rb: -------------------------------------------------------------------------------- 1 | class Address < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula059/notebook/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula059/notebook/app/models/kind.rb: -------------------------------------------------------------------------------- 1 | class Kind < ActiveRecord::Base 2 | has_many :contacts 3 | end 4 | -------------------------------------------------------------------------------- /aula059/notebook/app/models/phone.rb: -------------------------------------------------------------------------------- 1 | class Phone < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula059/notebook/app/views/contacts/edit.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form' %> 2 | -------------------------------------------------------------------------------- /aula059/notebook/app/views/contacts/new.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form' %> 2 | -------------------------------------------------------------------------------- /aula059/notebook/app/views/phones/index.js.erb: -------------------------------------------------------------------------------- 1 | $.notify("Teste de AJAX!", "info"); -------------------------------------------------------------------------------- /aula059/notebook/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula059/notebook/lib/assets/javascripts/alert.js: -------------------------------------------------------------------------------- 1 | alert("Teste!!"); -------------------------------------------------------------------------------- /aula059/notebook/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula059/notebook/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula059/notebook/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula059/notebook/test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula059/notebook/test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula059/notebook/test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula059/notebook/test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula059/notebook/test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula059/notebook/test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula059/notebook/vendor/assets/bower_components/notifyjs/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /aula059/notebook/vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula059/notebook/vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula060/notebook/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacksonpires/rails_completo_udemy/HEAD/aula060/notebook/Gemfile -------------------------------------------------------------------------------- /aula060/notebook/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula060/notebook/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula060/notebook/app/helpers/addresses_helper.rb: -------------------------------------------------------------------------------- 1 | module AddressesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula060/notebook/app/helpers/contacts_helper.rb: -------------------------------------------------------------------------------- 1 | module ContactsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula060/notebook/app/helpers/kinds_helper.rb: -------------------------------------------------------------------------------- 1 | module KindsHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula060/notebook/app/helpers/phones_helper.rb: -------------------------------------------------------------------------------- 1 | module PhonesHelper 2 | end 3 | -------------------------------------------------------------------------------- /aula060/notebook/app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula060/notebook/app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula060/notebook/app/models/address.rb: -------------------------------------------------------------------------------- 1 | class Address < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula060/notebook/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula060/notebook/app/models/kind.rb: -------------------------------------------------------------------------------- 1 | class Kind < ActiveRecord::Base 2 | has_many :contacts 3 | end 4 | -------------------------------------------------------------------------------- /aula060/notebook/app/models/phone.rb: -------------------------------------------------------------------------------- 1 | class Phone < ActiveRecord::Base 2 | belongs_to :contact 3 | end 4 | -------------------------------------------------------------------------------- /aula060/notebook/app/views/contacts/edit.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form' %> 2 | -------------------------------------------------------------------------------- /aula060/notebook/app/views/contacts/new.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form' %> 2 | -------------------------------------------------------------------------------- /aula060/notebook/app/views/kinds/edit.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form' %> 2 | -------------------------------------------------------------------------------- /aula060/notebook/app/views/kinds/new.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form' %> 2 | -------------------------------------------------------------------------------- /aula060/notebook/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula060/notebook/lib/assets/javascripts/alert.js: -------------------------------------------------------------------------------- 1 | alert("Teste!!"); -------------------------------------------------------------------------------- /aula060/notebook/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula060/notebook/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula060/notebook/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula060/notebook/test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula060/notebook/test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula060/notebook/test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula060/notebook/test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula060/notebook/test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula060/notebook/test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula060/notebook/vendor/assets/bower_components/notifyjs/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /aula060/notebook/vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aula060/notebook/vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------