├── .gitignore ├── CNAME ├── Gemfile ├── Gemfile.lock ├── README.md ├── Rakefile ├── app ├── assets │ ├── config │ │ └── manifest.js │ ├── images │ │ ├── .keep │ │ ├── LOGO.png │ │ ├── LOGO_large.png │ │ ├── NEW.png │ │ ├── NEW_HOV.png │ │ ├── NOTEBOOKS.png │ │ ├── NOTEBOOKS_HOV.png │ │ ├── NOTES.png │ │ ├── NOTES_HOV.png │ │ ├── SEARCH.png │ │ ├── SEARCH_HOV.png │ │ ├── TAGS.png │ │ ├── TAGS_HOV.png │ │ ├── forevernote.png │ │ ├── logout.png │ │ └── logout_hov.png │ ├── javascripts │ │ ├── api │ │ │ ├── notebooks.coffee │ │ │ ├── notes.coffee │ │ │ ├── taggings.coffee │ │ │ ├── tags.coffee │ │ │ └── users.coffee │ │ ├── application.js │ │ ├── cable.js │ │ ├── channels │ │ │ └── .keep │ │ └── static_pages.coffee │ └── stylesheets │ │ ├── api │ │ ├── notebooks.scss │ │ ├── notes.scss │ │ ├── taggings.scss │ │ ├── tags.scss │ │ └── users.scss │ │ ├── application.css.scss │ │ ├── components │ │ ├── auth_form.scss │ │ ├── editorStyles.css │ │ ├── forever-modal.scss │ │ ├── loader.scss │ │ ├── nav_bar.scss │ │ ├── new-notebook.scss │ │ ├── note-index.scss │ │ ├── note.scss │ │ └── notebook-index.scss │ │ └── static_pages.scss ├── channels │ └── application_cable │ │ ├── channel.rb │ │ └── connection.rb ├── controllers │ ├── api │ │ ├── notebooks_controller.rb │ │ ├── notes_controller.rb │ │ ├── sessions_controller.rb │ │ ├── taggings_controller.rb │ │ ├── tags_controller.rb │ │ └── users_controller.rb │ ├── application_controller.rb │ ├── concerns │ │ └── .keep │ └── static_pages_controller.rb ├── helpers │ ├── api │ │ ├── notebooks_helper.rb │ │ ├── notes_helper.rb │ │ ├── taggings_helper.rb │ │ ├── tags_helper.rb │ │ └── users_helper.rb │ ├── application_helper.rb │ └── static_pages_helper.rb ├── jobs │ └── application_job.rb ├── mailers │ └── application_mailer.rb ├── models │ ├── application_record.rb │ ├── concerns │ │ └── .keep │ ├── note.rb │ ├── notebook.rb │ ├── tag.rb │ ├── tagging.rb │ └── user.rb └── views │ ├── api │ ├── notebooks │ │ ├── _note.json.jbuilder │ │ ├── index.json.jbuilder │ │ └── show.json.jbuilder │ ├── notes │ │ ├── _note.json.jbuilder │ │ ├── index.json.jbuilder │ │ └── show.json.jbuilder │ ├── taggings │ │ └── index.json.jbuilder │ ├── tags │ │ ├── _tag.json.jbuilder │ │ ├── index.json.jbuilder │ │ └── show.json.jbuilder │ └── users │ │ ├── _user.json.jbuilder │ │ └── show.json.jbuilder │ ├── layouts │ ├── application.html.erb │ ├── mailer.html.erb │ └── mailer.text.erb │ └── static_pages │ └── root.html.erb ├── bin ├── bundle ├── rails ├── rake ├── setup └── update ├── config.ru ├── config ├── application.rb ├── boot.rb ├── cable.yml ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── application_controller_renderer.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── cookies_serializer.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── new_framework_defaults.rb │ ├── session_store.rb │ └── wrap_parameters.rb ├── locales │ └── en.yml ├── puma.rb ├── routes.rb ├── secrets.yml └── spring.rb ├── db ├── migrate │ ├── 20170418155334_create_users.rb │ ├── 20170419214655_create_notes.rb │ ├── 20170423173331_create_notebooks.rb │ ├── 20170425024019_change_notes.rb │ ├── 20170425210509_create_tags.rb │ ├── 20170425210515_create_taggings.rb │ ├── 20170425224524_add_user_to_tags.rb │ └── 20170427170313_add_column_to_notes.rb ├── schema.rb └── seeds.rb ├── docs ├── README.md ├── api-endpoints.md ├── component-hierarchy.md ├── gif │ ├── notebook-demo.gif │ └── search-demo.gif ├── sample_state.js ├── schema.md └── wireframes │ ├── ai │ ├── Create Account Page.ai │ ├── Edit Note Form Component.ai │ ├── First Page - Full Page.ai │ ├── New Note Form Component.ai │ ├── New Notebook Form Component.ai │ ├── New Tag Form Component.ai │ ├── Notebooks Index Section.ai │ ├── Sign In Page.ai │ └── Tag Index Section.ai │ ├── original_screenshots │ ├── First Page - Full.PNG │ ├── New Note Form Component.PNG │ ├── New Notebook Form Component.PNG │ ├── New Tag Form Component.PNG │ ├── Note Edit-Show Form Component.PNG │ ├── Notebook Index Section.PNG │ ├── Search Note Form Component.PNG │ ├── Sign In Page.png │ └── Tags Index Section.PNG │ └── png │ ├── create_account.png │ ├── first_page_full.png │ ├── new_note_form.png │ ├── new_notebook_form.png │ ├── new_tag_form.png │ ├── notebook_index.png │ ├── sign_in.png │ └── tag_index.png ├── frontend ├── actions │ ├── note_actions.js │ ├── notebook_actions.js │ ├── session_actions.js │ └── tag_actions.js ├── components │ ├── app.jsx │ ├── auth │ │ ├── auth_form.jsx │ │ └── auth_form_container.jsx │ ├── dashboard │ │ ├── forever_modal.jsx │ │ ├── nav │ │ │ ├── nav_bar.jsx │ │ │ ├── nav_bar_container.jsx │ │ │ └── nav_button.jsx │ │ ├── notebooks │ │ │ ├── new_notebook.jsx │ │ │ ├── new_notebook_container.jsx │ │ │ ├── notebook_index.jsx │ │ │ ├── notebook_index_container.jsx │ │ │ └── notebook_index_item.jsx │ │ ├── notes │ │ │ ├── note.jsx │ │ │ ├── note_container.jsx │ │ │ ├── note_index.jsx │ │ │ ├── note_index_container.jsx │ │ │ ├── note_index_item.jsx │ │ │ ├── notebook_select_modal.jsx │ │ │ └── rich-text-menu.jsx │ │ └── tags │ │ │ ├── tag_index.jsx │ │ │ ├── tag_index_container.jsx │ │ │ └── tag_index_item.jsx │ └── root.jsx ├── forever_note.jsx ├── reducers │ ├── note_reducer.js │ ├── notebook_reducer.js │ ├── root_reducer.js │ ├── session_reducer.js │ └── tag_reducer.js ├── store │ └── store.js └── util │ ├── date_handler.js │ ├── notebooks_api_util.js │ ├── notes_api_util.js │ ├── selector_util.js │ ├── session_api_util.js │ └── tag_api_util.js ├── lib ├── assets │ └── .keep └── tasks │ └── .keep ├── log └── .keep ├── package.json ├── public ├── 404.html ├── 422.html ├── 500.html ├── apple-touch-icon-precomposed.png ├── apple-touch-icon.png ├── favicon.ico └── robots.txt ├── test ├── controllers │ ├── .keep │ ├── api │ │ ├── notebooks_controller_test.rb │ │ ├── notes_controller_test.rb │ │ ├── taggings_controller_test.rb │ │ ├── tags_controller_test.rb │ │ └── users_controller_test.rb │ └── static_pages_controller_test.rb ├── fixtures │ ├── .keep │ ├── files │ │ └── .keep │ ├── notebooks.yml │ ├── notes.yml │ ├── taggings.yml │ ├── tags.yml │ └── users.yml ├── helpers │ └── .keep ├── integration │ └── .keep ├── mailers │ └── .keep ├── models │ ├── .keep │ ├── note_test.rb │ ├── notebook_test.rb │ ├── tag_test.rb │ ├── tagging_test.rb │ └── user_test.rb └── test_helper.rb ├── tmp └── .keep ├── vendor └── assets │ ├── javascripts │ └── .keep │ └── stylesheets │ └── .keep └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/.gitignore -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | forever-note.co 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/assets/config/manifest.js -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/LOGO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/assets/images/LOGO.png -------------------------------------------------------------------------------- /app/assets/images/LOGO_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/assets/images/LOGO_large.png -------------------------------------------------------------------------------- /app/assets/images/NEW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/assets/images/NEW.png -------------------------------------------------------------------------------- /app/assets/images/NEW_HOV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/assets/images/NEW_HOV.png -------------------------------------------------------------------------------- /app/assets/images/NOTEBOOKS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/assets/images/NOTEBOOKS.png -------------------------------------------------------------------------------- /app/assets/images/NOTEBOOKS_HOV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/assets/images/NOTEBOOKS_HOV.png -------------------------------------------------------------------------------- /app/assets/images/NOTES.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/assets/images/NOTES.png -------------------------------------------------------------------------------- /app/assets/images/NOTES_HOV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/assets/images/NOTES_HOV.png -------------------------------------------------------------------------------- /app/assets/images/SEARCH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/assets/images/SEARCH.png -------------------------------------------------------------------------------- /app/assets/images/SEARCH_HOV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/assets/images/SEARCH_HOV.png -------------------------------------------------------------------------------- /app/assets/images/TAGS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/assets/images/TAGS.png -------------------------------------------------------------------------------- /app/assets/images/TAGS_HOV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/assets/images/TAGS_HOV.png -------------------------------------------------------------------------------- /app/assets/images/forevernote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/assets/images/forevernote.png -------------------------------------------------------------------------------- /app/assets/images/logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/assets/images/logout.png -------------------------------------------------------------------------------- /app/assets/images/logout_hov.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/assets/images/logout_hov.png -------------------------------------------------------------------------------- /app/assets/javascripts/api/notebooks.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/assets/javascripts/api/notebooks.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/api/notes.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/assets/javascripts/api/notes.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/api/taggings.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/assets/javascripts/api/taggings.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/api/tags.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/assets/javascripts/api/tags.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/api/users.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/assets/javascripts/api/users.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/cable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/assets/javascripts/cable.js -------------------------------------------------------------------------------- /app/assets/javascripts/channels/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/javascripts/static_pages.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/assets/javascripts/static_pages.coffee -------------------------------------------------------------------------------- /app/assets/stylesheets/api/notebooks.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/assets/stylesheets/api/notebooks.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/api/notes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/assets/stylesheets/api/notes.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/api/taggings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/assets/stylesheets/api/taggings.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/api/tags.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/assets/stylesheets/api/tags.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/api/users.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/assets/stylesheets/api/users.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/assets/stylesheets/application.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/auth_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/assets/stylesheets/components/auth_form.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/editorStyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/assets/stylesheets/components/editorStyles.css -------------------------------------------------------------------------------- /app/assets/stylesheets/components/forever-modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/assets/stylesheets/components/forever-modal.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/loader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/assets/stylesheets/components/loader.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/nav_bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/assets/stylesheets/components/nav_bar.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/new-notebook.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/assets/stylesheets/components/new-notebook.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/note-index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/assets/stylesheets/components/note-index.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/note.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/assets/stylesheets/components/note.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/notebook-index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/assets/stylesheets/components/notebook-index.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/static_pages.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/assets/stylesheets/static_pages.scss -------------------------------------------------------------------------------- /app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /app/controllers/api/notebooks_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/controllers/api/notebooks_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/notes_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/controllers/api/notes_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/controllers/api/sessions_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/taggings_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/controllers/api/taggings_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/tags_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/controllers/api/tags_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/controllers/api/users_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/static_pages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/controllers/static_pages_controller.rb -------------------------------------------------------------------------------- /app/helpers/api/notebooks_helper.rb: -------------------------------------------------------------------------------- 1 | module Api::NotebooksHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/api/notes_helper.rb: -------------------------------------------------------------------------------- 1 | module Api::NotesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/api/taggings_helper.rb: -------------------------------------------------------------------------------- 1 | module Api::TaggingsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/api/tags_helper.rb: -------------------------------------------------------------------------------- 1 | module Api::TagsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/api/users_helper.rb: -------------------------------------------------------------------------------- 1 | module Api::UsersHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/static_pages_helper.rb: -------------------------------------------------------------------------------- 1 | module StaticPagesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/jobs/application_job.rb: -------------------------------------------------------------------------------- 1 | class ApplicationJob < ActiveJob::Base 2 | end 3 | -------------------------------------------------------------------------------- /app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/note.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/models/note.rb -------------------------------------------------------------------------------- /app/models/notebook.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/models/notebook.rb -------------------------------------------------------------------------------- /app/models/tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/models/tag.rb -------------------------------------------------------------------------------- /app/models/tagging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/models/tagging.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/views/api/notebooks/_note.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/views/api/notebooks/_note.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/notebooks/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/views/api/notebooks/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/notebooks/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/views/api/notebooks/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/notes/_note.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/views/api/notes/_note.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/notes/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/views/api/notes/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/notes/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/views/api/notes/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/taggings/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/views/api/taggings/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/tags/_tag.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/views/api/tags/_tag.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/tags/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/views/api/tags/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/tags/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/views/api/tags/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/users/_user.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/views/api/users/_user.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/users/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/views/api/users/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /app/views/static_pages/root.html.erb: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/bin/update -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/config/cable.yml -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/new_framework_defaults.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/config/initializers/new_framework_defaults.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/config/secrets.yml -------------------------------------------------------------------------------- /config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/config/spring.rb -------------------------------------------------------------------------------- /db/migrate/20170418155334_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/db/migrate/20170418155334_create_users.rb -------------------------------------------------------------------------------- /db/migrate/20170419214655_create_notes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/db/migrate/20170419214655_create_notes.rb -------------------------------------------------------------------------------- /db/migrate/20170423173331_create_notebooks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/db/migrate/20170423173331_create_notebooks.rb -------------------------------------------------------------------------------- /db/migrate/20170425024019_change_notes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/db/migrate/20170425024019_change_notes.rb -------------------------------------------------------------------------------- /db/migrate/20170425210509_create_tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/db/migrate/20170425210509_create_tags.rb -------------------------------------------------------------------------------- /db/migrate/20170425210515_create_taggings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/db/migrate/20170425210515_create_taggings.rb -------------------------------------------------------------------------------- /db/migrate/20170425224524_add_user_to_tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/db/migrate/20170425224524_add_user_to_tags.rb -------------------------------------------------------------------------------- /db/migrate/20170427170313_add_column_to_notes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/db/migrate/20170427170313_add_column_to_notes.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/api-endpoints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/docs/api-endpoints.md -------------------------------------------------------------------------------- /docs/component-hierarchy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/docs/component-hierarchy.md -------------------------------------------------------------------------------- /docs/gif/notebook-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/docs/gif/notebook-demo.gif -------------------------------------------------------------------------------- /docs/gif/search-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/docs/gif/search-demo.gif -------------------------------------------------------------------------------- /docs/sample_state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/docs/sample_state.js -------------------------------------------------------------------------------- /docs/schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/docs/schema.md -------------------------------------------------------------------------------- /docs/wireframes/ai/Create Account Page.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/docs/wireframes/ai/Create Account Page.ai -------------------------------------------------------------------------------- /docs/wireframes/ai/Edit Note Form Component.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/docs/wireframes/ai/Edit Note Form Component.ai -------------------------------------------------------------------------------- /docs/wireframes/ai/First Page - Full Page.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/docs/wireframes/ai/First Page - Full Page.ai -------------------------------------------------------------------------------- /docs/wireframes/ai/New Note Form Component.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/docs/wireframes/ai/New Note Form Component.ai -------------------------------------------------------------------------------- /docs/wireframes/ai/New Notebook Form Component.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/docs/wireframes/ai/New Notebook Form Component.ai -------------------------------------------------------------------------------- /docs/wireframes/ai/New Tag Form Component.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/docs/wireframes/ai/New Tag Form Component.ai -------------------------------------------------------------------------------- /docs/wireframes/ai/Notebooks Index Section.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/docs/wireframes/ai/Notebooks Index Section.ai -------------------------------------------------------------------------------- /docs/wireframes/ai/Sign In Page.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/docs/wireframes/ai/Sign In Page.ai -------------------------------------------------------------------------------- /docs/wireframes/ai/Tag Index Section.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/docs/wireframes/ai/Tag Index Section.ai -------------------------------------------------------------------------------- /docs/wireframes/original_screenshots/First Page - Full.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/docs/wireframes/original_screenshots/First Page - Full.PNG -------------------------------------------------------------------------------- /docs/wireframes/original_screenshots/New Note Form Component.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/docs/wireframes/original_screenshots/New Note Form Component.PNG -------------------------------------------------------------------------------- /docs/wireframes/original_screenshots/New Notebook Form Component.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/docs/wireframes/original_screenshots/New Notebook Form Component.PNG -------------------------------------------------------------------------------- /docs/wireframes/original_screenshots/New Tag Form Component.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/docs/wireframes/original_screenshots/New Tag Form Component.PNG -------------------------------------------------------------------------------- /docs/wireframes/original_screenshots/Note Edit-Show Form Component.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/docs/wireframes/original_screenshots/Note Edit-Show Form Component.PNG -------------------------------------------------------------------------------- /docs/wireframes/original_screenshots/Notebook Index Section.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/docs/wireframes/original_screenshots/Notebook Index Section.PNG -------------------------------------------------------------------------------- /docs/wireframes/original_screenshots/Search Note Form Component.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/docs/wireframes/original_screenshots/Search Note Form Component.PNG -------------------------------------------------------------------------------- /docs/wireframes/original_screenshots/Sign In Page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/docs/wireframes/original_screenshots/Sign In Page.png -------------------------------------------------------------------------------- /docs/wireframes/original_screenshots/Tags Index Section.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/docs/wireframes/original_screenshots/Tags Index Section.PNG -------------------------------------------------------------------------------- /docs/wireframes/png/create_account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/docs/wireframes/png/create_account.png -------------------------------------------------------------------------------- /docs/wireframes/png/first_page_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/docs/wireframes/png/first_page_full.png -------------------------------------------------------------------------------- /docs/wireframes/png/new_note_form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/docs/wireframes/png/new_note_form.png -------------------------------------------------------------------------------- /docs/wireframes/png/new_notebook_form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/docs/wireframes/png/new_notebook_form.png -------------------------------------------------------------------------------- /docs/wireframes/png/new_tag_form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/docs/wireframes/png/new_tag_form.png -------------------------------------------------------------------------------- /docs/wireframes/png/notebook_index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/docs/wireframes/png/notebook_index.png -------------------------------------------------------------------------------- /docs/wireframes/png/sign_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/docs/wireframes/png/sign_in.png -------------------------------------------------------------------------------- /docs/wireframes/png/tag_index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/docs/wireframes/png/tag_index.png -------------------------------------------------------------------------------- /frontend/actions/note_actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/frontend/actions/note_actions.js -------------------------------------------------------------------------------- /frontend/actions/notebook_actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/frontend/actions/notebook_actions.js -------------------------------------------------------------------------------- /frontend/actions/session_actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/frontend/actions/session_actions.js -------------------------------------------------------------------------------- /frontend/actions/tag_actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/frontend/actions/tag_actions.js -------------------------------------------------------------------------------- /frontend/components/app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/frontend/components/app.jsx -------------------------------------------------------------------------------- /frontend/components/auth/auth_form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/frontend/components/auth/auth_form.jsx -------------------------------------------------------------------------------- /frontend/components/auth/auth_form_container.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/frontend/components/auth/auth_form_container.jsx -------------------------------------------------------------------------------- /frontend/components/dashboard/forever_modal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/frontend/components/dashboard/forever_modal.jsx -------------------------------------------------------------------------------- /frontend/components/dashboard/nav/nav_bar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/frontend/components/dashboard/nav/nav_bar.jsx -------------------------------------------------------------------------------- /frontend/components/dashboard/nav/nav_bar_container.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/frontend/components/dashboard/nav/nav_bar_container.jsx -------------------------------------------------------------------------------- /frontend/components/dashboard/nav/nav_button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/frontend/components/dashboard/nav/nav_button.jsx -------------------------------------------------------------------------------- /frontend/components/dashboard/notebooks/new_notebook.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/frontend/components/dashboard/notebooks/new_notebook.jsx -------------------------------------------------------------------------------- /frontend/components/dashboard/notebooks/new_notebook_container.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/frontend/components/dashboard/notebooks/new_notebook_container.jsx -------------------------------------------------------------------------------- /frontend/components/dashboard/notebooks/notebook_index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/frontend/components/dashboard/notebooks/notebook_index.jsx -------------------------------------------------------------------------------- /frontend/components/dashboard/notebooks/notebook_index_container.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/frontend/components/dashboard/notebooks/notebook_index_container.jsx -------------------------------------------------------------------------------- /frontend/components/dashboard/notebooks/notebook_index_item.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/frontend/components/dashboard/notebooks/notebook_index_item.jsx -------------------------------------------------------------------------------- /frontend/components/dashboard/notes/note.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/frontend/components/dashboard/notes/note.jsx -------------------------------------------------------------------------------- /frontend/components/dashboard/notes/note_container.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/frontend/components/dashboard/notes/note_container.jsx -------------------------------------------------------------------------------- /frontend/components/dashboard/notes/note_index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/frontend/components/dashboard/notes/note_index.jsx -------------------------------------------------------------------------------- /frontend/components/dashboard/notes/note_index_container.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/frontend/components/dashboard/notes/note_index_container.jsx -------------------------------------------------------------------------------- /frontend/components/dashboard/notes/note_index_item.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/frontend/components/dashboard/notes/note_index_item.jsx -------------------------------------------------------------------------------- /frontend/components/dashboard/notes/notebook_select_modal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/frontend/components/dashboard/notes/notebook_select_modal.jsx -------------------------------------------------------------------------------- /frontend/components/dashboard/notes/rich-text-menu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/frontend/components/dashboard/notes/rich-text-menu.jsx -------------------------------------------------------------------------------- /frontend/components/dashboard/tags/tag_index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/frontend/components/dashboard/tags/tag_index.jsx -------------------------------------------------------------------------------- /frontend/components/dashboard/tags/tag_index_container.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/frontend/components/dashboard/tags/tag_index_container.jsx -------------------------------------------------------------------------------- /frontend/components/dashboard/tags/tag_index_item.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/frontend/components/dashboard/tags/tag_index_item.jsx -------------------------------------------------------------------------------- /frontend/components/root.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/frontend/components/root.jsx -------------------------------------------------------------------------------- /frontend/forever_note.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/frontend/forever_note.jsx -------------------------------------------------------------------------------- /frontend/reducers/note_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/frontend/reducers/note_reducer.js -------------------------------------------------------------------------------- /frontend/reducers/notebook_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/frontend/reducers/notebook_reducer.js -------------------------------------------------------------------------------- /frontend/reducers/root_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/frontend/reducers/root_reducer.js -------------------------------------------------------------------------------- /frontend/reducers/session_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/frontend/reducers/session_reducer.js -------------------------------------------------------------------------------- /frontend/reducers/tag_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/frontend/reducers/tag_reducer.js -------------------------------------------------------------------------------- /frontend/store/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/frontend/store/store.js -------------------------------------------------------------------------------- /frontend/util/date_handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/frontend/util/date_handler.js -------------------------------------------------------------------------------- /frontend/util/notebooks_api_util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/frontend/util/notebooks_api_util.js -------------------------------------------------------------------------------- /frontend/util/notes_api_util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/frontend/util/notes_api_util.js -------------------------------------------------------------------------------- /frontend/util/selector_util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/frontend/util/selector_util.js -------------------------------------------------------------------------------- /frontend/util/session_api_util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/frontend/util/session_api_util.js -------------------------------------------------------------------------------- /frontend/util/tag_api_util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/frontend/util/tag_api_util.js -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/package.json -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/public/500.html -------------------------------------------------------------------------------- /public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/public/robots.txt -------------------------------------------------------------------------------- /test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/controllers/api/notebooks_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/test/controllers/api/notebooks_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/api/notes_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/test/controllers/api/notes_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/api/taggings_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/test/controllers/api/taggings_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/api/tags_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/test/controllers/api/tags_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/api/users_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/test/controllers/api/users_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/static_pages_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/test/controllers/static_pages_controller_test.rb -------------------------------------------------------------------------------- /test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/notebooks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/test/fixtures/notebooks.yml -------------------------------------------------------------------------------- /test/fixtures/notes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/test/fixtures/notes.yml -------------------------------------------------------------------------------- /test/fixtures/taggings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/test/fixtures/taggings.yml -------------------------------------------------------------------------------- /test/fixtures/tags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/test/fixtures/tags.yml -------------------------------------------------------------------------------- /test/fixtures/users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/test/fixtures/users.yml -------------------------------------------------------------------------------- /test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/note_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/test/models/note_test.rb -------------------------------------------------------------------------------- /test/models/notebook_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/test/models/notebook_test.rb -------------------------------------------------------------------------------- /test/models/tag_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/test/models/tag_test.rb -------------------------------------------------------------------------------- /test/models/tagging_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/test/models/tagging_test.rb -------------------------------------------------------------------------------- /test/models/user_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/test/models/user_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /tmp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madnivek/ForeverNote/HEAD/webpack.config.js --------------------------------------------------------------------------------