├── .gitignore ├── .rspec ├── .travis.yml ├── Capfile ├── Gemfile ├── Gemfile.lock ├── README.md ├── Rakefile ├── _rvmrc ├── app ├── assets │ ├── images │ │ ├── startup_153x100.png │ │ ├── startup_460x300.png │ │ └── startup_50x50.png │ ├── javascripts │ │ ├── _global_variables.js.coffee.erb │ │ ├── application.js │ │ ├── concerns │ │ │ ├── editable.js.coffee │ │ │ ├── form.js.coffee │ │ │ └── gallery.js.coffee │ │ ├── libs │ │ │ ├── jquery │ │ │ │ ├── jquery.autoSuggest.js │ │ │ │ ├── jquery.elastic.js │ │ │ │ ├── jquery.fancybox.pack.js │ │ │ │ ├── jquery.form.js │ │ │ │ ├── jquery.livequery.js │ │ │ │ └── jquery.slideshow.lite.js │ │ │ └── nested_form.js │ │ └── private_message.js.coffee │ └── stylesheets │ │ ├── application.css.scss │ │ ├── inc │ │ ├── 960_12_10_10.css │ │ ├── html5-boilerplate.css │ │ ├── jquery.autoSuggest.css │ │ ├── jquery.slideshow.lite.css │ │ └── reset.css │ │ └── style.css.scss ├── controllers │ ├── application_controller.rb │ ├── entrepreneurs_controller.rb │ ├── investors_controller.rb │ ├── messages_controller.rb │ ├── proposals_controller.rb │ ├── startup_photos_controller.rb │ ├── startups_controller.rb │ └── users_controller.rb ├── helpers │ ├── application_helper.rb │ └── users_helper.rb ├── mailers │ └── .gitkeep ├── models │ ├── .gitkeep │ ├── concerns │ │ ├── commentable.rb │ │ ├── followable.rb │ │ └── paramable.rb │ ├── investor_profile.rb │ ├── message.rb │ ├── proposal.rb │ ├── startup.rb │ ├── startup_photo.rb │ ├── startup_user.rb │ ├── target_follower.rb │ └── user.rb ├── uploaders │ ├── logo_uploader.rb │ └── startup_photo_uploader.rb └── views │ ├── devise │ ├── confirmations │ │ └── new.html.slim │ ├── mailer │ │ ├── confirmation_instructions.html.slim │ │ ├── reset_password_instructions.html.slim │ │ └── unlock_instructions.html.slim │ ├── passwords │ │ ├── edit.html.slim │ │ └── new.html.slim │ ├── registrations │ │ ├── edit.html.slim │ │ └── new.html.slim │ ├── sessions │ │ └── new.html.slim │ ├── shared │ │ └── _links.slim │ └── unlocks │ │ └── new.html.slim │ ├── layouts │ ├── application.html.slim │ ├── sidebars │ │ ├── _public.html.slim │ │ └── _user.html.slim │ └── userbars │ │ └── _topnav.html.slim │ ├── messages │ ├── _index.html.slim │ ├── _new.html.slim │ ├── _show.html.slim │ ├── _show_with_startup.html.slim │ └── show_private_message.html.slim │ ├── proposals │ ├── _form.html.slim │ ├── _read_only.html.slim │ ├── edit.html.slim │ └── new.html.slim │ ├── shared │ ├── _editable.html.slim │ └── _popularity_metrics.html.slim │ ├── startups │ ├── _add_user_link.html.slim │ ├── _avatar.html.slim │ ├── _comments.html.slim │ ├── _form.html.slim │ ├── _mini_profile.html.slim │ ├── _photos.html.slim │ ├── _profile_details.html.slim │ ├── _profile_team.html.slim │ ├── attach_user.html.slim │ ├── detach_user.html.slim │ ├── edit.html.slim │ ├── index.html.slim │ ├── new.html.slim │ ├── show.html.slim │ ├── update_user.html.slim │ └── upload_photos.html.slim │ ├── users │ ├── _avatar.html.slim │ ├── _index.html.slim │ ├── _invested_in.html.slim │ ├── _investor.html.slim │ ├── _message_inboxes.html.slim │ ├── _mini_profile.html.slim │ ├── _proposal_inboxes.html.slim │ ├── _startups.html.slim │ ├── home.html.slim │ ├── message_inboxes.html.slim │ ├── proposal_inboxes.html.slim │ └── show.html.slim │ └── ventures │ └── _mini_index.html.slim ├── config.ru ├── config ├── application.rb ├── boot.rb ├── cucumber.yml ├── database.example.yml ├── deploy.rb ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── backtrace_silencers.rb │ ├── carrierwave.rb │ ├── client_side_validations.rb │ ├── devise.rb │ ├── geo_location.rb │ ├── inflections.rb │ ├── kaminari_config.rb │ ├── mime_types.rb │ ├── rails_config.rb │ ├── secret_token.rb │ ├── session_store.rb │ ├── simple_form.rb │ ├── squeel.rb │ └── wrap_parameters.rb ├── locales │ ├── devise.en.yml │ ├── en.yml │ └── simple_form.en.yml ├── routes.rb └── settings.yml ├── db ├── migrate │ ├── 20110523095103_devise_create_users.rb │ ├── 20110523095729_create_target_followers.rb │ ├── 20110523114239_create_startups.rb │ ├── 20110523114309_create_investor_profiles.rb │ ├── 20110524055439_create_startup_users.rb │ ├── 20110525132902_create_messages.rb │ ├── 20110606072040_create_proposals.rb │ └── 20110717223142_create_startup_photos.rb ├── schema.rb ├── seeds.rb └── seeds_for_dev.rb ├── features ├── step_definitions │ ├── email_steps.rb │ ├── pickle_steps.rb │ └── web_steps.rb └── support │ ├── email.rb │ ├── env.rb │ ├── machinist.rb │ ├── paths.rb │ ├── pickle.rb │ └── selectors.rb ├── lib ├── exceptions │ └── not_allowed.rb ├── monkey_patches │ ├── array.rb │ └── warden.rb └── tasks │ ├── .gitkeep │ ├── application.rake │ └── cucumber.rake ├── log └── .gitkeep ├── public ├── humans.txt ├── images │ └── message_icons │ │ ├── error.gif │ │ ├── info.gif │ │ ├── success.gif │ │ └── warning.gif ├── javascripts │ └── dd_belatedpng.js ├── robots.txt └── stylesheets │ └── fancybox │ ├── blank.gif │ ├── fancy_close.png │ ├── fancy_loading.png │ ├── fancy_nav_left.png │ ├── fancy_nav_right.png │ ├── fancy_shadow_e.png │ ├── fancy_shadow_n.png │ ├── fancy_shadow_ne.png │ ├── fancy_shadow_nw.png │ ├── fancy_shadow_s.png │ ├── fancy_shadow_se.png │ ├── fancy_shadow_sw.png │ ├── fancy_shadow_w.png │ ├── fancy_title_left.png │ ├── fancy_title_main.png │ ├── fancy_title_over.png │ ├── fancy_title_right.png │ ├── fancybox-x.png │ ├── fancybox-y.png │ ├── fancybox.png │ └── jquery.fancybox.css ├── script ├── cucumber ├── html2haml └── rails └── spec ├── controllers ├── entrepreneurs_controller_spec.rb ├── investors_controller_spec.rb ├── messages_controller_spec.rb ├── proposals_controller_spec.rb ├── startup_photos_controller_spec.rb ├── startups_controller_spec.rb └── users_controller_spec.rb ├── fixtures ├── file.gif ├── file.jpg └── file.pdf ├── helpers ├── application_helper_spec.rb └── users_helper_spec.rb ├── models ├── investor_profile_spec.rb ├── message_spec.rb ├── proposal_spec.rb ├── startup_photo_spec.rb ├── startup_spec.rb ├── startup_user_spec.rb ├── target_follower_spec.rb └── user_spec.rb ├── requests ├── session_spec.rb └── user_session_spec.rb ├── spec_helper.rb └── support ├── application.rb ├── blueprints.rb ├── devise.rb ├── shared_context └── inherited_resources.rb └── shared_examples ├── commentable.rb ├── ensure_ownership.rb ├── followable.rb └── peramable.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --colour 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/.travis.yml -------------------------------------------------------------------------------- /Capfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/Capfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/Rakefile -------------------------------------------------------------------------------- /_rvmrc: -------------------------------------------------------------------------------- 1 | rvm ruby-1.9.3@angel_nest --create 2 | -------------------------------------------------------------------------------- /app/assets/images/startup_153x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/assets/images/startup_153x100.png -------------------------------------------------------------------------------- /app/assets/images/startup_460x300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/assets/images/startup_460x300.png -------------------------------------------------------------------------------- /app/assets/images/startup_50x50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/assets/images/startup_50x50.png -------------------------------------------------------------------------------- /app/assets/javascripts/_global_variables.js.coffee.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/assets/javascripts/_global_variables.js.coffee.erb -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/concerns/editable.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/assets/javascripts/concerns/editable.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/concerns/form.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/assets/javascripts/concerns/form.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/concerns/gallery.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/assets/javascripts/concerns/gallery.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/libs/jquery/jquery.autoSuggest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/assets/javascripts/libs/jquery/jquery.autoSuggest.js -------------------------------------------------------------------------------- /app/assets/javascripts/libs/jquery/jquery.elastic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/assets/javascripts/libs/jquery/jquery.elastic.js -------------------------------------------------------------------------------- /app/assets/javascripts/libs/jquery/jquery.fancybox.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/assets/javascripts/libs/jquery/jquery.fancybox.pack.js -------------------------------------------------------------------------------- /app/assets/javascripts/libs/jquery/jquery.form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/assets/javascripts/libs/jquery/jquery.form.js -------------------------------------------------------------------------------- /app/assets/javascripts/libs/jquery/jquery.livequery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/assets/javascripts/libs/jquery/jquery.livequery.js -------------------------------------------------------------------------------- /app/assets/javascripts/libs/jquery/jquery.slideshow.lite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/assets/javascripts/libs/jquery/jquery.slideshow.lite.js -------------------------------------------------------------------------------- /app/assets/javascripts/libs/nested_form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/assets/javascripts/libs/nested_form.js -------------------------------------------------------------------------------- /app/assets/javascripts/private_message.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/assets/javascripts/private_message.js.coffee -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/assets/stylesheets/application.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/inc/960_12_10_10.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/assets/stylesheets/inc/960_12_10_10.css -------------------------------------------------------------------------------- /app/assets/stylesheets/inc/html5-boilerplate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/assets/stylesheets/inc/html5-boilerplate.css -------------------------------------------------------------------------------- /app/assets/stylesheets/inc/jquery.autoSuggest.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/assets/stylesheets/inc/jquery.autoSuggest.css -------------------------------------------------------------------------------- /app/assets/stylesheets/inc/jquery.slideshow.lite.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/assets/stylesheets/inc/jquery.slideshow.lite.css -------------------------------------------------------------------------------- /app/assets/stylesheets/inc/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/assets/stylesheets/inc/reset.css -------------------------------------------------------------------------------- /app/assets/stylesheets/style.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/assets/stylesheets/style.css.scss -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/entrepreneurs_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/controllers/entrepreneurs_controller.rb -------------------------------------------------------------------------------- /app/controllers/investors_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/controllers/investors_controller.rb -------------------------------------------------------------------------------- /app/controllers/messages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/controllers/messages_controller.rb -------------------------------------------------------------------------------- /app/controllers/proposals_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/controllers/proposals_controller.rb -------------------------------------------------------------------------------- /app/controllers/startup_photos_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/controllers/startup_photos_controller.rb -------------------------------------------------------------------------------- /app/controllers/startups_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/controllers/startups_controller.rb -------------------------------------------------------------------------------- /app/controllers/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/controllers/users_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/users_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/helpers/users_helper.rb -------------------------------------------------------------------------------- /app/mailers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/concerns/commentable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/models/concerns/commentable.rb -------------------------------------------------------------------------------- /app/models/concerns/followable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/models/concerns/followable.rb -------------------------------------------------------------------------------- /app/models/concerns/paramable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/models/concerns/paramable.rb -------------------------------------------------------------------------------- /app/models/investor_profile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/models/investor_profile.rb -------------------------------------------------------------------------------- /app/models/message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/models/message.rb -------------------------------------------------------------------------------- /app/models/proposal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/models/proposal.rb -------------------------------------------------------------------------------- /app/models/startup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/models/startup.rb -------------------------------------------------------------------------------- /app/models/startup_photo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/models/startup_photo.rb -------------------------------------------------------------------------------- /app/models/startup_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/models/startup_user.rb -------------------------------------------------------------------------------- /app/models/target_follower.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/models/target_follower.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/uploaders/logo_uploader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/uploaders/logo_uploader.rb -------------------------------------------------------------------------------- /app/uploaders/startup_photo_uploader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/uploaders/startup_photo_uploader.rb -------------------------------------------------------------------------------- /app/views/devise/confirmations/new.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/views/devise/confirmations/new.html.slim -------------------------------------------------------------------------------- /app/views/devise/mailer/confirmation_instructions.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/views/devise/mailer/confirmation_instructions.html.slim -------------------------------------------------------------------------------- /app/views/devise/mailer/reset_password_instructions.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/views/devise/mailer/reset_password_instructions.html.slim -------------------------------------------------------------------------------- /app/views/devise/mailer/unlock_instructions.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/views/devise/mailer/unlock_instructions.html.slim -------------------------------------------------------------------------------- /app/views/devise/passwords/edit.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/views/devise/passwords/edit.html.slim -------------------------------------------------------------------------------- /app/views/devise/passwords/new.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/views/devise/passwords/new.html.slim -------------------------------------------------------------------------------- /app/views/devise/registrations/edit.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/views/devise/registrations/edit.html.slim -------------------------------------------------------------------------------- /app/views/devise/registrations/new.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/views/devise/registrations/new.html.slim -------------------------------------------------------------------------------- /app/views/devise/sessions/new.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/views/devise/sessions/new.html.slim -------------------------------------------------------------------------------- /app/views/devise/shared/_links.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/views/devise/shared/_links.slim -------------------------------------------------------------------------------- /app/views/devise/unlocks/new.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/views/devise/unlocks/new.html.slim -------------------------------------------------------------------------------- /app/views/layouts/application.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/views/layouts/application.html.slim -------------------------------------------------------------------------------- /app/views/layouts/sidebars/_public.html.slim: -------------------------------------------------------------------------------- 1 | h2= t('site.welcome') -------------------------------------------------------------------------------- /app/views/layouts/sidebars/_user.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/views/layouts/sidebars/_user.html.slim -------------------------------------------------------------------------------- /app/views/layouts/userbars/_topnav.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/views/layouts/userbars/_topnav.html.slim -------------------------------------------------------------------------------- /app/views/messages/_index.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/views/messages/_index.html.slim -------------------------------------------------------------------------------- /app/views/messages/_new.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/views/messages/_new.html.slim -------------------------------------------------------------------------------- /app/views/messages/_show.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/views/messages/_show.html.slim -------------------------------------------------------------------------------- /app/views/messages/_show_with_startup.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/views/messages/_show_with_startup.html.slim -------------------------------------------------------------------------------- /app/views/messages/show_private_message.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/views/messages/show_private_message.html.slim -------------------------------------------------------------------------------- /app/views/proposals/_form.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/views/proposals/_form.html.slim -------------------------------------------------------------------------------- /app/views/proposals/_read_only.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/views/proposals/_read_only.html.slim -------------------------------------------------------------------------------- /app/views/proposals/edit.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/views/proposals/edit.html.slim -------------------------------------------------------------------------------- /app/views/proposals/new.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/views/proposals/new.html.slim -------------------------------------------------------------------------------- /app/views/shared/_editable.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/views/shared/_editable.html.slim -------------------------------------------------------------------------------- /app/views/shared/_popularity_metrics.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/views/shared/_popularity_metrics.html.slim -------------------------------------------------------------------------------- /app/views/startups/_add_user_link.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/views/startups/_add_user_link.html.slim -------------------------------------------------------------------------------- /app/views/startups/_avatar.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/views/startups/_avatar.html.slim -------------------------------------------------------------------------------- /app/views/startups/_comments.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/views/startups/_comments.html.slim -------------------------------------------------------------------------------- /app/views/startups/_form.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/views/startups/_form.html.slim -------------------------------------------------------------------------------- /app/views/startups/_mini_profile.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/views/startups/_mini_profile.html.slim -------------------------------------------------------------------------------- /app/views/startups/_photos.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/views/startups/_photos.html.slim -------------------------------------------------------------------------------- /app/views/startups/_profile_details.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/views/startups/_profile_details.html.slim -------------------------------------------------------------------------------- /app/views/startups/_profile_team.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/views/startups/_profile_team.html.slim -------------------------------------------------------------------------------- /app/views/startups/attach_user.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/views/startups/attach_user.html.slim -------------------------------------------------------------------------------- /app/views/startups/detach_user.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/views/startups/detach_user.html.slim -------------------------------------------------------------------------------- /app/views/startups/edit.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/views/startups/edit.html.slim -------------------------------------------------------------------------------- /app/views/startups/index.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/views/startups/index.html.slim -------------------------------------------------------------------------------- /app/views/startups/new.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/views/startups/new.html.slim -------------------------------------------------------------------------------- /app/views/startups/show.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/views/startups/show.html.slim -------------------------------------------------------------------------------- /app/views/startups/update_user.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/views/startups/update_user.html.slim -------------------------------------------------------------------------------- /app/views/startups/upload_photos.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/views/startups/upload_photos.html.slim -------------------------------------------------------------------------------- /app/views/users/_avatar.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/views/users/_avatar.html.slim -------------------------------------------------------------------------------- /app/views/users/_index.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/views/users/_index.html.slim -------------------------------------------------------------------------------- /app/views/users/_invested_in.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/views/users/_invested_in.html.slim -------------------------------------------------------------------------------- /app/views/users/_investor.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/views/users/_investor.html.slim -------------------------------------------------------------------------------- /app/views/users/_message_inboxes.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/views/users/_message_inboxes.html.slim -------------------------------------------------------------------------------- /app/views/users/_mini_profile.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/views/users/_mini_profile.html.slim -------------------------------------------------------------------------------- /app/views/users/_proposal_inboxes.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/views/users/_proposal_inboxes.html.slim -------------------------------------------------------------------------------- /app/views/users/_startups.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/views/users/_startups.html.slim -------------------------------------------------------------------------------- /app/views/users/home.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/views/users/home.html.slim -------------------------------------------------------------------------------- /app/views/users/message_inboxes.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/views/users/message_inboxes.html.slim -------------------------------------------------------------------------------- /app/views/users/proposal_inboxes.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/views/users/proposal_inboxes.html.slim -------------------------------------------------------------------------------- /app/views/users/show.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/views/users/show.html.slim -------------------------------------------------------------------------------- /app/views/ventures/_mini_index.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/app/views/ventures/_mini_index.html.slim -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/cucumber.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/config/cucumber.yml -------------------------------------------------------------------------------- /config/database.example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/config/database.example.yml -------------------------------------------------------------------------------- /config/deploy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/config/deploy.rb -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/carrierwave.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/config/initializers/carrierwave.rb -------------------------------------------------------------------------------- /config/initializers/client_side_validations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/config/initializers/client_side_validations.rb -------------------------------------------------------------------------------- /config/initializers/devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/config/initializers/devise.rb -------------------------------------------------------------------------------- /config/initializers/geo_location.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/config/initializers/geo_location.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/kaminari_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/config/initializers/kaminari_config.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/rails_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/config/initializers/rails_config.rb -------------------------------------------------------------------------------- /config/initializers/secret_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/config/initializers/secret_token.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/simple_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/config/initializers/simple_form.rb -------------------------------------------------------------------------------- /config/initializers/squeel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/config/initializers/squeel.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/devise.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/config/locales/devise.en.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/simple_form.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/config/locales/simple_form.en.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/config/settings.yml -------------------------------------------------------------------------------- /db/migrate/20110523095103_devise_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/db/migrate/20110523095103_devise_create_users.rb -------------------------------------------------------------------------------- /db/migrate/20110523095729_create_target_followers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/db/migrate/20110523095729_create_target_followers.rb -------------------------------------------------------------------------------- /db/migrate/20110523114239_create_startups.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/db/migrate/20110523114239_create_startups.rb -------------------------------------------------------------------------------- /db/migrate/20110523114309_create_investor_profiles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/db/migrate/20110523114309_create_investor_profiles.rb -------------------------------------------------------------------------------- /db/migrate/20110524055439_create_startup_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/db/migrate/20110524055439_create_startup_users.rb -------------------------------------------------------------------------------- /db/migrate/20110525132902_create_messages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/db/migrate/20110525132902_create_messages.rb -------------------------------------------------------------------------------- /db/migrate/20110606072040_create_proposals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/db/migrate/20110606072040_create_proposals.rb -------------------------------------------------------------------------------- /db/migrate/20110717223142_create_startup_photos.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/db/migrate/20110717223142_create_startup_photos.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /db/seeds_for_dev.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/db/seeds_for_dev.rb -------------------------------------------------------------------------------- /features/step_definitions/email_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/features/step_definitions/email_steps.rb -------------------------------------------------------------------------------- /features/step_definitions/pickle_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/features/step_definitions/pickle_steps.rb -------------------------------------------------------------------------------- /features/step_definitions/web_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/features/step_definitions/web_steps.rb -------------------------------------------------------------------------------- /features/support/email.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/features/support/email.rb -------------------------------------------------------------------------------- /features/support/env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/features/support/env.rb -------------------------------------------------------------------------------- /features/support/machinist.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/features/support/machinist.rb -------------------------------------------------------------------------------- /features/support/paths.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/features/support/paths.rb -------------------------------------------------------------------------------- /features/support/pickle.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/features/support/pickle.rb -------------------------------------------------------------------------------- /features/support/selectors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/features/support/selectors.rb -------------------------------------------------------------------------------- /lib/exceptions/not_allowed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/lib/exceptions/not_allowed.rb -------------------------------------------------------------------------------- /lib/monkey_patches/array.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/lib/monkey_patches/array.rb -------------------------------------------------------------------------------- /lib/monkey_patches/warden.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/lib/monkey_patches/warden.rb -------------------------------------------------------------------------------- /lib/tasks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/application.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/lib/tasks/application.rake -------------------------------------------------------------------------------- /lib/tasks/cucumber.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/lib/tasks/cucumber.rake -------------------------------------------------------------------------------- /log/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/humans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/public/humans.txt -------------------------------------------------------------------------------- /public/images/message_icons/error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/public/images/message_icons/error.gif -------------------------------------------------------------------------------- /public/images/message_icons/info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/public/images/message_icons/info.gif -------------------------------------------------------------------------------- /public/images/message_icons/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/public/images/message_icons/success.gif -------------------------------------------------------------------------------- /public/images/message_icons/warning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/public/images/message_icons/warning.gif -------------------------------------------------------------------------------- /public/javascripts/dd_belatedpng.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/public/javascripts/dd_belatedpng.js -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/stylesheets/fancybox/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/public/stylesheets/fancybox/blank.gif -------------------------------------------------------------------------------- /public/stylesheets/fancybox/fancy_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/public/stylesheets/fancybox/fancy_close.png -------------------------------------------------------------------------------- /public/stylesheets/fancybox/fancy_loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/public/stylesheets/fancybox/fancy_loading.png -------------------------------------------------------------------------------- /public/stylesheets/fancybox/fancy_nav_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/public/stylesheets/fancybox/fancy_nav_left.png -------------------------------------------------------------------------------- /public/stylesheets/fancybox/fancy_nav_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/public/stylesheets/fancybox/fancy_nav_right.png -------------------------------------------------------------------------------- /public/stylesheets/fancybox/fancy_shadow_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/public/stylesheets/fancybox/fancy_shadow_e.png -------------------------------------------------------------------------------- /public/stylesheets/fancybox/fancy_shadow_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/public/stylesheets/fancybox/fancy_shadow_n.png -------------------------------------------------------------------------------- /public/stylesheets/fancybox/fancy_shadow_ne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/public/stylesheets/fancybox/fancy_shadow_ne.png -------------------------------------------------------------------------------- /public/stylesheets/fancybox/fancy_shadow_nw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/public/stylesheets/fancybox/fancy_shadow_nw.png -------------------------------------------------------------------------------- /public/stylesheets/fancybox/fancy_shadow_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/public/stylesheets/fancybox/fancy_shadow_s.png -------------------------------------------------------------------------------- /public/stylesheets/fancybox/fancy_shadow_se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/public/stylesheets/fancybox/fancy_shadow_se.png -------------------------------------------------------------------------------- /public/stylesheets/fancybox/fancy_shadow_sw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/public/stylesheets/fancybox/fancy_shadow_sw.png -------------------------------------------------------------------------------- /public/stylesheets/fancybox/fancy_shadow_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/public/stylesheets/fancybox/fancy_shadow_w.png -------------------------------------------------------------------------------- /public/stylesheets/fancybox/fancy_title_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/public/stylesheets/fancybox/fancy_title_left.png -------------------------------------------------------------------------------- /public/stylesheets/fancybox/fancy_title_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/public/stylesheets/fancybox/fancy_title_main.png -------------------------------------------------------------------------------- /public/stylesheets/fancybox/fancy_title_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/public/stylesheets/fancybox/fancy_title_over.png -------------------------------------------------------------------------------- /public/stylesheets/fancybox/fancy_title_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/public/stylesheets/fancybox/fancy_title_right.png -------------------------------------------------------------------------------- /public/stylesheets/fancybox/fancybox-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/public/stylesheets/fancybox/fancybox-x.png -------------------------------------------------------------------------------- /public/stylesheets/fancybox/fancybox-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/public/stylesheets/fancybox/fancybox-y.png -------------------------------------------------------------------------------- /public/stylesheets/fancybox/fancybox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/public/stylesheets/fancybox/fancybox.png -------------------------------------------------------------------------------- /public/stylesheets/fancybox/jquery.fancybox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/public/stylesheets/fancybox/jquery.fancybox.css -------------------------------------------------------------------------------- /script/cucumber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/script/cucumber -------------------------------------------------------------------------------- /script/html2haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/script/html2haml -------------------------------------------------------------------------------- /script/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/script/rails -------------------------------------------------------------------------------- /spec/controllers/entrepreneurs_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/spec/controllers/entrepreneurs_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/investors_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/spec/controllers/investors_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/messages_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/spec/controllers/messages_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/proposals_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/spec/controllers/proposals_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/startup_photos_controller_spec.rb: -------------------------------------------------------------------------------- 1 | require 'spec_helper' 2 | 3 | describe StartupPhotosController do 4 | 5 | end 6 | -------------------------------------------------------------------------------- /spec/controllers/startups_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/spec/controllers/startups_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/users_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/spec/controllers/users_controller_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/file.gif: -------------------------------------------------------------------------------- 1 | Fred Wu 2 | -------------------------------------------------------------------------------- /spec/fixtures/file.jpg: -------------------------------------------------------------------------------- 1 | Fred Wu 2 | -------------------------------------------------------------------------------- /spec/fixtures/file.pdf: -------------------------------------------------------------------------------- 1 | Fred Wu 2 | -------------------------------------------------------------------------------- /spec/helpers/application_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/spec/helpers/application_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/users_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/spec/helpers/users_helper_spec.rb -------------------------------------------------------------------------------- /spec/models/investor_profile_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/spec/models/investor_profile_spec.rb -------------------------------------------------------------------------------- /spec/models/message_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/spec/models/message_spec.rb -------------------------------------------------------------------------------- /spec/models/proposal_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/spec/models/proposal_spec.rb -------------------------------------------------------------------------------- /spec/models/startup_photo_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/spec/models/startup_photo_spec.rb -------------------------------------------------------------------------------- /spec/models/startup_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/spec/models/startup_spec.rb -------------------------------------------------------------------------------- /spec/models/startup_user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/spec/models/startup_user_spec.rb -------------------------------------------------------------------------------- /spec/models/target_follower_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/spec/models/target_follower_spec.rb -------------------------------------------------------------------------------- /spec/models/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/spec/models/user_spec.rb -------------------------------------------------------------------------------- /spec/requests/session_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/spec/requests/session_spec.rb -------------------------------------------------------------------------------- /spec/requests/user_session_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/spec/requests/user_session_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/spec/support/application.rb -------------------------------------------------------------------------------- /spec/support/blueprints.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/spec/support/blueprints.rb -------------------------------------------------------------------------------- /spec/support/devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/spec/support/devise.rb -------------------------------------------------------------------------------- /spec/support/shared_context/inherited_resources.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/spec/support/shared_context/inherited_resources.rb -------------------------------------------------------------------------------- /spec/support/shared_examples/commentable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/spec/support/shared_examples/commentable.rb -------------------------------------------------------------------------------- /spec/support/shared_examples/ensure_ownership.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/spec/support/shared_examples/ensure_ownership.rb -------------------------------------------------------------------------------- /spec/support/shared_examples/followable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/spec/support/shared_examples/followable.rb -------------------------------------------------------------------------------- /spec/support/shared_examples/peramable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredwu/angel_nest/HEAD/spec/support/shared_examples/peramable.rb --------------------------------------------------------------------------------