Skip to content

Instantly share code, notes, and snippets.

@lastk
Created October 14, 2015 00:40
Show Gist options
  • Save lastk/83e798b265d2500757b9 to your computer and use it in GitHub Desktop.
Save lastk/83e798b265d2500757b9 to your computer and use it in GitHub Desktop.
app/concepts/
|-- address
| `-- create_form.rb
|-- admin_user
| |-- create.rb
| `-- update.rb
|-- auto_investments
| `-- investment
| |-- create.rb
| |-- update.rb
| `-- update_form.rb
|-- borrower_lead
| |-- create.rb
| |-- create_form.rb
| |-- delete.rb
| `-- update.rb
|-- cooling_off
| |-- cell
| | `-- account_action.rb
| |-- cell.rb
| |-- investor.rb
| |-- twins
| `-- views
| `-- show.haml
|-- incentive
| `-- banner
| |-- cart
| | `-- views
| |-- cell
| | `-- cart.rb
| |-- cell.rb
| `-- views
| |-- cart.haml
| |-- congratulation.haml
| |-- show.haml
| `-- suggestion.haml
|-- incentive_token
| |-- activate.rb
| |-- apply.rb
| |-- create.rb
| |-- invitee
| | `-- create.rb
| |-- inviter
| | `-- create.rb
| |-- pledge
| | `-- activate.rb
| `-- revert.rb
|-- investment_progress
| |-- cell.rb
| `-- views
| `-- show.haml
|-- invite
| |-- cell.rb
| `-- views
| |-- list.haml
| `-- show.haml
|-- ira
| `-- update.rb
|-- loan
| |-- cancel.rb
| |-- cell
| | `-- property_size.rb
| |-- cell.rb
| `-- positions.rb
|-- manage
| |-- incentive_token_logs
| | |-- cell.rb
| | `-- views
| | |-- activated_for_pledge.haml
| | |-- applied_to_loan.haml
| | |-- earned_as_invitee.haml
| | |-- earned_as_inviter.haml
| | |-- reverted_from_loan.haml
| | `-- show.haml
| |-- loan
| | |-- cell
| | | `-- funding_status.rb
| | `-- cell.rb
| |-- metrics
| | |-- operations.rb
| | `-- sales.rb
| |-- metrics.rb
| `-- user
| |-- auto_investment
| | `-- status.rb
| `-- invitations
| |-- cell.rb
| `-- views
| `-- show.haml
|-- property
| |-- cell
| | `-- kind_specific_attribute.rb
| `-- cell.rb
|-- referral
| |-- invite
| | |-- create.rb
| | |-- create_form.rb
| | `-- resend.rb
| `-- invitee
| |-- accept.rb
| `-- update.rb
|-- sales_rep
| |-- create.rb
| `-- update.rb
|-- shopping
| |-- cart
| | |-- cell
| | | |-- account_panel.rb
| | | `-- cart_action.rb
| | |-- cell.rb
| | |-- show
| | | `-- investor.rb
| | |-- show.rb
| | `-- views
| | |-- account_panel.haml
| | |-- fund_account.haml
| | |-- profile.haml
| | `-- submit.haml
| |-- cart_item
| | |-- cell.rb
| | |-- create.rb
| | |-- create_form
| | | `-- admin.rb
| | |-- create_form.rb
| | |-- destroy.rb
| | `-- views
| | `-- show.haml
| |-- order
| | |-- create
| | | |-- admin.rb
| | | |-- automated.rb
| | | `-- investor.rb
| | |-- create.rb
| | |-- create_form
| | | |-- admin.rb
| | | `-- investor.rb
| | |-- create_form.rb
| | |-- index.rb
| | |-- show
| | | `-- investor.rb
| | `-- show.rb
| `-- order_item
| |-- cell.rb
| `-- views
| `-- show.haml
|-- statements
| `-- position
| `-- create.rb
`-- user
|-- delete.rb
|-- end_cool_off.rb
`-- skip_cool_off.rb
59 directories, 92 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment