├── .gitignore ├── .rspec ├── Gemfile ├── Gemfile.lock ├── README.md ├── Rakefile ├── app ├── assets │ ├── images │ │ ├── .keep │ │ └── compass_black.png │ ├── javascripts │ │ ├── application.js │ │ ├── bootstrap.js.coffee │ │ ├── records.js.coffee │ │ └── static.js.coffee │ └── stylesheets │ │ ├── application.css │ │ ├── bootstrap_and_overrides.css.less │ │ ├── common.sass │ │ ├── companies.sass │ │ ├── contacts.sass │ │ ├── devise.sass │ │ ├── finance_records.sass │ │ ├── scaffolds.css.scss │ │ ├── static.css.scss │ │ └── users.sass ├── controllers │ ├── application_controller.rb │ ├── books_controller.rb │ ├── collabs_controller.rb │ ├── companies_controller.rb │ ├── concerns │ │ ├── .keep │ │ ├── set_book_and_record.rb │ │ └── user_permission_check.rb │ ├── contacts_controller.rb │ ├── docs_controller.rb │ ├── finance_records_controller.rb │ ├── notes_controller.rb │ └── static_controller.rb ├── helpers │ ├── application_helper.rb │ ├── notes_helper.rb │ ├── records_helper.rb │ └── static_helper.rb ├── mailers │ └── .keep ├── models │ ├── .keep │ ├── book.rb │ ├── collab.rb │ ├── company.rb │ ├── concerns │ │ ├── .keep │ │ ├── finance_record_components.rb │ │ └── searchable.rb │ ├── contact.rb │ ├── doc.rb │ ├── finance_record.rb │ ├── frr.rb │ ├── note.rb │ ├── permit.rb │ └── user.rb └── views │ ├── books │ ├── _book.html.haml │ ├── _form.html.haml │ ├── _top_bar.html.haml │ ├── edit.html.haml │ ├── index.html.haml │ ├── index.json.jbuilder │ ├── new.html.haml │ ├── show.html.haml │ └── show.json.jbuilder │ ├── collabs │ ├── _form.html.haml │ ├── edit.html.haml │ ├── index.html.haml │ ├── index.json.jbuilder │ ├── new.html.haml │ ├── show.html.haml │ └── show.json.jbuilder │ ├── common │ ├── _alerts.haml │ ├── _footer.html.haml │ ├── _head.html.haml │ ├── _jump_around.haml │ └── _search_form.haml │ ├── companies │ ├── _company.html.haml │ ├── _form.html.haml │ ├── _top_bar.html.haml │ ├── edit.html.haml │ ├── friends.haml │ ├── index.html.haml │ ├── index.json.jbuilder │ ├── new.html.haml │ └── show.json.jbuilder │ ├── contacts │ ├── _contact.haml │ ├── _form.html.haml │ ├── _record_filter_search.haml │ ├── _search.haml │ ├── _top_bar.html.haml │ ├── edit.html.haml │ ├── index.html.haml │ ├── index.json.jbuilder │ ├── new.html.haml │ ├── record_filter_search.haml │ ├── search.haml │ ├── show.html.haml │ └── show.json.jbuilder │ ├── devise │ ├── confirmations │ │ └── new.html.erb │ ├── mailer │ │ ├── confirmation_instructions.html.erb │ │ ├── reset_password_instructions.html.erb │ │ └── unlock_instructions.html.erb │ ├── passwords │ │ ├── edit.html.erb │ │ └── new.html.erb │ ├── registrations │ │ ├── _signup_form.haml │ │ ├── edit.html.erb │ │ └── new.html.haml │ ├── sessions │ │ └── new.html.haml │ ├── shared │ │ └── _links.erb │ └── unlocks │ │ └── new.html.erb │ ├── docs │ ├── _doc.haml │ ├── _form.html.haml │ ├── edit.html.haml │ ├── index.html.haml │ ├── index.json.jbuilder │ ├── new.html.haml │ ├── show.html.haml │ └── show.json.jbuilder │ ├── finance_records │ ├── _advanced_search.haml │ ├── _contact.haml │ ├── _finance_record.haml │ ├── _form.html.haml │ ├── _record_contact.haml │ ├── _table_header.haml │ ├── _top_bar.html.haml │ ├── _version_view.haml │ ├── _versions.haml │ ├── edit.html.haml │ ├── index.html.haml │ ├── index.json.jbuilder │ ├── index.xls.erb │ ├── new.html.haml │ ├── show.html.haml │ └── show.json.jbuilder │ ├── layouts │ ├── application.html.haml │ └── devise.html.haml │ ├── notes │ ├── _form.html.haml │ ├── _note.haml │ ├── create.coffee │ ├── edit.html.haml │ ├── index.html.haml │ ├── index.json.jbuilder │ ├── new.html.haml │ ├── show.html.haml │ └── show.json.jbuilder │ ├── static │ └── not_permitted.html.haml │ └── users │ ├── confirmations │ └── new.html.erb │ ├── mailer │ ├── confirmation_instructions.html.erb │ ├── reset_password_instructions.html.erb │ └── unlock_instructions.html.erb │ ├── passwords │ ├── edit.html.erb │ └── new.html.erb │ ├── registrations │ ├── edit.html.erb │ └── new.html.erb │ ├── sessions │ └── new.html.haml │ ├── shared │ └── _links.erb │ └── unlocks │ └── new.html.erb ├── bin ├── bundle ├── rails ├── rake └── spring ├── config.ru ├── config ├── application.rb ├── boot.rb ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── backtrace_silencers.rb │ ├── cookies_serializer.rb │ ├── csv_excel.rb │ ├── devise.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── rails_admin.rb │ ├── require_lib.rb │ ├── session_store.rb │ └── wrap_parameters.rb ├── locales │ ├── devise.en.yml │ ├── en.bootstrap.yml │ └── en.yml ├── routes.rb └── secrets.yml ├── db ├── migrate │ ├── 20140419175830_create_companies.rb │ ├── 20140419180553_create_books.rb │ ├── 20140516054228_create_records.rb │ ├── 20140516064726_devise_create_users.rb │ ├── 20140516065634_create_contacts.rb │ ├── 20140520072110_change_address_type_in_contacts.rb │ ├── 20140602061841_add_time_to_records.rb │ ├── 20140606053122_add_currency_to_books.rb │ ├── 20140608153003_add_user_id_to_companies.rb │ ├── 20140624073051_create_companies_users_table.rb │ ├── 20140729175653_create_collabs.rb │ ├── 20140927052642_add_sno_to_record.rb │ ├── 20140927084246_create_docs.rb │ ├── 20140927090104_add_file_columns_to_docs.rb │ ├── 20141003151728_rename_records_to_finance_records.rb │ ├── 20141003154141_rename_record_id_to_finance_record_id_in_docs.rb │ ├── 20141003170051_create_notes.rb │ ├── 20141004045721_rename_record_id_to_finance_record_id_in_notes.rb │ ├── 20141014113031_add_contact_id_to_finance_records.rb │ ├── 20141119161617_add_sno_to_contacts.rb │ ├── 20141125060959_create_permits.rb │ ├── 20141126133617_index_email_in_permissions.rb │ ├── 20141214064620_create_versions.rb │ └── 20141214090654_add_whodunnit_id_to_finance_records.rb ├── schema.rb └── seeds.rb ├── lib ├── assets │ └── .keep ├── lib.rb └── tasks │ └── .keep ├── log └── .keep ├── public ├── 404.html ├── 422.html ├── 500.html ├── favicon.ico └── robots.txt ├── spec ├── controllers │ ├── books_controller_spec.rb │ ├── collabs_controller_spec.rb │ ├── companies_controller_spec.rb │ ├── contacts_controller_spec.rb │ ├── docs_controller_spec.rb │ ├── notes_controller_spec.rb │ ├── records_controller_spec.rb │ └── static_controller_spec.rb ├── helpers │ ├── books_helper_spec.rb │ ├── collabs_helper_spec.rb │ ├── companies_helper_spec.rb │ ├── contacts_helper_spec.rb │ ├── docs_helper_spec.rb │ ├── notes_helper_spec.rb │ ├── records_helper_spec.rb │ └── static_helper_spec.rb ├── models │ ├── book_spec.rb │ ├── collab_spec.rb │ ├── company_spec.rb │ ├── contact_spec.rb │ ├── doc_spec.rb │ ├── note_spec.rb │ ├── permit_spec.rb │ ├── record_spec.rb │ ├── record_spec.rb~ │ └── user_spec.rb ├── requests │ ├── books_spec.rb │ ├── collabs_spec.rb │ ├── companies_spec.rb │ ├── contacts_spec.rb │ ├── docs_spec.rb │ ├── notes_spec.rb │ └── records_spec.rb ├── routing │ ├── books_routing_spec.rb │ ├── collabs_routing_spec.rb │ ├── companies_routing_spec.rb │ ├── contacts_routing_spec.rb │ ├── docs_routing_spec.rb │ ├── notes_routing_spec.rb │ └── records_routing_spec.rb ├── spec_helper.rb └── views │ ├── books │ ├── edit.html.haml_spec.rb │ ├── index.html.haml_spec.rb │ ├── new.html.haml_spec.rb │ └── show.html.haml_spec.rb │ ├── collabs │ ├── edit.html.haml_spec.rb │ ├── index.html.haml_spec.rb │ ├── new.html.haml_spec.rb │ └── show.html.haml_spec.rb │ ├── companies │ ├── edit.html.haml_spec.rb │ ├── index.html.haml_spec.rb │ ├── new.html.haml_spec.rb │ └── show.html.haml_spec.rb │ ├── contacts │ ├── edit.html.haml_spec.rb │ ├── index.html.haml_spec.rb │ ├── new.html.haml_spec.rb │ └── show.html.haml_spec.rb │ ├── docs │ ├── edit.html.haml_spec.rb │ ├── index.html.haml_spec.rb │ ├── new.html.haml_spec.rb │ └── show.html.haml_spec.rb │ ├── notes │ ├── edit.html.haml_spec.rb │ ├── index.html.haml_spec.rb │ ├── new.html.haml_spec.rb │ └── show.html.haml_spec.rb │ ├── records │ ├── edit.html.haml_spec.rb │ ├── index.html.haml_spec.rb │ ├── new.html.haml_spec.rb │ └── show.html.haml_spec.rb │ └── static │ └── not_permitted.html.haml_spec.rb ├── test ├── controllers │ └── .keep ├── fixtures │ └── .keep ├── helpers │ └── .keep ├── integration │ └── .keep ├── mailers │ └── .keep ├── models │ └── .keep └── test_helper.rb ├── thin.yml └── vendor └── assets ├── javascripts └── .keep └── stylesheets └── .keep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/compass_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/assets/images/compass_black.png -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/bootstrap.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/assets/javascripts/bootstrap.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/records.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/assets/javascripts/records.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/static.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/assets/javascripts/static.js.coffee -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /app/assets/stylesheets/bootstrap_and_overrides.css.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/assets/stylesheets/bootstrap_and_overrides.css.less -------------------------------------------------------------------------------- /app/assets/stylesheets/common.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/assets/stylesheets/common.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/companies.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/assets/stylesheets/companies.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/contacts.sass: -------------------------------------------------------------------------------- 1 | .contact-tile 2 | height: 145px 3 | -------------------------------------------------------------------------------- /app/assets/stylesheets/devise.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/assets/stylesheets/devise.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/finance_records.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/assets/stylesheets/finance_records.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/scaffolds.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/assets/stylesheets/scaffolds.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/static.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/assets/stylesheets/static.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/users.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/assets/stylesheets/users.sass -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/books_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/controllers/books_controller.rb -------------------------------------------------------------------------------- /app/controllers/collabs_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/controllers/collabs_controller.rb -------------------------------------------------------------------------------- /app/controllers/companies_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/controllers/companies_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/concerns/set_book_and_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/controllers/concerns/set_book_and_record.rb -------------------------------------------------------------------------------- /app/controllers/concerns/user_permission_check.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/controllers/concerns/user_permission_check.rb -------------------------------------------------------------------------------- /app/controllers/contacts_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/controllers/contacts_controller.rb -------------------------------------------------------------------------------- /app/controllers/docs_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/controllers/docs_controller.rb -------------------------------------------------------------------------------- /app/controllers/finance_records_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/controllers/finance_records_controller.rb -------------------------------------------------------------------------------- /app/controllers/notes_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/controllers/notes_controller.rb -------------------------------------------------------------------------------- /app/controllers/static_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/controllers/static_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/notes_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/helpers/notes_helper.rb -------------------------------------------------------------------------------- /app/helpers/records_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/helpers/records_helper.rb -------------------------------------------------------------------------------- /app/helpers/static_helper.rb: -------------------------------------------------------------------------------- 1 | module StaticHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/book.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/models/book.rb -------------------------------------------------------------------------------- /app/models/collab.rb: -------------------------------------------------------------------------------- 1 | class Collab < ActiveRecord::Base 2 | belongs_to :company 3 | end 4 | -------------------------------------------------------------------------------- /app/models/company.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/models/company.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/concerns/finance_record_components.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/models/concerns/finance_record_components.rb -------------------------------------------------------------------------------- /app/models/concerns/searchable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/models/concerns/searchable.rb -------------------------------------------------------------------------------- /app/models/contact.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/models/contact.rb -------------------------------------------------------------------------------- /app/models/doc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/models/doc.rb -------------------------------------------------------------------------------- /app/models/finance_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/models/finance_record.rb -------------------------------------------------------------------------------- /app/models/frr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/models/frr.rb -------------------------------------------------------------------------------- /app/models/note.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/models/note.rb -------------------------------------------------------------------------------- /app/models/permit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/models/permit.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/views/books/_book.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/books/_book.html.haml -------------------------------------------------------------------------------- /app/views/books/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/books/_form.html.haml -------------------------------------------------------------------------------- /app/views/books/_top_bar.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/books/_top_bar.html.haml -------------------------------------------------------------------------------- /app/views/books/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/books/edit.html.haml -------------------------------------------------------------------------------- /app/views/books/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/books/index.html.haml -------------------------------------------------------------------------------- /app/views/books/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/books/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/books/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/books/new.html.haml -------------------------------------------------------------------------------- /app/views/books/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/books/show.html.haml -------------------------------------------------------------------------------- /app/views/books/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/books/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/collabs/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/collabs/_form.html.haml -------------------------------------------------------------------------------- /app/views/collabs/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/collabs/edit.html.haml -------------------------------------------------------------------------------- /app/views/collabs/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/collabs/index.html.haml -------------------------------------------------------------------------------- /app/views/collabs/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/collabs/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/collabs/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/collabs/new.html.haml -------------------------------------------------------------------------------- /app/views/collabs/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/collabs/show.html.haml -------------------------------------------------------------------------------- /app/views/collabs/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/collabs/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/common/_alerts.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/common/_alerts.haml -------------------------------------------------------------------------------- /app/views/common/_footer.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/common/_footer.html.haml -------------------------------------------------------------------------------- /app/views/common/_head.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/common/_head.html.haml -------------------------------------------------------------------------------- /app/views/common/_jump_around.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/common/_jump_around.haml -------------------------------------------------------------------------------- /app/views/common/_search_form.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/common/_search_form.haml -------------------------------------------------------------------------------- /app/views/companies/_company.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/companies/_company.html.haml -------------------------------------------------------------------------------- /app/views/companies/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/companies/_form.html.haml -------------------------------------------------------------------------------- /app/views/companies/_top_bar.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/companies/_top_bar.html.haml -------------------------------------------------------------------------------- /app/views/companies/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/companies/edit.html.haml -------------------------------------------------------------------------------- /app/views/companies/friends.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/companies/friends.haml -------------------------------------------------------------------------------- /app/views/companies/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/companies/index.html.haml -------------------------------------------------------------------------------- /app/views/companies/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/companies/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/companies/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/companies/new.html.haml -------------------------------------------------------------------------------- /app/views/companies/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/companies/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/contacts/_contact.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/contacts/_contact.haml -------------------------------------------------------------------------------- /app/views/contacts/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/contacts/_form.html.haml -------------------------------------------------------------------------------- /app/views/contacts/_record_filter_search.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/contacts/_record_filter_search.haml -------------------------------------------------------------------------------- /app/views/contacts/_search.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/contacts/_search.haml -------------------------------------------------------------------------------- /app/views/contacts/_top_bar.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/contacts/_top_bar.html.haml -------------------------------------------------------------------------------- /app/views/contacts/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/contacts/edit.html.haml -------------------------------------------------------------------------------- /app/views/contacts/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/contacts/index.html.haml -------------------------------------------------------------------------------- /app/views/contacts/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/contacts/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/contacts/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/contacts/new.html.haml -------------------------------------------------------------------------------- /app/views/contacts/record_filter_search.haml: -------------------------------------------------------------------------------- 1 | = render partial: 'record_filter_search', collection: @contacts 2 | -------------------------------------------------------------------------------- /app/views/contacts/search.haml: -------------------------------------------------------------------------------- 1 | = render partial: "search", collection: @contacts 2 | -------------------------------------------------------------------------------- /app/views/contacts/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/contacts/show.html.haml -------------------------------------------------------------------------------- /app/views/contacts/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/contacts/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/devise/confirmations/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/devise/confirmations/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/confirmation_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/devise/mailer/confirmation_instructions.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/reset_password_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/devise/mailer/reset_password_instructions.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/unlock_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/devise/mailer/unlock_instructions.html.erb -------------------------------------------------------------------------------- /app/views/devise/passwords/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/devise/passwords/edit.html.erb -------------------------------------------------------------------------------- /app/views/devise/passwords/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/devise/passwords/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/registrations/_signup_form.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/devise/registrations/_signup_form.haml -------------------------------------------------------------------------------- /app/views/devise/registrations/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/devise/registrations/edit.html.erb -------------------------------------------------------------------------------- /app/views/devise/registrations/new.html.haml: -------------------------------------------------------------------------------- 1 | .col-md-6= render partial: "devise/registrations/signup_form" 2 | -------------------------------------------------------------------------------- /app/views/devise/sessions/new.html.haml: -------------------------------------------------------------------------------- 1 | .col-md-6= render partial: "devise/registrations/signup_form" 2 | -------------------------------------------------------------------------------- /app/views/devise/shared/_links.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/devise/shared/_links.erb -------------------------------------------------------------------------------- /app/views/devise/unlocks/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/devise/unlocks/new.html.erb -------------------------------------------------------------------------------- /app/views/docs/_doc.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/docs/_doc.haml -------------------------------------------------------------------------------- /app/views/docs/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/docs/_form.html.haml -------------------------------------------------------------------------------- /app/views/docs/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/docs/edit.html.haml -------------------------------------------------------------------------------- /app/views/docs/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/docs/index.html.haml -------------------------------------------------------------------------------- /app/views/docs/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/docs/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/docs/new.html.haml: -------------------------------------------------------------------------------- 1 | %h1 New doc 2 | 3 | = render 'form' 4 | -------------------------------------------------------------------------------- /app/views/docs/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/docs/show.html.haml -------------------------------------------------------------------------------- /app/views/docs/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/docs/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/finance_records/_advanced_search.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/finance_records/_advanced_search.haml -------------------------------------------------------------------------------- /app/views/finance_records/_contact.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/finance_records/_contact.haml -------------------------------------------------------------------------------- /app/views/finance_records/_finance_record.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/finance_records/_finance_record.haml -------------------------------------------------------------------------------- /app/views/finance_records/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/finance_records/_form.html.haml -------------------------------------------------------------------------------- /app/views/finance_records/_record_contact.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/finance_records/_record_contact.haml -------------------------------------------------------------------------------- /app/views/finance_records/_table_header.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/finance_records/_table_header.haml -------------------------------------------------------------------------------- /app/views/finance_records/_top_bar.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/finance_records/_top_bar.html.haml -------------------------------------------------------------------------------- /app/views/finance_records/_version_view.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/finance_records/_version_view.haml -------------------------------------------------------------------------------- /app/views/finance_records/_versions.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/finance_records/_versions.haml -------------------------------------------------------------------------------- /app/views/finance_records/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/finance_records/edit.html.haml -------------------------------------------------------------------------------- /app/views/finance_records/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/finance_records/index.html.haml -------------------------------------------------------------------------------- /app/views/finance_records/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/finance_records/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/finance_records/index.xls.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/finance_records/index.xls.erb -------------------------------------------------------------------------------- /app/views/finance_records/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/finance_records/new.html.haml -------------------------------------------------------------------------------- /app/views/finance_records/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/finance_records/show.html.haml -------------------------------------------------------------------------------- /app/views/finance_records/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/finance_records/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/layouts/application.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/layouts/application.html.haml -------------------------------------------------------------------------------- /app/views/layouts/devise.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/layouts/devise.html.haml -------------------------------------------------------------------------------- /app/views/notes/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/notes/_form.html.haml -------------------------------------------------------------------------------- /app/views/notes/_note.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/notes/_note.haml -------------------------------------------------------------------------------- /app/views/notes/create.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/notes/create.coffee -------------------------------------------------------------------------------- /app/views/notes/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/notes/edit.html.haml -------------------------------------------------------------------------------- /app/views/notes/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/notes/index.html.haml -------------------------------------------------------------------------------- /app/views/notes/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/notes/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/notes/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/notes/new.html.haml -------------------------------------------------------------------------------- /app/views/notes/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/notes/show.html.haml -------------------------------------------------------------------------------- /app/views/notes/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/notes/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/static/not_permitted.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/static/not_permitted.html.haml -------------------------------------------------------------------------------- /app/views/users/confirmations/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/users/confirmations/new.html.erb -------------------------------------------------------------------------------- /app/views/users/mailer/confirmation_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/users/mailer/confirmation_instructions.html.erb -------------------------------------------------------------------------------- /app/views/users/mailer/reset_password_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/users/mailer/reset_password_instructions.html.erb -------------------------------------------------------------------------------- /app/views/users/mailer/unlock_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/users/mailer/unlock_instructions.html.erb -------------------------------------------------------------------------------- /app/views/users/passwords/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/users/passwords/edit.html.erb -------------------------------------------------------------------------------- /app/views/users/passwords/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/users/passwords/new.html.erb -------------------------------------------------------------------------------- /app/views/users/registrations/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/users/registrations/edit.html.erb -------------------------------------------------------------------------------- /app/views/users/registrations/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/users/registrations/new.html.erb -------------------------------------------------------------------------------- /app/views/users/sessions/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/users/sessions/new.html.haml -------------------------------------------------------------------------------- /app/views/users/shared/_links.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/users/shared/_links.erb -------------------------------------------------------------------------------- /app/views/users/unlocks/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/app/views/users/unlocks/new.html.erb -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/bin/spring -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/csv_excel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/config/initializers/csv_excel.rb -------------------------------------------------------------------------------- /config/initializers/devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/config/initializers/devise.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/rails_admin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/config/initializers/rails_admin.rb -------------------------------------------------------------------------------- /config/initializers/require_lib.rb: -------------------------------------------------------------------------------- 1 | require 'lib' 2 | -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/devise.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/config/locales/devise.en.yml -------------------------------------------------------------------------------- /config/locales/en.bootstrap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/config/locales/en.bootstrap.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/config/secrets.yml -------------------------------------------------------------------------------- /db/migrate/20140419175830_create_companies.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/db/migrate/20140419175830_create_companies.rb -------------------------------------------------------------------------------- /db/migrate/20140419180553_create_books.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/db/migrate/20140419180553_create_books.rb -------------------------------------------------------------------------------- /db/migrate/20140516054228_create_records.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/db/migrate/20140516054228_create_records.rb -------------------------------------------------------------------------------- /db/migrate/20140516064726_devise_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/db/migrate/20140516064726_devise_create_users.rb -------------------------------------------------------------------------------- /db/migrate/20140516065634_create_contacts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/db/migrate/20140516065634_create_contacts.rb -------------------------------------------------------------------------------- /db/migrate/20140520072110_change_address_type_in_contacts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/db/migrate/20140520072110_change_address_type_in_contacts.rb -------------------------------------------------------------------------------- /db/migrate/20140602061841_add_time_to_records.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/db/migrate/20140602061841_add_time_to_records.rb -------------------------------------------------------------------------------- /db/migrate/20140606053122_add_currency_to_books.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/db/migrate/20140606053122_add_currency_to_books.rb -------------------------------------------------------------------------------- /db/migrate/20140608153003_add_user_id_to_companies.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/db/migrate/20140608153003_add_user_id_to_companies.rb -------------------------------------------------------------------------------- /db/migrate/20140624073051_create_companies_users_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/db/migrate/20140624073051_create_companies_users_table.rb -------------------------------------------------------------------------------- /db/migrate/20140729175653_create_collabs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/db/migrate/20140729175653_create_collabs.rb -------------------------------------------------------------------------------- /db/migrate/20140927052642_add_sno_to_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/db/migrate/20140927052642_add_sno_to_record.rb -------------------------------------------------------------------------------- /db/migrate/20140927084246_create_docs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/db/migrate/20140927084246_create_docs.rb -------------------------------------------------------------------------------- /db/migrate/20140927090104_add_file_columns_to_docs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/db/migrate/20140927090104_add_file_columns_to_docs.rb -------------------------------------------------------------------------------- /db/migrate/20141003151728_rename_records_to_finance_records.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/db/migrate/20141003151728_rename_records_to_finance_records.rb -------------------------------------------------------------------------------- /db/migrate/20141003154141_rename_record_id_to_finance_record_id_in_docs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/db/migrate/20141003154141_rename_record_id_to_finance_record_id_in_docs.rb -------------------------------------------------------------------------------- /db/migrate/20141003170051_create_notes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/db/migrate/20141003170051_create_notes.rb -------------------------------------------------------------------------------- /db/migrate/20141004045721_rename_record_id_to_finance_record_id_in_notes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/db/migrate/20141004045721_rename_record_id_to_finance_record_id_in_notes.rb -------------------------------------------------------------------------------- /db/migrate/20141014113031_add_contact_id_to_finance_records.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/db/migrate/20141014113031_add_contact_id_to_finance_records.rb -------------------------------------------------------------------------------- /db/migrate/20141119161617_add_sno_to_contacts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/db/migrate/20141119161617_add_sno_to_contacts.rb -------------------------------------------------------------------------------- /db/migrate/20141125060959_create_permits.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/db/migrate/20141125060959_create_permits.rb -------------------------------------------------------------------------------- /db/migrate/20141126133617_index_email_in_permissions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/db/migrate/20141126133617_index_email_in_permissions.rb -------------------------------------------------------------------------------- /db/migrate/20141214064620_create_versions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/db/migrate/20141214064620_create_versions.rb -------------------------------------------------------------------------------- /db/migrate/20141214090654_add_whodunnit_id_to_finance_records.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/db/migrate/20141214090654_add_whodunnit_id_to_finance_records.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/lib.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/lib/lib.rb -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/public/500.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/public/robots.txt -------------------------------------------------------------------------------- /spec/controllers/books_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/controllers/books_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/collabs_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/controllers/collabs_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/companies_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/controllers/companies_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/contacts_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/controllers/contacts_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/docs_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/controllers/docs_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/notes_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/controllers/notes_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/records_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/controllers/records_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/static_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/controllers/static_controller_spec.rb -------------------------------------------------------------------------------- /spec/helpers/books_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/helpers/books_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/collabs_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/helpers/collabs_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/companies_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/helpers/companies_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/contacts_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/helpers/contacts_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/docs_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/helpers/docs_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/notes_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/helpers/notes_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/records_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/helpers/records_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/static_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/helpers/static_helper_spec.rb -------------------------------------------------------------------------------- /spec/models/book_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/models/book_spec.rb -------------------------------------------------------------------------------- /spec/models/collab_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/models/collab_spec.rb -------------------------------------------------------------------------------- /spec/models/company_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/models/company_spec.rb -------------------------------------------------------------------------------- /spec/models/contact_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/models/contact_spec.rb -------------------------------------------------------------------------------- /spec/models/doc_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/models/doc_spec.rb -------------------------------------------------------------------------------- /spec/models/note_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/models/note_spec.rb -------------------------------------------------------------------------------- /spec/models/permit_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/models/permit_spec.rb -------------------------------------------------------------------------------- /spec/models/record_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/models/record_spec.rb -------------------------------------------------------------------------------- /spec/models/record_spec.rb~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/models/record_spec.rb~ -------------------------------------------------------------------------------- /spec/models/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/models/user_spec.rb -------------------------------------------------------------------------------- /spec/requests/books_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/requests/books_spec.rb -------------------------------------------------------------------------------- /spec/requests/collabs_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/requests/collabs_spec.rb -------------------------------------------------------------------------------- /spec/requests/companies_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/requests/companies_spec.rb -------------------------------------------------------------------------------- /spec/requests/contacts_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/requests/contacts_spec.rb -------------------------------------------------------------------------------- /spec/requests/docs_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/requests/docs_spec.rb -------------------------------------------------------------------------------- /spec/requests/notes_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/requests/notes_spec.rb -------------------------------------------------------------------------------- /spec/requests/records_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/requests/records_spec.rb -------------------------------------------------------------------------------- /spec/routing/books_routing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/routing/books_routing_spec.rb -------------------------------------------------------------------------------- /spec/routing/collabs_routing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/routing/collabs_routing_spec.rb -------------------------------------------------------------------------------- /spec/routing/companies_routing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/routing/companies_routing_spec.rb -------------------------------------------------------------------------------- /spec/routing/contacts_routing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/routing/contacts_routing_spec.rb -------------------------------------------------------------------------------- /spec/routing/docs_routing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/routing/docs_routing_spec.rb -------------------------------------------------------------------------------- /spec/routing/notes_routing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/routing/notes_routing_spec.rb -------------------------------------------------------------------------------- /spec/routing/records_routing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/routing/records_routing_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/views/books/edit.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/views/books/edit.html.haml_spec.rb -------------------------------------------------------------------------------- /spec/views/books/index.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/views/books/index.html.haml_spec.rb -------------------------------------------------------------------------------- /spec/views/books/new.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/views/books/new.html.haml_spec.rb -------------------------------------------------------------------------------- /spec/views/books/show.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/views/books/show.html.haml_spec.rb -------------------------------------------------------------------------------- /spec/views/collabs/edit.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/views/collabs/edit.html.haml_spec.rb -------------------------------------------------------------------------------- /spec/views/collabs/index.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/views/collabs/index.html.haml_spec.rb -------------------------------------------------------------------------------- /spec/views/collabs/new.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/views/collabs/new.html.haml_spec.rb -------------------------------------------------------------------------------- /spec/views/collabs/show.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/views/collabs/show.html.haml_spec.rb -------------------------------------------------------------------------------- /spec/views/companies/edit.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/views/companies/edit.html.haml_spec.rb -------------------------------------------------------------------------------- /spec/views/companies/index.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/views/companies/index.html.haml_spec.rb -------------------------------------------------------------------------------- /spec/views/companies/new.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/views/companies/new.html.haml_spec.rb -------------------------------------------------------------------------------- /spec/views/companies/show.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/views/companies/show.html.haml_spec.rb -------------------------------------------------------------------------------- /spec/views/contacts/edit.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/views/contacts/edit.html.haml_spec.rb -------------------------------------------------------------------------------- /spec/views/contacts/index.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/views/contacts/index.html.haml_spec.rb -------------------------------------------------------------------------------- /spec/views/contacts/new.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/views/contacts/new.html.haml_spec.rb -------------------------------------------------------------------------------- /spec/views/contacts/show.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/views/contacts/show.html.haml_spec.rb -------------------------------------------------------------------------------- /spec/views/docs/edit.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/views/docs/edit.html.haml_spec.rb -------------------------------------------------------------------------------- /spec/views/docs/index.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/views/docs/index.html.haml_spec.rb -------------------------------------------------------------------------------- /spec/views/docs/new.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/views/docs/new.html.haml_spec.rb -------------------------------------------------------------------------------- /spec/views/docs/show.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/views/docs/show.html.haml_spec.rb -------------------------------------------------------------------------------- /spec/views/notes/edit.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/views/notes/edit.html.haml_spec.rb -------------------------------------------------------------------------------- /spec/views/notes/index.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/views/notes/index.html.haml_spec.rb -------------------------------------------------------------------------------- /spec/views/notes/new.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/views/notes/new.html.haml_spec.rb -------------------------------------------------------------------------------- /spec/views/notes/show.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/views/notes/show.html.haml_spec.rb -------------------------------------------------------------------------------- /spec/views/records/edit.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/views/records/edit.html.haml_spec.rb -------------------------------------------------------------------------------- /spec/views/records/index.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/views/records/index.html.haml_spec.rb -------------------------------------------------------------------------------- /spec/views/records/new.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/views/records/new.html.haml_spec.rb -------------------------------------------------------------------------------- /spec/views/records/show.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/views/records/show.html.haml_spec.rb -------------------------------------------------------------------------------- /spec/views/static/not_permitted.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/spec/views/static/not_permitted.html.haml_spec.rb -------------------------------------------------------------------------------- /test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /thin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindaslab/erp/HEAD/thin.yml -------------------------------------------------------------------------------- /vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------