├── .buildpacks ├── .env.sample ├── .gitignore ├── .hound.yml ├── .jshintrc ├── .ruby-gemset ├── .ruby-style.yml ├── .scss-style.yml ├── .travis.yml ├── Gemfile ├── Gemfile.lock ├── Guardfile ├── LICENSE ├── Procfile ├── README.md ├── Rakefile ├── Vagrantfile ├── app ├── assets │ ├── fonts │ │ ├── Simple-Line-Icons.eot │ │ ├── Simple-Line-Icons.svg │ │ ├── Simple-Line-Icons.ttf │ │ ├── Simple-Line-Icons.woff │ │ ├── TiemposTextWeb-Regular.eot │ │ ├── TiemposTextWeb-Regular.svg │ │ ├── TiemposTextWeb-Regular.ttf │ │ ├── TiemposTextWeb-Regular.woff │ │ ├── TiemposTextWeb-RegularItalic.eot │ │ ├── TiemposTextWeb-RegularItalic.svg │ │ ├── TiemposTextWeb-RegularItalic.ttf │ │ ├── TiemposTextWeb-RegularItalic.woff │ │ ├── TiemposTextWeb-Semibold.eot │ │ ├── TiemposTextWeb-Semibold.svg │ │ ├── TiemposTextWeb-Semibold.ttf │ │ ├── TiemposTextWeb-Semibold.woff │ │ ├── TiemposTextWeb-SemiboldItalic.eot │ │ ├── TiemposTextWeb-SemiboldItalic.svg │ │ ├── TiemposTextWeb-SemiboldItalic.ttf │ │ ├── TiemposTextWeb-SemiboldItalic.woff │ │ ├── TiemposTextWebLF-Regular.eot │ │ ├── TiemposTextWebLF-Regular.svg │ │ ├── TiemposTextWebLF-Regular.ttf │ │ ├── TiemposTextWebLF-Regular.woff │ │ ├── TiemposTextWebLF-RegularItalic.eot │ │ ├── TiemposTextWebLF-RegularItalic.svg │ │ ├── TiemposTextWebLF-RegularItalic.ttf │ │ ├── TiemposTextWebLF-RegularItalic.woff │ │ ├── TiemposTextWebLF-Semibold.eot │ │ ├── TiemposTextWebLF-Semibold.svg │ │ ├── TiemposTextWebLF-Semibold.ttf │ │ ├── TiemposTextWebLF-Semibold.woff │ │ ├── TiemposTextWebLF-SemiboldItalic.eot │ │ ├── TiemposTextWebLF-SemiboldItalic.svg │ │ ├── TiemposTextWebLF-SemiboldItalic.ttf │ │ ├── TiemposTextWebLF-SemiboldItalic.woff │ │ ├── assembly-icons.eot │ │ ├── assembly-icons.svg │ │ ├── assembly-icons.ttf │ │ ├── assembly-icons.woff │ │ ├── batch.eot │ │ ├── batch.svg │ │ ├── batch.ttf │ │ ├── batch.woff │ │ ├── mvb-solitaire-black.eot │ │ ├── mvb-solitaire-black.svg │ │ ├── mvb-solitaire-black.ttf │ │ ├── mvb-solitaire-black.woff │ │ ├── mvb-solitaire-book-italic.eot │ │ ├── mvb-solitaire-book-italic.svg │ │ ├── mvb-solitaire-book-italic.ttf │ │ ├── mvb-solitaire-book-italic.woff │ │ ├── mvb-solitaire-book.eot │ │ ├── mvb-solitaire-book.svg │ │ ├── mvb-solitaire-book.ttf │ │ ├── mvb-solitaire-book.woff │ │ ├── mvb-solitaire-light.eot │ │ ├── mvb-solitaire-light.svg │ │ ├── mvb-solitaire-light.ttf │ │ ├── mvb-solitaire-light.woff │ │ ├── mvb-solitaire-semibold.eot │ │ ├── mvb-solitaire-semibold.svg │ │ ├── mvb-solitaire-semibold.ttf │ │ ├── mvb-solitaire-semibold.woff │ │ ├── ss-gizmo.eot │ │ ├── ss-gizmo.svg │ │ ├── ss-gizmo.ttf │ │ ├── ss-gizmo.woff │ │ ├── ss-social-regular.eot │ │ ├── ss-social-regular.svg │ │ ├── ss-social-regular.ttf │ │ └── ss-social-regular.woff │ ├── images │ │ ├── 404 │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ └── 5.jpg │ │ ├── about │ │ │ ├── copy-img1.jpg │ │ │ ├── copy-img2.jpg │ │ │ ├── copy-img3.jpg │ │ │ ├── excerpt-header1.jpg │ │ │ ├── full-slide1.jpg │ │ │ ├── full-slide2.jpg │ │ │ ├── full-slide3.jpg │ │ │ ├── full-slide4.jpg │ │ │ ├── full-slide5.jpg │ │ │ ├── grid-logo.png │ │ │ ├── social-icon-facebook.png │ │ │ ├── social-icon-insta.png │ │ │ └── social-icon-twitter.png │ │ ├── app_icon.png │ │ ├── asm-flatsidebars-left-2x.png │ │ ├── asm-flatsidebars-right-2x.png │ │ ├── asm-logo-flag-2x.png │ │ ├── badges │ │ │ ├── dark_badge.svg │ │ │ ├── dark_text_transparent.svg │ │ │ ├── flag_text.svg │ │ │ ├── flag_text_transparent.svg │ │ │ ├── light_badge.svg │ │ │ └── light_text_transparent.svg │ │ ├── brand │ │ │ └── inverse@2x.png │ │ ├── chosen-sprite.png │ │ ├── chosen-sprite@2x.png │ │ ├── core_icon.svg │ │ ├── default_avatar.png │ │ ├── default_poster.jpg │ │ ├── emails │ │ │ ├── fireworks.png │ │ │ ├── heart_ec3750_64.png │ │ │ ├── line.png │ │ │ ├── more.png │ │ │ └── timeline-event.gif │ │ ├── faces.jpg │ │ ├── favicon.ico │ │ ├── financials-blankslate.png │ │ ├── flag.svg │ │ ├── focus-home │ │ │ ├── avatar.jpg │ │ │ ├── avatars.jpg │ │ │ ├── avatars_all.jpg │ │ │ ├── community │ │ │ │ ├── aaronrelph.png │ │ │ │ ├── helpful.png │ │ │ │ ├── iwasrobbed.jpeg │ │ │ │ ├── line.jpeg │ │ │ │ ├── new1.jpeg │ │ │ │ ├── new10.jpeg │ │ │ │ ├── new11.png │ │ │ │ ├── new12.png │ │ │ │ ├── new13.jpeg │ │ │ │ ├── new14.jpeg │ │ │ │ ├── new15.jpeg │ │ │ │ ├── new16.jpeg │ │ │ │ ├── new17.jpeg │ │ │ │ ├── new2.png │ │ │ │ ├── new3.jpeg │ │ │ │ ├── new4.jpeg │ │ │ │ ├── new5.jpeg │ │ │ │ ├── new6.jpeg │ │ │ │ ├── new7.jpeg │ │ │ │ ├── new8.jpeg │ │ │ │ ├── new9.png │ │ │ │ ├── pif.jpg │ │ │ │ ├── prettyshots.png │ │ │ │ ├── prudio.png │ │ │ │ ├── runbook.png │ │ │ │ └── voices.jpg │ │ │ ├── community_bg.jpg │ │ │ ├── facebook.min.svg │ │ │ ├── hero_bg.min.svg │ │ │ ├── hero_bg.png │ │ │ ├── icon_comment.min.svg │ │ │ ├── icon_view.min.svg │ │ │ ├── logo.min.svg │ │ │ ├── logomark.min.svg │ │ │ ├── logotype.min.svg │ │ │ ├── menu.min.svg │ │ │ ├── play.min.svg │ │ │ ├── product.jpg │ │ │ ├── rally.jpg │ │ │ ├── rally_1.jpg │ │ │ ├── rally_10.jpg │ │ │ ├── rally_2.jpg │ │ │ ├── rally_3.jpg │ │ │ ├── rally_4.jpg │ │ │ ├── rally_5.jpg │ │ │ ├── rally_6.jpg │ │ │ ├── rally_7.jpg │ │ │ ├── rally_8.jpg │ │ │ ├── rally_9.jpg │ │ │ ├── story_bg.min.svg │ │ │ ├── story_bg.png │ │ │ ├── twitter.min.svg │ │ │ └── whale.jpg │ │ ├── getting-started │ │ │ └── hero.jpg │ │ ├── handle-active.png │ │ ├── handle.png │ │ ├── hero-grid-bg-dark-lg.jpg │ │ ├── hero-grid-bg-dark.jpg │ │ ├── hero-office-bg-dark-lg.jpg │ │ ├── hero-office-bg-dark.jpg │ │ ├── home-new-user.png │ │ ├── home-new-user@2x.png │ │ ├── icon-success-check-green.png │ │ ├── ideas │ │ │ ├── ideas-header-bg-lg.jpg │ │ │ ├── ideas-header-bg.jpg │ │ │ └── ideas-header-morse.png │ │ ├── jumbotron │ │ │ ├── bg.png │ │ │ └── bg@2x.png │ │ ├── logo.min.png │ │ ├── markdown-mark.png │ │ ├── new_profile.gif │ │ ├── null-states │ │ │ ├── profile.png │ │ │ └── profile@2x.png │ │ ├── play.png │ │ ├── pretty-people-working.jpg │ │ ├── product │ │ │ └── metrics_blurred.png │ │ ├── section-gradient.png │ │ ├── touch-icon.png │ │ └── users │ │ │ ├── chexee.jpeg │ │ │ ├── davidkaneda.png │ │ │ ├── davidkaneda1.png │ │ │ └── whale.jpg │ ├── javascripts │ │ ├── actions │ │ │ ├── apps_action_creators.js │ │ │ ├── attachment_action_creators.js │ │ │ ├── bounty_actions.js │ │ │ ├── chat_action_creators.js │ │ │ ├── chat_notifications_actions.js │ │ │ ├── checklist_actions.js │ │ │ ├── comment_action_creators.js │ │ │ ├── discussion_action_creators.js │ │ │ ├── heart_actions.js │ │ │ ├── idea_action_creators.js │ │ │ ├── idea_admin_action_creators.js │ │ │ ├── introduction_actions.js │ │ │ ├── love_action_creators.js │ │ │ ├── lovers_action_creators.js │ │ │ ├── new_comment_action_creators.js │ │ │ ├── news_feed_item_action_creators.js │ │ │ ├── news_feed_items_action_creators.js │ │ │ ├── ownership_actions.js │ │ │ ├── pagination_action_creators.js │ │ │ ├── people_action_creators.js │ │ │ ├── post_action_creators.js │ │ │ ├── product_actions.js │ │ │ ├── product_metrics_actions.js │ │ │ ├── product_search_action_creators.js │ │ │ ├── product_subsections_actions.js │ │ │ ├── proposal_actions.js │ │ │ ├── router.js │ │ │ ├── screenshot_actions.js │ │ │ ├── signup_actions.js │ │ │ ├── story_actions.js │ │ │ ├── story_timeline_actions.js │ │ │ ├── task_list_actions.js │ │ │ ├── tip_actions.js │ │ │ ├── user_actions.js │ │ │ └── user_story_timeline_actions.js │ │ ├── admin.js │ │ ├── admin │ │ │ ├── d3.v2.js │ │ │ └── rickshaw.min.js │ │ ├── application.js.coffee │ │ ├── assets.js │ │ ├── collections │ │ │ ├── activity_stream.js.coffee │ │ │ ├── attachments.coffee │ │ │ ├── design_deliverables.coffee │ │ │ ├── members.js │ │ │ ├── tasks.coffee │ │ │ ├── tips.js.coffee │ │ │ ├── wip_events.coffee │ │ │ ├── wip_search_results.coffee │ │ │ └── wips.coffee │ │ ├── components │ │ │ ├── activity_feed_comment.js.jsx │ │ │ ├── activity_sidebar.js.jsx │ │ │ ├── add_domain.js.jsx │ │ │ ├── admin │ │ │ │ ├── admin_apps.js.jsx │ │ │ │ ├── admin_withholding.js.jsx │ │ │ │ ├── data_table.js.jsx │ │ │ │ ├── ownership_state.js.jsx │ │ │ │ ├── product_rankings.js.jsx │ │ │ │ ├── product_state.js.jsx │ │ │ │ ├── sort_arrow.js.jsx │ │ │ │ └── table_sort_header.js.jsx │ │ │ ├── app.js.jsx │ │ │ ├── app_coins.js.jsx │ │ │ ├── app_icon.js.jsx │ │ │ ├── apps.js.jsx │ │ │ ├── asm_app.js.jsx │ │ │ ├── asset_thumbnail.js.jsx │ │ │ ├── avatar_link.js.jsx │ │ │ ├── bounty.js.jsx │ │ │ ├── bounty_breakdown.js.jsx │ │ │ ├── bounty_card.js.jsx │ │ │ ├── bounty_contracts.js.jsx │ │ │ ├── bounty_filter.js.jsx │ │ │ ├── bounty_filter_button.js.jsx │ │ │ ├── bounty_filters.js.jsx │ │ │ ├── bounty_flag_button.js.jsx │ │ │ ├── bounty_index.js.jsx │ │ │ ├── bounty_list.js.jsx │ │ │ ├── bounty_list_item.js.jsx │ │ │ ├── bounty_offer.js.jsx │ │ │ ├── bounty_posting_button.js.jsx │ │ │ ├── bounty_valuation.js.jsx │ │ │ ├── bounty_valuation_slider.js.jsx │ │ │ ├── bs_popover.js.jsx │ │ │ ├── callout.js.jsx │ │ │ ├── channels_list.js.jsx │ │ │ ├── character_limiter.js.jsx │ │ │ ├── chat_entry.js.jsx │ │ │ ├── chat_input.js.jsx │ │ │ ├── chat_notifications.js.jsx │ │ │ ├── chat_notifications_toggler.js.jsx │ │ │ ├── chat_typing_label.js.jsx │ │ │ ├── checklist.js.jsx │ │ │ ├── comment.js.jsx │ │ │ ├── contract_input.js.jsx │ │ │ ├── contracts.js.jsx │ │ │ ├── create_bounty.js.jsx │ │ │ ├── create_bounty_button.js.jsx │ │ │ ├── create_bounty_offer.js.jsx │ │ │ ├── create_product.js.jsx │ │ │ ├── create_product_item.js.jsx │ │ │ ├── custom_bounty_offer.js.jsx │ │ │ ├── dashboard │ │ │ │ └── dashboard_index.js.jsx │ │ │ ├── desktop_notifications.js.jsx │ │ │ ├── drag_and_drop_view.js.jsx │ │ │ ├── dropdown_notifications.js.jsx │ │ │ ├── dropdown_notifications_toggler.js.jsx │ │ │ ├── financials_view.js.jsx │ │ │ ├── floating_user_selector.js.jsx │ │ │ ├── follower_list.js.jsx │ │ │ ├── form_group.js.jsx │ │ │ ├── form_uploader.js.jsx │ │ │ ├── governance │ │ │ │ ├── governance.js.jsx │ │ │ │ ├── proposal_list.js.jsx │ │ │ │ └── proposal_list_item.js.jsx │ │ │ ├── heart.js.jsx │ │ │ ├── heart_count.js.jsx │ │ │ ├── hot_bounties.js.jsx │ │ │ ├── idea_progress_widget.js.jsx │ │ │ ├── ideas │ │ │ │ ├── idea.js.jsx │ │ │ │ ├── idea_admin.js.jsx │ │ │ │ ├── idea_edit.js.jsx │ │ │ │ ├── idea_form.js.jsx │ │ │ │ ├── idea_how_it_works.js.jsx │ │ │ │ ├── idea_lovers.js.jsx │ │ │ │ ├── idea_progress_bar.js.jsx │ │ │ │ ├── idea_share_panel.js.jsx │ │ │ │ ├── idea_show.js.jsx │ │ │ │ ├── idea_start_conversation.js.jsx │ │ │ │ ├── idea_tile.js.jsx │ │ │ │ ├── ideas_index.js.jsx │ │ │ │ └── ideas_new.js.jsx │ │ │ ├── import_page.js.jsx │ │ │ ├── in_place_user_search.js.jsx │ │ │ ├── info_modal.js.jsx │ │ │ ├── integrations │ │ │ │ ├── google_analytics │ │ │ │ │ ├── integration.js.jsx │ │ │ │ │ └── modal.js.jsx │ │ │ │ └── integrations.js.jsx │ │ │ ├── interest_picker.js.jsx │ │ │ ├── introduction.js.jsx │ │ │ ├── invite_bounty_form.js.jsx │ │ │ ├── invite_friend_bounty.js.jsx │ │ │ ├── invite_friend_product.js.jsx │ │ │ ├── invite_list.js.jsx │ │ │ ├── leaderboard.js.jsx │ │ │ ├── lightbox.js.jsx │ │ │ ├── lovers.js.jsx │ │ │ ├── markdown.js.jsx │ │ │ ├── markdown_editor.js.jsx │ │ │ ├── members_view.js.jsx │ │ │ ├── navbar.js.jsx │ │ │ ├── new_bounty_offer.js.jsx │ │ │ ├── new_repository_preview.js.jsx │ │ │ ├── news_feed │ │ │ │ ├── new_comment.js.jsx │ │ │ │ ├── news_feed.js.jsx │ │ │ │ ├── news_feed_item.js.jsx │ │ │ │ ├── news_feed_item_bounty.js.jsx │ │ │ │ ├── news_feed_item_bounty_close.js.jsx │ │ │ │ ├── news_feed_item_bounty_comment_reference.js.jsx │ │ │ │ ├── news_feed_item_bounty_modal.js.jsx │ │ │ │ ├── news_feed_item_bounty_reopen.js.jsx │ │ │ │ ├── news_feed_item_bounty_review_ready.js.jsx │ │ │ │ ├── news_feed_item_bounty_tag_change.js.jsx │ │ │ │ ├── news_feed_item_bounty_timeline_item.js.jsx │ │ │ │ ├── news_feed_item_bounty_title_change.js.jsx │ │ │ │ ├── news_feed_item_bounty_win.js.jsx │ │ │ │ ├── news_feed_item_comments.js.jsx │ │ │ │ ├── news_feed_item_event.js.jsx │ │ │ │ ├── news_feed_item_introduction.js.jsx │ │ │ │ ├── news_feed_item_modal.js.jsx │ │ │ │ └── news_feed_item_post.js.jsx │ │ │ ├── pages │ │ │ │ ├── badge_page.js.jsx │ │ │ │ └── home_page.js.jsx │ │ │ ├── pagination │ │ │ │ └── pagination.js.jsx │ │ │ ├── pagination_links.js.jsx │ │ │ ├── partner.js.jsx │ │ │ ├── people_view.js.jsx │ │ │ ├── person_picker.js.jsx │ │ │ ├── popover.js.jsx │ │ │ ├── posts │ │ │ │ ├── new_post_form.js.jsx │ │ │ │ ├── new_post_modal.js.jsx │ │ │ │ ├── post_list.js.jsx │ │ │ │ ├── post_list_item.js.jsx │ │ │ │ └── posts_index.js.jsx │ │ │ ├── product_banner.js.jsx │ │ │ ├── product_followers.js.jsx │ │ │ ├── product_progress_widget.js.jsx │ │ │ ├── product_search.js.jsx │ │ │ ├── product_search_result.js.jsx │ │ │ ├── product_tile.js.jsx │ │ │ ├── products │ │ │ │ ├── editing_product_subsection.js.jsx │ │ │ │ ├── metrics_charts.js.jsx │ │ │ │ ├── metrics_index.js.jsx │ │ │ │ ├── metrics_snippet.js.jsx │ │ │ │ ├── new_product_subsection.js.jsx │ │ │ │ ├── product_activity.js.jsx │ │ │ │ ├── product_bounties.js.jsx │ │ │ │ ├── product_bounty.js.jsx │ │ │ │ ├── product_header.js.jsx │ │ │ │ ├── product_important_links.js.jsx │ │ │ │ ├── product_new_post.js.jsx │ │ │ │ ├── product_partners.js.jsx │ │ │ │ ├── product_post.js.jsx │ │ │ │ ├── product_posts.js.jsx │ │ │ │ ├── product_screenshot_placeholder.js.jsx │ │ │ │ ├── product_show.js.jsx │ │ │ │ ├── product_subsection.js.jsx │ │ │ │ ├── product_subsections.js.jsx │ │ │ │ ├── product_trust.js.jsx │ │ │ │ ├── screenshots.js.jsx │ │ │ │ └── video.js.jsx │ │ │ ├── proposal.js.jsx │ │ │ ├── proposal_creation.js.jsx │ │ │ ├── read_receipts.js.jsx │ │ │ ├── share_panel.js.jsx │ │ │ ├── showcase_banner.js.jsx │ │ │ ├── signup │ │ │ │ ├── signup_form.js.jsx │ │ │ │ └── signup_modal.js.jsx │ │ │ ├── simple_bounty_offer.js.jsx │ │ │ ├── sort_order.js.jsx │ │ │ ├── spinner.js.jsx │ │ │ ├── start_page.js.jsx │ │ │ ├── stories │ │ │ │ ├── story.js.jsx │ │ │ │ ├── story_group.js.jsx │ │ │ │ └── user_story_timeline.js.jsx │ │ │ ├── story_timeline.js.jsx │ │ │ ├── story_timeline_feed.js.jsx │ │ │ ├── submit_button.js.jsx │ │ │ ├── tag.js.jsx │ │ │ ├── tag_filter.js.jsx │ │ │ ├── tag_list.js.jsx │ │ │ ├── tagged_input.js.jsx │ │ │ ├── task_list_item.js.jsx │ │ │ ├── text_input.js.jsx │ │ │ ├── thumbnail.js.jsx │ │ │ ├── timestamp.js.jsx │ │ │ ├── tips_ui.js.jsx │ │ │ ├── title_notifications_count.js.jsx │ │ │ ├── toggle_button.js.jsx │ │ │ ├── trackable.js.jsx │ │ │ ├── typeahead.js.jsx │ │ │ ├── typeahead_user_input.js.jsx │ │ │ ├── typeahead_user_textarea.js.jsx │ │ │ ├── ui │ │ │ │ ├── accordion.js.jsx │ │ │ │ ├── avatar.js.jsx │ │ │ │ ├── avatar_with_username.js.jsx │ │ │ │ ├── button.js.jsx │ │ │ │ ├── button_dropdown.js.jsx │ │ │ │ ├── carousel.js.jsx │ │ │ │ ├── character_limited_input.js.jsx │ │ │ │ ├── chart.js.jsx │ │ │ │ ├── circle_icon.js.jsx │ │ │ │ ├── confirm_action_button.js.jsx │ │ │ │ ├── discussion.js.jsx │ │ │ │ ├── drawer.js.jsx │ │ │ │ ├── dropdown_menu.js.jsx │ │ │ │ ├── icon.js.jsx │ │ │ │ ├── icon_toggler.js.jsx │ │ │ │ ├── icon_with_number.js.jsx │ │ │ │ ├── jewel.js.jsx │ │ │ │ ├── jumbotron.js.jsx │ │ │ │ ├── label.js.jsx │ │ │ │ ├── list.js.jsx │ │ │ │ ├── modal.js.jsx │ │ │ │ ├── nav.js.jsx │ │ │ │ ├── overflow_fade.js.jsx │ │ │ │ ├── pill.js.jsx │ │ │ │ ├── progress.js.jsx │ │ │ │ ├── progress_bar.js.jsx │ │ │ │ ├── reveal.js.jsx │ │ │ │ ├── share.js.jsx │ │ │ │ ├── single_line_list.js.jsx │ │ │ │ ├── small_tile.js.jsx │ │ │ │ ├── svg_icon.js.jsx │ │ │ │ ├── text_post.js.jsx │ │ │ │ ├── tile.js.jsx │ │ │ │ ├── timeline.js.jsx │ │ │ │ └── vignette.js.jsx │ │ │ ├── update.js.jsx │ │ │ ├── user.js.jsx │ │ │ ├── user │ │ │ │ ├── api_settings.js.jsx │ │ │ │ ├── hearts_received.js.jsx │ │ │ │ ├── hello.js.jsx │ │ │ │ ├── profile_bounties_awarded.js.jsx │ │ │ │ ├── profile_hearts_received.js.jsx │ │ │ │ ├── profile_product_badges.js.jsx │ │ │ │ └── user_profile.js.jsx │ │ │ ├── user_filter.js.jsx │ │ │ ├── user_link.js.jsx │ │ │ ├── user_picker.js.jsx │ │ │ ├── vote_bounty_offer.js.jsx │ │ │ └── welcome_banner.js.jsx │ │ ├── constants │ │ │ └── index.js │ │ ├── cookie.js │ │ ├── d3 │ │ │ ├── finance_graph.js │ │ │ └── user_radar.js │ │ ├── dispatcher │ │ │ └── index.js │ │ ├── focus_home.js │ │ ├── functional.js │ │ ├── landline_migration.js │ │ ├── lib │ │ │ ├── ajax.js │ │ │ ├── alert.js.coffee │ │ │ ├── autosave.coffee │ │ │ ├── avatar_grid.js │ │ │ ├── bootstrap-lightbox.js │ │ │ ├── button.js │ │ │ ├── countdown.coffee │ │ │ ├── counter.js.coffee │ │ │ ├── delay.coffee │ │ │ ├── every.coffee │ │ │ ├── form_validation.js.coffee │ │ │ ├── format_short_time.js │ │ │ ├── github_colors.js │ │ │ ├── headroom.js │ │ │ ├── jquery.autocomplete.js │ │ │ ├── jquery.easypiechart.js │ │ │ ├── jquery.magnific-popup.js │ │ │ ├── jquery.typing.js │ │ │ ├── keymirror.js │ │ │ ├── masonry.pkgd.js │ │ │ ├── parseuri.js │ │ │ ├── pluralizer.js.coffee │ │ │ ├── rand.coffee │ │ │ ├── react_ujs.js │ │ │ ├── readraptor.js.coffee │ │ │ ├── sample.coffee │ │ │ ├── scroll.js │ │ │ ├── toggler.js.coffee │ │ │ ├── truncate.js │ │ │ └── visibility.js.coffee │ │ ├── main.coffee │ │ ├── mixins │ │ │ ├── bs_modal_mixin.js.jsx │ │ │ ├── dragging_mixin.js │ │ │ ├── dropdown_mixin.js.jsx │ │ │ ├── dropdown_toggler.js.jsx │ │ │ ├── dropzone_mixin.js │ │ │ ├── event.js.jsx │ │ │ ├── form_mixin.js.jsx │ │ │ ├── list_item_mixin.js.jsx │ │ │ ├── local_storage.js │ │ │ ├── news_feed_item_modal_mixin.js │ │ │ ├── news_feed_mixin.js.jsx │ │ │ └── people_page.js.jsx │ │ ├── models │ │ │ ├── activity.js.coffee │ │ │ ├── attachment.coffee │ │ │ ├── comment.js.coffee │ │ │ ├── design_deliverable.coffee │ │ │ ├── product.coffee │ │ │ ├── task_item.coffee │ │ │ ├── user.coffee │ │ │ ├── vote.coffee │ │ │ ├── wip.coffee │ │ │ ├── wip_event.coffee │ │ │ └── wip_search_result.coffee │ │ ├── polyfills.js │ │ ├── routes.js │ │ ├── routes │ │ │ ├── dashboard_handlers.js │ │ │ ├── ideas_handlers.js │ │ │ ├── products_handlers.js │ │ │ └── routes.js │ │ ├── stores │ │ │ ├── apps_store.js │ │ │ ├── archived_news_feed_items_store.js │ │ │ ├── assets_store.js │ │ │ ├── attachment_store.js │ │ │ ├── bounties_awarded_store.js │ │ │ ├── bounties_store.js │ │ │ ├── bounty_marks_store.js │ │ │ ├── bounty_store.js │ │ │ ├── chat_message_store.js │ │ │ ├── chat_notifications_store.js │ │ │ ├── checklist_store.js │ │ │ ├── comment_attachment_store.js │ │ │ ├── comment_store.js │ │ │ ├── contract_store.js │ │ │ ├── create_product_item_store.js │ │ │ ├── dashboard_store.js │ │ │ ├── discussion_store.js │ │ │ ├── es6_store.js │ │ │ ├── hearts_received_store.js │ │ │ ├── idea_admin_store.js │ │ │ ├── idea_progress_store.js │ │ │ ├── idea_share_panel_store.js │ │ │ ├── idea_store.js │ │ │ ├── ideas_store.js │ │ │ ├── interest_store.js │ │ │ ├── introduction_store.js │ │ │ ├── love_store.js │ │ │ ├── lovers_store.js │ │ │ ├── new_comment_store.js │ │ │ ├── news_feed_item_store.js │ │ │ ├── news_feed_items_store.js │ │ │ ├── notifications_users_store.js │ │ │ ├── online_users_store.js │ │ │ ├── pagination_store.js │ │ │ ├── partners_store.js │ │ │ ├── people_store.js │ │ │ ├── person_picker_store.js │ │ │ ├── post_marks_store.js │ │ │ ├── post_store.js │ │ │ ├── posts_store.js │ │ │ ├── product_followers_store.js │ │ │ ├── product_header_store.js │ │ │ ├── product_metrics_store.js │ │ │ ├── product_store.js │ │ │ ├── product_subsections_store.js │ │ │ ├── products_search_store.js │ │ │ ├── products_store.js │ │ │ ├── proposal_store.js │ │ │ ├── routes_store.js │ │ │ ├── screenshot_store.js │ │ │ ├── screenshots_store.js │ │ │ ├── showcase_banner_store.js │ │ │ ├── signup_form_store.js │ │ │ ├── signup_modal_store.js │ │ │ ├── store.js │ │ │ ├── story_store.js │ │ │ ├── story_timeline_store.js │ │ │ ├── subscriptions_store.js │ │ │ ├── tag_list_store.js │ │ │ ├── tips_store.js │ │ │ ├── toggle_button_store.js │ │ │ ├── uploading_attachments_store.js │ │ │ ├── user_bounties_store.js │ │ │ ├── user_search_store.js │ │ │ ├── user_store.js │ │ │ ├── user_story_timeline_store.js │ │ │ ├── valuation_store.js │ │ │ └── welcome_banner_store.js │ │ ├── textcomplete.js │ │ ├── vendor │ │ │ ├── textarea_caret_coords.js │ │ │ └── textarea_caret_position.js │ │ ├── views │ │ │ ├── activity_view.js.coffee │ │ │ ├── chat_view.js.coffee │ │ │ ├── dismissable_view.coffee │ │ │ ├── dropzone_view.js.coffee │ │ │ ├── markdown_editor_view.coffee │ │ │ ├── task_item_view.coffee │ │ │ └── task_list_view.coffee │ │ ├── web_util.js │ │ └── xhr.js │ └── stylesheets │ │ ├── -deprecated │ │ └── _border.scss │ │ ├── _basscss.scss │ │ ├── _bootstrap.scss │ │ ├── _constants.scss │ │ ├── _deprecated │ │ ├── _basspluss.scss │ │ ├── _nocss.scss │ │ ├── _nocss_mq.scss │ │ ├── _nocss_vars.scss │ │ └── _utility.scss │ │ ├── admin.scss │ │ ├── app │ │ ├── _main.scss │ │ ├── components │ │ │ ├── _marks.scss │ │ │ ├── _pie.scss │ │ │ ├── accordion-grid.scss │ │ │ ├── activity.scss │ │ │ ├── alert.scss │ │ │ ├── apps.scss │ │ │ ├── avatars.scss │ │ │ ├── badges.scss │ │ │ ├── bounty.scss │ │ │ ├── brand.scss │ │ │ ├── breadcrumbs.scss │ │ │ ├── buttons.scss │ │ │ ├── callout.scss │ │ │ ├── card.scss │ │ │ ├── chat.scss │ │ │ ├── chip.scss │ │ │ ├── comments.scss │ │ │ ├── counter.scss │ │ │ ├── cue.scss │ │ │ ├── dashboard.scss │ │ │ ├── deprecated_card.scss │ │ │ ├── devbar.scss │ │ │ ├── discussion.scss │ │ │ ├── drawer.scss │ │ │ ├── dropdown.scss │ │ │ ├── dropdown_menu.scss │ │ │ ├── dropzone.scss │ │ │ ├── entry.scss │ │ │ ├── equator.scss │ │ │ ├── flair.scss │ │ │ ├── flip-grid.scss │ │ │ ├── footer.scss │ │ │ ├── form_control.scss │ │ │ ├── forms.scss │ │ │ ├── full-slider.scss │ │ │ ├── general-copy.scss │ │ │ ├── handle.scss │ │ │ ├── headroom.scss │ │ │ ├── heart.scss │ │ │ ├── hero.scss │ │ │ ├── hover_toggle.scss │ │ │ ├── hr_line.scss │ │ │ ├── icons.scss │ │ │ ├── img_overlay.scss │ │ │ ├── invite.scss │ │ │ ├── jumbotron.scss │ │ │ ├── labels.scss │ │ │ ├── lightbox.scss │ │ │ ├── list_groups.scss │ │ │ ├── lists.scss │ │ │ ├── markdown.scss │ │ │ ├── marker.scss │ │ │ ├── masthead.scss │ │ │ ├── media.scss │ │ │ ├── modal.scss │ │ │ ├── modals.scss │ │ │ ├── navbar.scss │ │ │ ├── navs.scss │ │ │ ├── nprogress.scss │ │ │ ├── page.scss │ │ │ ├── page_header.scss │ │ │ ├── panels.scss │ │ │ ├── product_header.scss │ │ │ ├── product_state_indicator.scss │ │ │ ├── progress_bars.scss │ │ │ ├── quote-slider.scss │ │ │ ├── search_result.scss │ │ │ ├── slider.scss │ │ │ ├── spinner.scss │ │ │ ├── square.scss │ │ │ ├── summary.scss │ │ │ ├── table.scss │ │ │ ├── tag.scss │ │ │ ├── tagged_input_group.scss │ │ │ ├── task_list.scss │ │ │ ├── team-grid.scss │ │ │ ├── tile-grid.scss │ │ │ ├── tile.scss │ │ │ ├── toggler.scss │ │ │ └── wells.scss │ │ ├── mixins │ │ │ ├── _animation.scss │ │ │ ├── _mixins.scss │ │ │ ├── _placeholder.scss │ │ │ └── _togglers.scss │ │ ├── slop.scss │ │ └── temp │ │ │ └── style-guide-updates.scss │ │ ├── application.scss │ │ ├── base │ │ ├── _scale.scss │ │ └── _type.scss │ │ ├── basscss │ │ ├── _base-buttons.scss │ │ ├── _base-forms.scss │ │ ├── _base-reset.scss │ │ ├── _base-tables.scss │ │ ├── _base-typography.scss │ │ ├── _color-base.scss │ │ ├── _color-borders.scss │ │ ├── _color-tables.scss │ │ ├── _flex-object.scss │ │ ├── _grid.scss │ │ ├── _positions.scss │ │ ├── _table-object.scss │ │ ├── _utility-layout.scss │ │ ├── _utility-responsive-states.scss │ │ ├── _utility-typography.scss │ │ └── _utility-white-space.scss │ │ ├── c3 │ │ └── c3.scss │ │ ├── components │ │ ├── _button_dropdown.scss │ │ ├── _icon_toggler.scss │ │ ├── _list.scss │ │ ├── _nav.scss │ │ ├── _page_header.scss │ │ ├── _timeline.scss │ │ └── _vignette.scss │ │ ├── email.scss │ │ ├── email_ink.scss │ │ ├── focus_home.scss │ │ ├── utilities │ │ ├── _accesibility.scss │ │ ├── _background_images.scss │ │ ├── _borders.scss │ │ ├── _colors.scss │ │ ├── _flex.scss │ │ ├── _layout.scss │ │ ├── _list_inline.scss │ │ ├── _list_reset.scss │ │ ├── _shadows.scss │ │ ├── _type.scss │ │ ├── _visible_hover.scss │ │ └── _white_space.scss │ │ └── vars │ │ ├── _base.scss │ │ ├── _colors.scss │ │ └── _fonts.scss ├── controllers │ ├── activity_controller.rb │ ├── admin │ │ ├── apps_controller.rb │ │ ├── asset_history_controller.rb │ │ ├── bitcoin_controller.rb │ │ ├── bounties_controller.rb │ │ ├── karma_controller.rb │ │ ├── leaderboard_controller.rb │ │ ├── newsletters_controller.rb │ │ ├── ownership_controller.rb │ │ ├── pitch_week_applications_controller.rb │ │ ├── product_rankings_controller.rb │ │ ├── profit_reports_controller.rb │ │ ├── staff_picks_controller.rb │ │ ├── tags_controller.rb │ │ ├── user_books_controller.rb │ │ ├── users_controller.rb │ │ └── withdrawals_controller.rb │ ├── admin_controller.rb │ ├── api │ │ ├── api_controller.rb │ │ ├── awards_controller.rb │ │ ├── bounties_controller.rb │ │ ├── bounty_postings_controller.rb │ │ ├── chat │ │ │ └── users_controller.rb │ │ ├── news_feed_items_controller.rb │ │ ├── offers_controller.rb │ │ ├── orgs_controller.rb │ │ ├── products_controller.rb │ │ ├── projects_controller.rb │ │ ├── subscribers_controller.rb │ │ ├── textcompletes_controller.rb │ │ ├── updates_controller.rb │ │ └── users_controller.rb │ ├── application_controller.rb │ ├── apps_controller.rb │ ├── assets_controller.rb │ ├── attachments_controller.rb │ ├── awards_controller.rb │ ├── choices_controller.rb │ ├── comments_controller.rb │ ├── contracts_controller.rb │ ├── core_team_members_controller.rb │ ├── dashboard_controller.rb │ ├── discussions_controller.rb │ ├── domains_controller.rb │ ├── errors_controller.rb │ ├── expense_claims_controller.rb │ ├── facebook_controller.rb │ ├── financial │ │ ├── accounts_controller.rb │ │ ├── financials_controller.rb │ │ └── transactions_controller.rb │ ├── financials_controller.rb │ ├── global_interests_controller.rb │ ├── governance_controller.rb │ ├── guides_controller.rb │ ├── heartables_controller.rb │ ├── hellos_controller.rb │ ├── hot_bounties_controller.rb │ ├── ideas_controller.rb │ ├── integrations_controller.rb │ ├── invites_controller.rb │ ├── leaderboards_controller.rb │ ├── metrics_controller.rb │ ├── news_feed_item_posts_controller.rb │ ├── news_feed_items_controller.rb │ ├── notifications_controller.rb │ ├── pages_controller.rb │ ├── partners_controller.rb │ ├── payments_controller.rb │ ├── people_controller.rb │ ├── playground_controller.rb │ ├── posts_controller.rb │ ├── product_controller.rb │ ├── product_logos_controller.rb │ ├── products_controller.rb │ ├── projects_controller.rb │ ├── proposals_controller.rb │ ├── questions_controller.rb │ ├── readraptor_controller.rb │ ├── repositories_controller.rb │ ├── resources_controller.rb │ ├── saved_searches_controller.rb │ ├── screenshots_controller.rb │ ├── search_controller.rb │ ├── single_sign_on_controller.rb │ ├── stakes_controller.rb │ ├── status_messages_controller.rb │ ├── stories_controller.rb │ ├── styleguide_controller.rb │ ├── tags_controller.rb │ ├── talk_controller.rb │ ├── tasks_controller.rb │ ├── team_memberships_controller.rb │ ├── tips_controller.rb │ ├── users │ │ ├── balances_controller.rb │ │ ├── confirmations_controller.rb │ │ ├── notifications_controller.rb │ │ ├── omniauth_callbacks_controller.rb │ │ ├── passwords_controller.rb │ │ ├── payment_options_controller.rb │ │ ├── profiles_controller.rb │ │ ├── registrations_controller.rb │ │ ├── sessions_controller.rb │ │ └── tax_infos_controller.rb │ ├── users_controller.rb │ ├── webhook_controller.rb │ ├── webhooks │ │ ├── assembly_assets_controller.rb │ │ ├── github_controller.rb │ │ ├── landline_controller.rb │ │ ├── mailgun_controller.rb │ │ ├── pusher_controller.rb │ │ └── read_raptor_controller.rb │ └── wips_controller.rb ├── decorators │ ├── application_decorator.rb │ ├── paginating_decorator.rb │ ├── product_decorator.rb │ ├── showcases_decorator.rb │ └── user_decorator.rb ├── helpers │ ├── admin_helper.rb │ ├── analytics_helper.rb │ ├── app_icon_helper.rb │ ├── application_helper.rb │ ├── avatar_helper.rb │ ├── bounties_helper.rb │ ├── bounty_stats_helper.rb │ ├── coin_helper.rb │ ├── currency_helper.rb │ ├── facebook_helper.rb │ ├── firesize_helper.rb │ ├── flag_helper.rb │ ├── form_helper.rb │ ├── image_helper.rb │ ├── json_helper.rb │ ├── layout_helper.rb │ ├── markdown_helper.rb │ ├── navs_helper.rb │ ├── products_helper.rb │ ├── react_helper.rb │ ├── sign_in_helper.rb │ ├── stores_helper.rb │ ├── styleguide_helper.rb │ ├── table_helper.rb │ ├── text_helper.rb │ ├── time_helper.rb │ ├── title_helper.rb │ ├── wip_helper.rb │ └── you_tube_helper.rb ├── mailers │ ├── award_mailer.rb │ ├── badge_mailer.rb │ ├── base_mailer.rb │ ├── chat_mailer.rb │ ├── comment_mailer.rb │ ├── core_team_mailer.rb │ ├── custom_devise_mailer.rb │ ├── digest_mailer.rb │ ├── domain_mailer.rb │ ├── heart_mailer.rb │ ├── idea_mailer.rb │ ├── invite_mailer.rb │ ├── newsletter_mailer.rb │ ├── partnership_mailer.rb │ ├── pitch_week_mailer.rb │ ├── post_mailer.rb │ ├── product_mailer.rb │ ├── showcase_mailer.rb │ ├── suggestion_mailer.rb │ ├── team_building_mailer.rb │ ├── text_mailer.rb │ ├── tilt_mailer.rb │ ├── tip_mailer.rb │ ├── unread_mailer.rb │ ├── user_balance_mailer.rb │ ├── user_mailer.rb │ └── wip_mailer.rb ├── models │ ├── ability.rb │ ├── actions │ │ └── upsert_stripe_recipient.rb │ ├── activities │ │ ├── assign.rb │ │ ├── award.rb │ │ ├── chat.rb │ │ ├── close.rb │ │ ├── comment.rb │ │ ├── create_contract.rb │ │ ├── create_core_team_membership.rb │ │ ├── destroy_contract.rb │ │ ├── follow.rb │ │ ├── found.rb │ │ ├── git_push.rb │ │ ├── introduce.rb │ │ ├── launch.rb │ │ ├── news_feed_item.rb │ │ ├── news_feed_item_comment.rb │ │ ├── open.rb │ │ ├── post.rb │ │ ├── reference.rb │ │ ├── subscribe.rb │ │ ├── tip.rb │ │ ├── unassign.rb │ │ ├── update.rb │ │ ├── update_contract.rb │ │ └── vote.rb │ ├── activity.rb │ ├── activity_stream.rb │ ├── apps_query.rb │ ├── assembly_asset.rb │ ├── assembly_coins.rb │ ├── assembly_team.rb │ ├── asset.rb │ ├── assign_product_key_pair.rb │ ├── attachment.rb │ ├── auto_bounty.rb │ ├── auto_post.rb │ ├── auto_tip_contract.rb │ ├── award.rb │ ├── awarded_bounties_query.rb │ ├── bounty_factory.rb │ ├── bounty_posting.rb │ ├── btc_payment.rb │ ├── chat_room.rb │ ├── checklist_handler.rb │ ├── choice.rb │ ├── chronicle.rb │ ├── code_deliverable.rb │ ├── coin_info.rb │ ├── contract_holder.rb │ ├── copy_deliverable.rb │ ├── core_team_membership.rb │ ├── corporation.rb │ ├── counter.rb │ ├── csv_compiler.rb │ ├── daily_metric.rb │ ├── dashboard.rb │ ├── dashboard_query.rb │ ├── date_range_extensions.rb │ ├── deed.rb │ ├── deliverable.rb │ ├── discussion.rb │ ├── domain.rb │ ├── easy_trailing_average.rb │ ├── email_campaigns │ │ └── hearts_received.rb │ ├── email_log.rb │ ├── event.rb │ ├── event │ │ ├── allocation.rb │ │ ├── close.rb │ │ ├── code_added.rb │ │ ├── comment.rb │ │ ├── comment_reference.rb │ │ ├── commit_reference.rb │ │ ├── copy_added.rb │ │ ├── demotion.rb │ │ ├── design_deliverable.rb │ │ ├── promotion.rb │ │ ├── pull_request_reference.rb │ │ ├── rejection.rb │ │ ├── reopen.rb │ │ ├── review_ready.rb │ │ ├── tag_change.rb │ │ ├── title_change.rb │ │ ├── type_change.rb │ │ ├── unallocation.rb │ │ └── win.rb │ ├── expense_claim.rb │ ├── expense_claim_attachment.rb │ ├── facet_filter.rb │ ├── faq_group.rb │ ├── filter_ideas_query.rb │ ├── filter_updates_query.rb │ ├── filter_wips_query.rb │ ├── finance.rb │ ├── financial │ │ ├── account.rb │ │ ├── amount.rb │ │ ├── amounts_extension.rb │ │ ├── asset.rb │ │ ├── credit_account.rb │ │ ├── credit_amount.rb │ │ ├── debit_account.rb │ │ ├── debit_amount.rb │ │ ├── equity.rb │ │ ├── expense.rb │ │ ├── liability.rb │ │ ├── revenue.rb │ │ └── transaction.rb │ ├── global_interest.rb │ ├── governance.rb │ ├── growth_hack.rb │ ├── guest.rb │ ├── guides_group.rb │ ├── heart.rb │ ├── heart_stories_query.rb │ ├── hot_bounty.rb │ ├── idea.rb │ ├── idea_comment.rb │ ├── integration.rb │ ├── interest.rb │ ├── interpreter.rb │ ├── invite.rb │ ├── kwest.rb │ ├── leader_determination.rb │ ├── leader_position.rb │ ├── make_marks.rb │ ├── mark.rb │ ├── mark_cluster.rb │ ├── mark_stem.rb │ ├── mark_to_mark.rb │ ├── marking.rb │ ├── measurement.rb │ ├── message.rb │ ├── metric.rb │ ├── metrics │ │ ├── contributors.rb │ │ ├── daily_actives.rb │ │ ├── engaged_users.rb │ │ ├── influence_count.rb │ │ ├── kpi.rb │ │ ├── live_products.rb │ │ ├── mixpanel.rb │ │ ├── new_users.rb │ │ ├── partners.rb │ │ ├── percentage.rb │ │ ├── product_uniques.rb │ │ ├── product_uniques_cache.rb │ │ ├── raw_number.rb │ │ └── retention.rb │ ├── metrics_aggregator.rb │ ├── milestone.rb │ ├── milestone_image.rb │ ├── milestone_task.rb │ ├── monthly_metric.rb │ ├── muting.rb │ ├── news_feed.rb │ ├── news_feed_item.rb │ ├── news_feed_item_comment.rb │ ├── news_feed_item_post.rb │ ├── newsletter.rb │ ├── offer.rb │ ├── ownership_status.rb │ ├── partner.rb │ ├── pitch_week_application.rb │ ├── platform_metric.rb │ ├── post.rb │ ├── product.rb │ ├── product_contributions.rb │ ├── product_metric.rb │ ├── product_ownership.rb │ ├── product_redirector.rb │ ├── product_stats.rb │ ├── product_trend.rb │ ├── profit_report.rb │ ├── proposal.rb │ ├── query_marks.rb │ ├── read_raptor_client.rb │ ├── read_raptor_serializer.rb │ ├── repo │ │ └── github.rb │ ├── room.rb │ ├── saved_search.rb │ ├── screenshot.rb │ ├── search │ │ ├── product_search.rb │ │ ├── sanitizer.rb │ │ ├── search_filter.rb │ │ ├── state_filter.rb │ │ ├── tech_filter.rb │ │ ├── totals.rb │ │ └── wip_search.rb │ ├── secure_reply_to.rb │ ├── seven_day_mvp.rb │ ├── showcase.rb │ ├── showcase_entry.rb │ ├── slack_notifier.rb │ ├── slackpipe_payload.rb │ ├── staff_constraint.rb │ ├── stake │ │ ├── allocation_event.rb │ │ └── allocation_run.rb │ ├── static_content_group.rb │ ├── status_message.rb │ ├── story.rb │ ├── story_sentences.rb │ ├── stream_event.rb │ ├── stream_events │ │ ├── allocate_task.rb │ │ ├── close_discussion.rb │ │ ├── close_task.rb │ │ ├── create_comment.rb │ │ ├── create_discussion.rb │ │ ├── create_product.rb │ │ ├── create_task.rb │ │ ├── demote_task.rb │ │ ├── promote_discussion.rb │ │ ├── promote_task.rb │ │ ├── reviewable_task.rb │ │ ├── signup_vote.rb │ │ ├── unallocate_task.rb │ │ ├── win_win.rb │ │ ├── work_code_added.rb │ │ ├── work_copy_added.rb │ │ ├── work_design_deliverable.rb │ │ └── work_work.rb │ ├── subscriber.rb │ ├── task.rb │ ├── team_membership.rb │ ├── team_membership_interest.rb │ ├── text_filters │ │ ├── asset_inline_filter.rb │ │ ├── img_thumbnail_filter.rb │ │ ├── markdown_filter.rb │ │ ├── no_follow_links_filter.rb │ │ ├── shortcut_filter.rb │ │ ├── task_list_filter.rb │ │ └── user_mention_filter.rb │ ├── textcomplete_search.rb │ ├── tip.rb │ ├── tip_contract.rb │ ├── top_bounty.rb │ ├── top_product.rb │ ├── topic.rb │ ├── transaction_log_entry.rb │ ├── transaction_log_report.rb │ ├── tweet_prep.rb │ ├── tweeter.rb │ ├── type_id.rb │ ├── unique.rb │ ├── unread_chat.rb │ ├── updates_wip.rb │ ├── user.rb │ ├── user │ │ ├── balance.rb │ │ ├── balance_entry.rb │ │ ├── bitcoin_payment_option.rb │ │ ├── debit_payment_option.rb │ │ ├── payment_option.rb │ │ ├── tag.rb │ │ ├── tax_info.rb │ │ ├── w8_ben.rb │ │ ├── w9.rb │ │ └── withdrawal.rb │ ├── user_contribution.rb │ ├── user_identity.rb │ ├── version.rb │ ├── vesting.rb │ ├── viewing.rb │ ├── vote.rb │ ├── watching.rb │ ├── weekly_metric.rb │ ├── wip.rb │ ├── wip │ │ ├── tag.rb │ │ ├── tagging.rb │ │ └── worker.rb │ ├── wip_contracts.rb │ ├── wip_factory.rb │ ├── wip_group.rb │ ├── withholding.rb │ ├── work.rb │ ├── work_contracts.rb │ └── work_factory.rb ├── serializers │ ├── activity_analytics_serializer.rb │ ├── activity_serializer.rb │ ├── app_admin_serializer.rb │ ├── app_serializer.rb │ ├── application_serializer.rb │ ├── asset_serializer.rb │ ├── attachment_serializer.rb │ ├── auto_tip_contract_serializer.rb │ ├── avatar_serializer.rb │ ├── award_serializer.rb │ ├── bounty_api_serializer.rb │ ├── bounty_list_serializer.rb │ ├── bounty_posting_serializer.rb │ ├── bounty_serializer.rb │ ├── bounty_shallow_serializer.rb │ ├── chat_room_serializer.rb │ ├── coin_info_serializer.rb │ ├── comment_serializer.rb │ ├── copy_deliverable_serializer.rb │ ├── dashboard_serializer.rb │ ├── design_deliverable_serializer.rb │ ├── discussion_analytics_serializer.rb │ ├── discussion_serializer.rb │ ├── event │ │ ├── code_added_serializer.rb │ │ ├── comment_reference_serializer.rb │ │ ├── comment_serializer.rb │ │ ├── commit_reference_serializer.rb │ │ ├── copy_added_serializer.rb │ │ ├── design_deliverable_serializer.rb │ │ ├── pull_request_reference_serializer.rb │ │ ├── tag_change_serializer.rb │ │ ├── title_change_serializer.rb │ │ ├── type_change_serializer.rb │ │ └── win_serializer.rb │ ├── event_analytics_serializer.rb │ ├── event_serializer.rb │ ├── financial │ │ ├── account_serializer.rb │ │ ├── amount_serializer.rb │ │ └── transaction_serializer.rb │ ├── heart_comment_serializer.rb │ ├── heart_nfi_serializer.rb │ ├── heart_serializer.rb │ ├── idea_analytics_serializer.rb │ ├── idea_serializer.rb │ ├── integration_serializer.rb │ ├── invite_serializer.rb │ ├── list_serializer.rb │ ├── member_serializer.rb │ ├── news_feed_item_comment_serializer.rb │ ├── news_feed_item_post_serializer.rb │ ├── news_feed_item_serializer.rb │ ├── offer_serializer.rb │ ├── org_serializer.rb │ ├── pagination_serializer.rb │ ├── partner_serializer.rb │ ├── post_serializer.rb │ ├── product_analytics_serializer.rb │ ├── product_governance_serializer.rb │ ├── product_ownership_api_serializer.rb │ ├── product_ranking_serializer.rb │ ├── product_serializer.rb │ ├── product_shallow_serializer.rb │ ├── product_update_serializer.rb │ ├── profit_report_serializer.rb │ ├── proposal_serializer.rb │ ├── readraptor_trackable.rb │ ├── screenshot_serializer.rb │ ├── short_activity_serializer.rb │ ├── showcase_serializer.rb │ ├── slack_activity_serializer.rb │ ├── story │ │ └── task_serializer.rb │ ├── story_serializer.rb │ ├── task_serializer.rb │ ├── team_membership_serializer.rb │ ├── timeline_story_serializer.rb │ ├── tip_serializer.rb │ ├── tippable_serializer.rb │ ├── translation_serializer.rb │ ├── unread_serializer.rb │ ├── user │ │ └── balance_entry_serializer.rb │ ├── user_analytics_serializer.rb │ ├── user_api_serializer.rb │ ├── user_core_api_serializer.rb │ ├── user_overview_api_serializer.rb │ ├── user_serializer.rb │ ├── user_with_balance_serializer.rb │ ├── vesting_serializer.rb │ ├── wip_analytics_serializer.rb │ ├── wip_detail_serializer.rb │ ├── wip_hot_serializer.rb │ ├── wip_search_serializer.rb │ ├── wip_serializer.rb │ ├── wip_tag_serializer.rb │ ├── wip_tagging_serializer.rb │ └── work_serializer.rb ├── templates │ ├── activities │ │ ├── assign.mustache │ │ ├── comment.mustache │ │ ├── create_contract.mustache │ │ ├── create_core_team_membership.mustache │ │ ├── destroy_contract.mustache │ │ ├── found_product.mustache │ │ ├── git_push.mustache │ │ ├── introduce.mustache │ │ ├── join.mustache │ │ ├── launch.mustache │ │ ├── start.mustache │ │ └── update_contract.mustache │ └── events │ │ ├── allocations │ │ └── _allocation.mustache │ │ ├── closes │ │ └── _close.mustache │ │ ├── code_addeds │ │ └── _code_added.mustache │ │ ├── comment_references │ │ └── _comment_reference.mustache │ │ ├── comments │ │ └── _comment.mustache │ │ ├── commit_references │ │ └── _commit_reference.mustache │ │ ├── copy_addeds │ │ └── _copy_added.mustache │ │ ├── demotions │ │ └── _demotion.mustache │ │ ├── design_deliverables │ │ └── _design_deliverable.mustache │ │ ├── promotions │ │ └── _promotion.mustache │ │ ├── pull_request_references │ │ └── _pull_request_reference.mustache │ │ ├── rejections │ │ └── _rejection.mustache │ │ ├── reopens │ │ └── _reopen.mustache │ │ ├── review_readies │ │ └── _review_ready.mustache │ │ ├── tag_changes │ │ └── _tag_change.mustache │ │ ├── title_changes │ │ └── _title_change.mustache │ │ ├── type_changes │ │ └── _type_change.mustache │ │ ├── unallocations │ │ └── _unallocation.mustache │ │ └── wins │ │ └── _win.mustache ├── views │ ├── admin │ │ ├── _navbar.html.erb │ │ ├── apps │ │ │ └── index.html.erb │ │ ├── asset_history │ │ │ └── index.html │ │ ├── bitcoin │ │ │ └── index.html │ │ ├── bounties │ │ │ └── index.html.erb │ │ ├── karma │ │ │ └── index.html │ │ ├── karmahistory │ │ │ └── index.html │ │ ├── leaderboard │ │ │ └── index.html │ │ ├── newsletters │ │ │ └── index.html.erb │ │ ├── ownership │ │ │ └── index.html.erb │ │ ├── pitch_week_applications │ │ │ └── index.html.erb │ │ ├── product_rankings │ │ │ └── index.html.erb │ │ ├── profit_reports │ │ │ ├── index.html.erb │ │ │ └── show.html.erb │ │ ├── staff_picks │ │ │ └── index.html.erb │ │ ├── tags │ │ │ └── index.html.erb │ │ ├── user │ │ │ ├── bitcoin_payment_options │ │ │ │ └── _bitcoin_payment_option.html.erb │ │ │ └── debit_payment_options │ │ │ │ └── _debit_payment_option.html.erb │ │ ├── user_books │ │ │ └── index.html │ │ ├── users │ │ │ └── index.html.erb │ │ ├── wips │ │ │ └── index.html.erb │ │ └── withdrawals │ │ │ └── index.html.erb │ ├── analytics │ │ └── _identify.html.erb │ ├── apps │ │ └── index.html.erb │ ├── assets │ │ ├── _asset.html.erb │ │ ├── index.html.erb │ │ └── new.html.erb │ ├── award_mailer │ │ └── pending_award.html.erb │ ├── awards │ │ └── show.html.erb │ ├── badge_mailer │ │ └── first_win.html.erb │ ├── bounties │ │ ├── _comment_attachment_store.html.erb │ │ ├── index.html.erb │ │ └── show.html.erb │ ├── chat_rooms │ │ ├── _chat_messages_store.html.erb │ │ ├── _people_store.html.erb │ │ └── show.html.erb │ ├── comment_mailer │ │ ├── mentioned.html.erb │ │ ├── new_comment.html.erb │ │ └── url_test.html.erb │ ├── contracts │ │ └── index.html.erb │ ├── core_team_mailer │ │ ├── featured_work.markerb │ │ └── welcome.markerb │ ├── dashboard │ │ └── index.html.erb │ ├── digest_mailer │ │ ├── _header.html.erb │ │ ├── _product_of_the_week.html.erb │ │ ├── _trending_ideas.html.erb │ │ ├── showcase.html.erb │ │ └── weekly.html.erb │ ├── discussions │ │ └── _chat_box.html.erb │ ├── domain_mailer │ │ ├── purchase_application.text.erb │ │ └── transfer_failed.text.erb │ ├── emails │ │ ├── _empty_spacer.html.erb │ │ ├── _timeline_spacer.html.erb │ │ └── _timeline_timestamp.html.erb │ ├── errors │ │ ├── error.html.erb │ │ ├── maintenance.html.erb │ │ └── not_found.html.erb │ ├── facebook │ │ └── channel.html │ ├── faq_groups │ │ ├── basics.md │ │ ├── building.md │ │ ├── community.md │ │ ├── launching.md │ │ ├── migrating.md │ │ ├── platform.md │ │ ├── privacy.md │ │ ├── revenue.md │ │ └── terms.md │ ├── financials │ │ ├── _expense_modal.html.erb │ │ ├── _nav.html.erb │ │ ├── index.html.erb │ │ └── transactions.html.erb │ ├── governance │ │ └── index.html.erb │ ├── guides │ │ └── index.html.erb │ ├── guides_groups │ │ ├── accepting-payments.md │ │ ├── blockchain.md │ │ ├── domains.md │ │ ├── expenses.md │ │ ├── getting-paid.md │ │ ├── idea-submission-rules.md │ │ ├── ownership.md │ │ ├── platform.md │ │ ├── product-management.md │ │ ├── starting-android.md │ │ ├── starting-ios.md │ │ ├── starting-web.md │ │ ├── tips.md │ │ ├── transferring-android.md │ │ ├── transferring-ios.md │ │ └── transferring-web.md │ ├── heart_mailer │ │ └── hearts_received.html.erb │ ├── hellos │ │ └── show.html.erb │ ├── hot_bounties │ │ └── show.html.erb │ ├── idea_mailer │ │ └── congratulate_on_greenlight.html.erb │ ├── ideas │ │ ├── admin.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── start_conversation.html.erb │ ├── invite_mailer │ │ └── invited.html.erb │ ├── layouts │ │ ├── admin.html.erb │ │ ├── application.html.erb │ │ ├── email.html.erb │ │ ├── email_tile.html.erb │ │ ├── ideas.html.erb │ │ ├── mail │ │ │ ├── default.erb │ │ │ ├── newsletter.html.erb │ │ │ └── wip_mailer.html.erb │ │ ├── new_email.html.erb │ │ ├── product.html.erb │ │ └── static.html.erb │ ├── metrics │ │ ├── _snippet.html.erb │ │ ├── index.html.erb │ │ └── snippet.html.erb │ ├── news_feed_item_posts │ │ └── show.html.erb │ ├── news_feed_items │ │ ├── _archived_news_feed_items_store.html.erb │ │ ├── _heartables_store.html.erb │ │ ├── _news_feed_items_store.html.erb │ │ └── index.html.erb │ ├── newsletter_mailer │ │ └── published.html.erb │ ├── notifications │ │ └── index.json.jbuilder │ ├── pages │ │ ├── about.html.erb │ │ ├── badges.html.erb │ │ ├── core_team_content.markdown │ │ ├── focus_home.html.erb │ │ ├── getting-started.html.erb │ │ ├── home.html.erb │ │ ├── styleguide.html │ │ ├── tos.html.erb │ │ └── tos_content.markdown │ ├── partners │ │ └── index.html.erb │ ├── partnership_mailer │ │ └── create.html.erb │ ├── payments │ │ └── index.html.erb │ ├── people │ │ ├── _nav.html.erb │ │ └── index.html.erb │ ├── pitch_week │ │ └── _chip.html.erb │ ├── pitch_week_mailer │ │ └── awaiting_approval.html.erb │ ├── playground │ │ └── product_stage_1.html.erb │ ├── post_mailer │ │ ├── created.html.erb │ │ └── mailing_list.html.erb │ ├── posts │ │ ├── _post.html.erb │ │ ├── _posts_store.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ ├── product_mailer │ │ ├── congrats_on_your_first_user.markerb │ │ ├── congratulate_on_signups.html.erb │ │ ├── flagged.html.erb │ │ ├── idea_process_update.markerb │ │ ├── new_introduction.html.erb │ │ ├── new_subscriber.html.erb │ │ ├── new_subscriber_with_account.html.erb │ │ ├── notify_core_team.html.erb │ │ ├── saved_search_created.markerb │ │ ├── stale_wips.html.erb │ │ └── status_update.html.erb │ ├── products │ │ ├── _alert.html.erb │ │ ├── _applied_for_pitch_week.html.erb │ │ ├── _assets_error.html.erb │ │ ├── _assets_granted.html.erb │ │ ├── _card.html.erb │ │ ├── _latest_blog_post.html.erb │ │ ├── _no_bounty_description.html.erb │ │ ├── _product_followers_store.html.erb │ │ ├── _product_store.html.erb │ │ ├── _products_store.html.erb │ │ ├── _stealth_reminder.html.erb │ │ ├── admin.html.erb │ │ ├── chips │ │ │ ├── _greenlit.html.erb │ │ │ └── _team_building.html.erb │ │ ├── edit.html.erb │ │ ├── flag.html.erb │ │ ├── git │ │ │ ├── license.text.erb │ │ │ └── readme.markdown.erb │ │ ├── import.html.erb │ │ ├── new.html.erb │ │ ├── plan.html.erb │ │ ├── show.html.erb │ │ ├── start.html.erb │ │ ├── trust.html.erb │ │ └── welcome.html.erb │ ├── projects │ │ ├── _feature_image.html.erb │ │ ├── _header.html.erb │ │ ├── _help_module.html.erb │ │ ├── _milestone.html.erb │ │ ├── _project.html.erb │ │ ├── _task_list.html.erb │ │ ├── _tasks.html.erb │ │ ├── add.js.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ ├── proposals │ │ ├── index.html.erb │ │ └── show.html.erb │ ├── questions │ │ └── index.html.erb │ ├── repositories │ │ └── index.html.erb │ ├── resources │ │ └── index.html.erb │ ├── shared │ │ ├── _analytics.html.erb │ │ ├── _error_messages.erb │ │ ├── _facebook.html.erb │ │ ├── _fancy_icons.html.erb │ │ ├── _flash.html.erb │ │ ├── _footer.html.erb │ │ ├── _footer_nav.html.erb │ │ ├── _google_fonts.html.erb │ │ ├── _hn_button.html.erb │ │ ├── _navbar.html.erb │ │ ├── _olark.html.erb │ │ ├── _pagination_store.html.erb │ │ ├── _pusher.html.erb │ │ ├── _repo.html.erb │ │ ├── _social_media_meta_tags.html.erb │ │ ├── _track_page_viewed.html.erb │ │ ├── _twitter.html.erb │ │ ├── _welcome.html.erb │ │ └── mail │ │ │ ├── activities_chats │ │ │ └── _description.html.erb │ │ │ ├── news_feed_item_comments │ │ │ ├── _description.html.erb │ │ │ └── _entry.html.erb │ │ │ └── news_feed_items │ │ │ ├── _description.html.erb │ │ │ └── _entry.html.erb │ ├── showcase_mailer │ │ ├── product_is_featured.markerb │ │ ├── product_soon_to_be_featured.markerb │ │ └── scheduled.markerb │ ├── stake_mailer │ │ └── coin_balance.html.erb │ ├── suggestion_mailer │ │ └── create.html.erb │ ├── team_building_mailer │ │ ├── failure.html.erb │ │ └── success.html.erb │ ├── team_memberships │ │ └── show.html.erb │ ├── text_mailer │ │ └── pitch_week_intro.text.erb │ ├── tilt_mailer │ │ └── create.html.erb │ ├── tip_mailer │ │ ├── activities │ │ │ ├── chats │ │ │ │ └── _chat.html.erb │ │ │ └── introduces │ │ │ │ └── _introduce.html.erb │ │ ├── event │ │ │ └── comments │ │ │ │ └── _comment.html.erb │ │ ├── news_feed_item_comments │ │ │ └── _news_feed_item_comment.html.erb │ │ └── tipped.html.erb │ ├── unread_mailer │ │ └── unread_content.html.erb │ ├── user │ │ ├── balance_entries │ │ │ └── _balance_entry.html.erb │ │ └── withdrawals │ │ │ └── _withdrawal.html.erb │ ├── user_balance_mailer │ │ ├── new_balance.html.erb │ │ └── withdrawal_created.text.erb │ ├── user_mailer │ │ ├── bounty_holding_incoming.html.erb │ │ ├── bounty_holding_incoming_take2.html.erb │ │ ├── featured_wips.markerb │ │ ├── featured_work_apology.markerb │ │ ├── follow_up.markerb │ │ ├── joined_team_no_introduction_yet.html.erb │ │ ├── remind_user_of_their_claimed_work.markerb │ │ ├── reset_password_instructions.html.erb │ │ └── twelve_hour_reminder.html.erb │ ├── users │ │ ├── _assets.html.erb │ │ ├── _card.html.erb │ │ ├── _inline.html.erb │ │ ├── _karma.html.erb │ │ ├── _more_button.html.erb │ │ ├── _overview.html.erb │ │ ├── _signup_form_store.html.erb │ │ ├── _user_store.html.erb │ │ ├── _user_subscriptions.html.erb │ │ ├── assets.html.erb │ │ ├── avatars │ │ │ ├── _default.html.erb │ │ │ └── _sm.html.erb │ │ ├── balances │ │ │ └── show.html.erb │ │ ├── edit.html.erb │ │ ├── karma.html │ │ ├── passwords │ │ │ ├── edit.html.erb │ │ │ └── new.html.erb │ │ ├── payment_options │ │ │ ├── _bitcoin_fields.html.erb │ │ │ ├── _debit_fields.html.erb │ │ │ ├── _form.html.erb │ │ │ └── show.html.erb │ │ ├── registrations │ │ │ ├── _confirmation.erb │ │ │ ├── edit.html.erb │ │ │ └── new.html.erb │ │ ├── sessions │ │ │ └── new.html.erb │ │ ├── show.html.erb │ │ └── tax_infos │ │ │ ├── _form.html.erb │ │ │ ├── _w8ben_fields.html.erb │ │ │ ├── _w9_fields.html.erb │ │ │ └── show.html.erb │ ├── wip_mailer │ │ ├── wip_created.html.erb │ │ ├── wip_created.text.erb │ │ ├── wip_event_close.markerb │ │ ├── wip_event_comment.html.erb │ │ ├── wip_event_commit_reference.markerb │ │ ├── wip_event_reopen.markerb │ │ ├── wip_event_win.html.erb │ │ └── wip_event_win.text.erb │ └── wips │ │ ├── _bounties_store.html.erb │ │ ├── _discussion.html.erb │ │ ├── _people_store.html.erb │ │ ├── award.js.erb │ │ ├── edit.html.erb │ │ └── new.html.erb └── workers │ ├── add_mark_identity.rb │ ├── adjust_markings.rb │ ├── api_worker.rb │ ├── apply_for_pitch_week.rb │ ├── asm_track_unique_worker.rb │ ├── assembly_coin │ ├── assign_bitcoin_key_pair_worker.rb │ ├── award_coins.rb │ ├── blockchain_update_product.rb │ ├── create_coin.rb │ ├── greenlight_product.rb │ ├── maintain_btc_balance.rb │ ├── transactions_on_blockchain.rb │ └── worker.rb │ ├── coins_minted.rb │ ├── create_chat_message.rb │ ├── create_product.rb │ ├── create_project.rb │ ├── delete_user_account.rb │ ├── deliver_unread_email.rb │ ├── dnsimple │ ├── client.rb │ └── start_domain_transfer.rb │ ├── extract_colors_from_attachment.rb │ ├── fetch_google_analytics.rb │ ├── find_mentioned_users.rb │ ├── github │ ├── add_collaborator_to_product_repo_worker.rb │ ├── create_product_repo_worker.rb │ ├── pull_request_known_user_worker.rb │ ├── update_commit_count.rb │ └── worker.rb │ ├── give_coins_to_participants.rb │ ├── governance_worker.rb │ ├── indexer.rb │ ├── landline_bridge_worker.rb │ ├── link_github_account.rb │ ├── mailgun │ └── client.rb │ ├── mark_chat_room_as_read.rb │ ├── mark_vector_from_text.rb │ ├── minter_worker.rb │ ├── monsoon_worker.rb │ ├── notify_mentions.rb │ ├── notify_online_worker.rb │ ├── notify_subscribers.rb │ ├── payments_worker.rb │ ├── post_chat_message.rb │ ├── publish_activity.rb │ ├── push_mention.rb │ ├── pusher_worker.rb │ ├── read_raptor │ ├── client.rb │ ├── read_article.rb │ └── register_article_worker.rb │ ├── register_article_with_recipients.rb │ ├── register_event_in_readraptor.rb │ ├── regroup_stories.rb │ ├── request_info.rb │ ├── set_mail_records_in_dnsimple_and_mailgun.rb │ ├── slackhook_worker.rb │ ├── slackpipe_worker.rb │ ├── track_acknowledgements.rb │ ├── track_activity_created.rb │ ├── track_engaged.rb │ ├── track_heart_received.rb │ ├── track_influenced.rb │ ├── track_vested.rb │ ├── tweet_worker.rb │ ├── update_core_team_email_forwards.rb │ ├── update_product_metrics.rb │ ├── username_rename_worker.rb │ ├── view_worker.rb │ └── webhook_worker.rb ├── bin ├── autospec ├── bundle ├── npm-watch ├── rails ├── rake ├── rspec ├── setup └── spring ├── config.ru ├── config ├── application.rb ├── boot.rb ├── database.yml.sample ├── database.yml.travis ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── 1_redis.rb │ ├── active_record_random_extension.rb │ ├── analytics_ruby.rb │ ├── attachment_upload.rb │ ├── bugsnag.rb │ ├── csv_renderer.rb │ ├── database_connection.rb │ ├── devise.rb │ ├── elasticsearch.rb │ ├── features.rb │ ├── filter_parameter_logging.rb │ ├── hogan.rb │ ├── kaminari_config.rb │ ├── mail_redirect.rb │ ├── markerb.rb │ ├── oink.rb │ ├── omniauth.rb │ ├── secret_token.rb │ ├── serializers.rb │ ├── session_store.rb │ ├── sidekiq.rb │ ├── split.rb │ └── stripe.rb ├── locales │ ├── activerecord │ │ └── en.yml │ ├── devise.en.yml │ ├── domains │ │ └── en.yml │ ├── en.yml │ ├── showcases │ │ └── showcases.en.yml │ └── stories │ │ └── stories.en.yml ├── newrelic.yml ├── routes.rb └── skylight.yml ├── db ├── development_seeds.rb ├── migrate │ ├── 20130618233934_create_users.rb │ ├── 20130619005108_add_user_id_to_ideas.rb │ ├── 20130624234229_create_presales.rb │ ├── 20130628015619_create_email_logs.rb │ ├── 20130702194635_add_email_confirmable_to_users.rb │ ├── 20130704031919_add_lead_to_ideas.rb │ ├── 20130708004631_rename_username_to_name.rb │ ├── 20130708175921_add_view_count_to_ideas.rb │ ├── 20130708212334_add_facebook_uid_to_users.rb │ ├── 20130711201252_create_votes.rb │ ├── 20130711202942_add_votes_remaining_to_users.rb │ ├── 20130711213933_add_vote_id_to_presales.rb │ ├── 20130712221129_add_suggested_perks_to_ideas.rb │ ├── 20130712230400_create_perks.rb │ ├── 20130714065340_remove_votes_remaining_from_users.rb │ ├── 20130715233624_remove_unique_index_on_user_name.rb │ ├── 20130716232811_add_user_to_presale.rb │ ├── 20130716233322_change_presale_last4_to_card_id.rb │ ├── 20130717225354_remove_card_last4_on_user.rb │ ├── 20130717232730_add_idea_id_to_presale.rb │ ├── 20130717233713_add_poster_image_to_idea.rb │ ├── 20130717234910_create_work_applications.rb │ ├── 20130718224824_create_features.rb │ ├── 20130719211510_remove_presale.rb │ ├── 20130720000536_create_likes.rb │ ├── 20130722195740_add_location_to_users.rb │ ├── 20130725231651_add_last_request_at_to_users.rb │ ├── 20130725232408_make_lead_text.rb │ ├── 20130726222805_add_name_to_perks.rb │ ├── 20130729201003_create_products.rb │ ├── 20130729212909_create_wips.rb │ ├── 20130730011901_make_votes_polymorphic.rb │ ├── 20130730015128_add_number_to_wips.rb │ ├── 20130730184851_create_comments.rb │ ├── 20130731182944_add_avatar_url_to_member.rb │ ├── 20130731224035_add_profile_data_to_users.rb │ ├── 20130804233958_add_closed_at_to_wips.rb │ ├── 20130806184605_add_authentication_token_to_users.rb │ ├── 20130814200824_add_bio_to_users.rb │ ├── 20130816035457_drop_likes.rb │ ├── 20130816040327_add_counter_caches_for_votes.rb │ ├── 20130819220310_add_evaluated_by_to_ideas.rb │ ├── 20130821173001_change_presales_to_preorders.rb │ ├── 20130826205038_change_comments_to_events.rb │ ├── 20130826214530_add_event_id_to_events.rb │ ├── 20130826215113_change_wip_winner_from_user_to_event.rb │ ├── 20130827001542_create_watchings.rb │ ├── 20130829212111_add_labels_to_wips.rb │ ├── 20130830190023_move_wip_body_to_comment.rb │ ├── 20130830190224_remove_wip_body.rb │ ├── 20130830190744_index_labels.rb │ ├── 20130830202529_rename_upvote_counter_caches.rb │ ├── 20130830204043_remove_amount_from_votes.rb │ ├── 20130830222455_uniqify_votes.rb │ ├── 20130904003312_remove_votes_index.rb │ ├── 20130905021611_add_number_index_to_events.rb │ ├── 20130906230241_add_promoted_at_to_wips.rb │ ├── 20130909211722_create_product_statuses.rb │ ├── 20130911174648_change_user_tags_to_archetype.rb │ ├── 20130912174727_uniqify_votes_again.rb │ ├── 20130912182656_labels_to_tags.rb │ ├── 20130918235111_add_events_count_to_wips.rb │ ├── 20130921002523_ideas_become_products.rb │ ├── 20130924213601_add_greenlit_at_to_products.rb │ ├── 20131008222611_add_variation_to_preorders.rb │ ├── 20131016211955_create_core_team_memberships.rb │ ├── 20131018205921_add_username_to_users.rb │ ├── 20131023161514_add_free_perk_to_products.rb │ ├── 20131024223902_add_comments_counter_to_wips.rb │ ├── 20131027213654_create_subscriptions.rb │ ├── 20131030011451_create_versions.rb │ ├── 20131030212954_add_code_repo.rb │ ├── 20131030214015_add_send_digests_to_users.rb │ ├── 20131031043257_add_mail_preference_to_users.rb │ ├── 20131031213516_create_wip_workers.rb │ ├── 20131103234639_add_github_uid_to_users.rb │ ├── 20131106031400_add_pinned_at_to_wips.rb │ ├── 20131106233418_add_trending_score_to_wips.rb │ ├── 20131108201450_create_whiteboard_assets.rb │ ├── 20131113034728_add_deleted_at_to_whiteboard_assets.rb │ ├── 20131114184744_add_state_to_wips.rb │ ├── 20131115073907_add_watching_counter_to_wips.rb │ ├── 20131115161812_add_watching_counter_to_products.rb │ ├── 20131119183824_create_activities.rb │ ├── 20131119195143_add_watchings_count_to_wip_tags.rb │ ├── 20131126191931_add_repos_to_product.rb │ ├── 20131126204851_remove_code_repo_url_from_products.rb │ ├── 20131127232703_create_attachments.rb │ ├── 20131219001406_create_financial_accounts.rb │ ├── 20131219020436_create_amounts.rb │ ├── 20131219020959_create_transactions.rb │ ├── 20131220012012_add_title_to_status_updates.rb │ ├── 20131231185650_create_allocation_runs.rb │ ├── 20140102215815_create_allocation_events.rb │ ├── 20140107221350_add_paypal_details_to_users.rb │ ├── 20140107222642_add_bank_details_to_users.rb │ ├── 20140109013008_add_address_country_to_users.rb │ ├── 20140110232723_rename_wips_to_discussions.rb │ ├── 20140115013239_add_deliverable_to_wips.rb │ ├── 20140116011059_create_deliverables.rb │ ├── 20140116021802_add_reminder_timestamps_to_wip_workers.rb │ ├── 20140116233405_fix_bad_wip_worker_migration.rb │ ├── 20140117034635_create_copy_deliverables.rb │ ├── 20140117234759_create_code_deliverables.rb │ ├── 20140127215234_create_metrics.rb │ ├── 20140127232751_create_measurement.rb │ ├── 20140128012131_add_authentication_token_to_products.rb │ ├── 20140128015222_add_unique_index_to_authentication_token_on_products.rb │ ├── 20140128015223_require_products_authentication_token_to_not_be_null.rb │ ├── 20140130005646_enable_featuring.rb │ ├── 20140130011957_add_tech_stack_to_products.rb │ ├── 20140130052631_create_completed_missions.rb │ ├── 20140130191436_add_can_advertise_to_products.rb │ ├── 20140204224256_change_products_to_make_slug_required.rb │ ├── 20140206035752_remove_default_poster_from_products.rb │ ├── 20140206191340_add_completor_to_completed_missions.rb │ ├── 20140210222832_hide_flagged_products.rb │ ├── 20140210224439_flag_private_products.rb │ ├── 20140210231345_add_flag_reason.rb │ ├── 20140210234130_add_unique_index_to_core_team_membership.rb │ ├── 20140211220511_create_uniques.rb │ ├── 20140213190718_change_name_on_users_to_allow_null_values.rb │ ├── 20140214171042_change_column_is_staff_on_users_to_be_not_null.rb │ ├── 20140220231553_update_activity_verb_to_reference_target.rb │ ├── 20140221015943_add_follow_up_delivery_timestamp.rb │ ├── 20140221203556_change_follow_up_timestamp.rb │ ├── 20140224195325_add_slug_to_status_updates.rb │ ├── 20140224203525_add_product_id_to_activities.rb │ ├── 20140225215850_remap_activity_verbs.rb │ ├── 20140225231536_fill_in_old_activities.rb │ ├── 20140226154524_split_up_number_and_title.rb │ ├── 20140226174907_add_product_name_to_activity.rb │ ├── 20140227210031_rename_tech_stack.rb │ ├── 20140227213006_add_homepage_url_to_products.rb │ ├── 20140302232657_setup_uuid_ossp.rb │ ├── 20140303185827_create_messages.rb │ ├── 20140303221429_create_product_jobs.rb │ ├── 20140304194043_create_product_roles.rb │ ├── 20140304194623_create_status_messages.rb │ ├── 20140304212931_add_friendlyid_to_product_jobs.rb │ ├── 20140304235830_create_daily_actives.rb │ ├── 20140305225015_add_product_id_to_product_role.rb │ ├── 20140307223816_create_work.rb │ ├── 20140308001429_add_you_tube_video_url_to_products.rb │ ├── 20140310233015_add_vote_info_to_work.rb │ ├── 20140312172016_create_showcases.rb │ ├── 20140318211623_create_broadcasts.rb │ ├── 20140318214545_add_email_tracking_to_showcases.rb │ ├── 20140318222608_add_cancelled_at_to_broadcasts.rb │ ├── 20140322012418_create_transaction_log_entries.rb │ ├── 20140326181644_create_coin_days.rb │ ├── 20140326214231_create_auto_tip_contracts.rb │ ├── 20140326222625_feature_only_helpful.rb │ ├── 20140327175318_add_index_to_coin_days.rb │ ├── 20140401191109_add_twitter_columns_to_users.rb │ ├── 20140401215840_create_activity_stream.rb │ ├── 20140401223515_add_transaction_ids_to_transaction_log.rb │ ├── 20140402180549_create_tips.rb │ ├── 20140402220750_change_coin_day_from_amount_to_cents.rb │ ├── 20140403002647_add_cents_to_transaction_log_entries.rb │ ├── 20140403051747_drop_coin_days.rb │ ├── 20140404185301_create_milestones.rb │ ├── 20140404205338_create_milestone_tasks.rb │ ├── 20140405212308_create_product_shortcuts.rb │ ├── 20140407225411_merge_milestones_with_wips.rb │ ├── 20140410183708_add_unique_index_to_milestone_tasks.rb │ ├── 20140415235221_rename_broadcasts_to_newsletters.rb │ ├── 20140422052003_create_milestone_images.rb │ ├── 20140423175633_add_images_count_to_milestones.rb │ ├── 20140429214842_add_index_on_slug_to_products.rb │ ├── 20140430221817_create_saved_searches.rb │ ├── 20140501174749_add_commit_count_to_products.rb │ ├── 20140501175123_rename_status_updates_to_posts.rb │ ├── 20140501230216_update_type_change_to_store_from_to.rb │ ├── 20140509180530_remove_users_from_users.rb │ ├── 20140509210416_create_contract_holder.rb │ ├── 20140509213641_create_profit_reports.rb │ ├── 20140513182211_add_founded_at_to_products.rb │ ├── 20140514231856_add_revenue_and_expenses_to_profit_report.rb │ ├── 20140515003725_add_public_at_to_products.rb │ ├── 20140516001019_add_main_discussions_to_products.rb │ ├── 20140517002524_merge_all_discussions_together.rb │ ├── 20140523014420_add_watchings_index.rb │ ├── 20140525003146_create_real_activity_stream.rb │ ├── 20140526214839_migrate_comments_to_activities.rb │ ├── 20140529231041_add_recent_products_to_users.rb │ ├── 20140602205538_create_assets.rb │ ├── 20140603230136_update_activities_comments_to_subjects.rb │ ├── 20140605213141_add_multiplier_to_tasks.rb │ ├── 20140607223548_rename_product_shortcuts_to_rooms.rb │ ├── 20140609221750_create_team_memberships.rb │ ├── 20140609232557_create_interests.rb │ ├── 20140609232657_create_team_membership_interests.rb │ ├── 20140610204411_add_deleted_at_to_team_memberships.rb │ ├── 20140618035037_add_params_to_email_logs.rb │ ├── 20140618173903_add_via_type_to_tips.rb │ ├── 20140619214525_remove_jobs.rb │ ├── 20140620225153_create_invites.rb │ ├── 20140630221003_add_author_tip_to_wips.rb │ ├── 20140702173259_rename_user_id_to_wallet_id.rb │ ├── 20140707175031_add_logo_id_to_products.rb │ ├── 20140708163407_add_launched_at_to_products.rb │ ├── 20140709000744_create_product_trends.rb │ ├── 20140711191834_add_team_memberships_count_to_products.rb │ ├── 20140714213115_add_info_to_products.rb │ ├── 20140715200620_add_extra_to_invites.rb │ ├── 20140722194338_add_activities_for_wip_events.rb │ ├── 20140723000038_create_stories.rb │ ├── 20140723000455_add_story_id_to_activities.rb │ ├── 20140723001049_add_subscription_to_watchings.rb │ ├── 20140724184214_add_auto_subscribed_at_to_watching.rb │ ├── 20140725021606_add_remember_token_to_users.rb │ ├── 20140728231439_create_user_tax_infos.rb │ ├── 20140730011037_add_w8ben_fields_to_tax_infos.rb │ ├── 20140730232434_create_user_payment_options.rb │ ├── 20140731194126_add_indexes.rb │ ├── 20140804180451_add_debit_fields_to_payment_options.rb │ ├── 20140804202531_create_offers.rb │ ├── 20140805000220_create_user_balance_entries.rb │ ├── 20140805000613_add_coins_to_profit_reports.rb │ ├── 20140805210708_populate_offers.rb │ ├── 20140806221918_add_description_to_wips.rb │ ├── 20140807205950_create_withdrawals.rb │ ├── 20140809171241_add_unwatched_at_to_watching.rb │ ├── 20140813003428_add_primary_key_to_events.rb │ ├── 20140813201736_add_event_indexes.rb │ ├── 20140815003900_create_mailing_list.rb │ ├── 20140818212829_create_pitch_week_applications.rb │ ├── 20140818233207_add_bio_memberships_count_to_products.rb │ ├── 20140819183005_add_started_building_at_to_products.rb │ ├── 20140819184759_add_live_at_to_products.rb │ ├── 20140819193408_add_partners_count_to_products.rb │ ├── 20140819221800_fix_watchings_count.rb │ ├── 20140820004241_drop_mailing_lists.rb │ ├── 20140820004340_create_potential_users.rb │ ├── 20140821193036_fixing_daves_bad_migrations.rb │ ├── 20140821213403_create_global_interests.rb │ ├── 20140822182525_create_mutings.rb │ ├── 20140822231228_change_potential_users_to_subscribers.rb │ ├── 20140822235947_drop_global_interests.rb │ ├── 20140823000049_recreate_global_interests.rb │ ├── 20140823011709_move_announcement_onlies_to_subscribers.rb │ ├── 20140824225717_add_deleted_at_to_subscribers.rb │ ├── 20140825011334_drop_subscription_from_watchers.rb │ ├── 20140825011829_drop_watchings_count_from_wips.rb │ ├── 20140825185713_add_quality_to_products.rb │ ├── 20140826211304_create_chat_rooms.rb │ ├── 20140827001548_migrate_chat_to_chat_rooms.rb │ ├── 20140827184855_create_bounty_postings.rb │ ├── 20140828175016_move_first_bounty_comment_to_descriptions.rb │ ├── 20140902172818_remove_someday_urgency_multiplier.rb │ ├── 20140903223548_create_awards.rb │ ├── 20140904012629_allow_worker_id_to_be_null.rb │ ├── 20140904015114_create_expense_claims.rb │ ├── 20140904201436_create_expense_claim_attachments.rb │ ├── 20140906010602_create_assembly_assets.rb │ ├── 20140908202457_add_wallet_public_address_and_wallet_private_key_to_users.rb │ ├── 20140908202536_add_wallet_public_address_and_wallet_private_key_to_products.rb │ ├── 20140909002708_add_amount_to_assembly_assets.rb │ ├── 20140909021203_allow_asset_id_on_assembly_assets_to_be_null.rb │ ├── 20140909184220_add_promo_redeemed_at_to_assembly_assets.rb │ ├── 20140910011546_add_products_state_timestamps_to_products.rb │ ├── 20140910023237_remove_old_state_flags_from_products.rb │ ├── 20140910182617_correct_all_product_states.rb │ ├── 20140910194316_stagger_teambuilding_start_dates.rb │ ├── 20140911184707_add_index_to_activities_target_id.rb │ ├── 20140911185710_add_index_to_activities_story_id.rb │ ├── 20140911190821_add_index_to_watchings_for_products.rb │ ├── 20140915172856_add_flagged_at_to_posts.rb │ ├── 20140917162113_add_welcome_banner_dismissed_at_to_users.rb │ ├── 20140918141924_set_can_advertise_for_existing_products.rb │ ├── 20140922145717_add_index_to_last_request_at_on_users.rb │ ├── 20140922203150_add_indexes_to_transaction_log_entries.rb │ ├── 20140923184717_make_can_advertise_on_products_default_to_true.rb │ ├── 20140923232941_add_deleted_at_to_users.rb │ ├── 20140928233124_add_flagged_at_to_wips.rb │ ├── 20141002173457_add_coins_cache_to_wips.rb │ ├── 20141002173927_cache_coins_on_wips.rb │ ├── 20141003150843_add_state_to_products.rb │ ├── 20141003152458_move_product_state_into_state_field.rb │ ├── 20141003213711_change_started_teambuilding_at_to_started_team_building_at_on_products.rb │ ├── 20141006163311_create_interests_from_archetypes.rb │ ├── 20141013230132_add_btc_to_product.rb │ ├── 20141017220439_create_news_feed_items.rb │ ├── 20141017225249_create_news_feed_item_comments.rb │ ├── 20141024003957_add_uniq_index_to_balance_entries.rb │ ├── 20141025004451_change_news_feed_item_comments_body_to_text.rb │ ├── 20141025004717_add_popular_at_to_news_feed_items.rb │ ├── 20141028221809_remove_message_and_number_from_news_feed_items.rb │ ├── 20141028222032_create_news_feed_item_posts.rb │ ├── 20141031205809_create_integrations.rb │ ├── 20141103202945_add_url_to_news_feed_item_posts.rb │ ├── 20141103202946_create_domains.rb │ ├── 20141104192023_add_config_to_integrations.rb │ ├── 20141104213640_create_deeds.rb │ ├── 20141104223740_create_chronicles.rb │ ├── 20141105225711_create_btc_payments.rb │ ├── 20141109204337_add_watchings_count_to_wips.rb │ ├── 20141109204338_uniqify_watchings.rb │ ├── 20141109204339_migrate_mutes_to_watchings.rb │ ├── 20141110175909_change_karma_event_id_to_uuid.rb │ ├── 20141112233831_add_index_to_transaction_log_entries.rb │ ├── 20141113231300_create_kwests.rb │ ├── 20141114022912_create_hearts.rb │ ├── 20141114033449_add_locked_at_and_locked_by_to_wips.rb │ ├── 20141114225524_add_heart_caches.rb │ ├── 20141114232124_add_target_id_to_nfi_comments.rb │ ├── 20141117043011_create_marks.rb │ ├── 20141117043016_create_markings.rb │ ├── 20141118214532_create_ideas.rb │ ├── 20141120203028_add_startup_weekend_to_products.rb │ ├── 20141121193840_create_user_identities.rb │ ├── 20141124183625_create_viewings.rb │ ├── 20141125183748_remove_startup_weekend_from_products.rb │ ├── 20141126210828_create_top_bounties.rb │ ├── 20141126225620_add_attachments_to_events.rb │ ├── 20141126235932_add_float_weight_to_viewings.rb │ ├── 20141127015748_add_sent_at_to_hearts.rb │ ├── 20141202230722_add_hearts_count_to_activities.rb │ ├── 20141203211914_migrate_subscribers_to_followers.rb │ ├── 20141204021928_add_gravatar_columns_to_users.rb │ ├── 20141204200102_add_last_commented_at_to_news_feed_items.rb │ ├── 20141205010241_create_user_clusters.rb │ ├── 20141205010242_add_priority_to_wips.rb │ ├── 20141210182734_add_score_to_idea.rb │ ├── 20141210195533_remove_multiplier_from_wips.rb │ ├── 20141210224135_migrate_wip_watchings_to_news_feed_item_watchings.rb │ ├── 20141211224017_add_watchings_count_to_news_feed_items.rb │ ├── 20141212192148_change_user_clusters.rb │ ├── 20141212213316_add_uniq_index_to_nfis.rb │ ├── 20141213010255_create_product_metrics.rb │ ├── 20141213014603_remove_unique_index_on_product_metric.rb │ ├── 20141214165053_add_product_id_to_nfi_posts.rb │ ├── 20141216214510_add_product_id_to_activities_again.rb │ ├── 20141217002411_add_archived_at_to_news_feed_items.rb │ ├── 20141218003724_create_platform_metrics.rb │ ├── 20141218020529_add_comments_count_to_product_metric.rb │ ├── 20141222230955_create_mark_stems.rb │ ├── 20141222231433_add_mark_stem_id_to_marks.rb │ ├── 20141222233853_add_mark_count_to_mark_stems.rb │ ├── 20141223020714_breakdown_responsiveness_by_user_type.rb │ ├── 20141223202652_add_comments_count_to_news_feed_items.rb │ ├── 20141223225045_add_flagged_at_to_users.rb │ ├── 20141223231546_change_product_metric_columns.rb │ ├── 20141223235457_change_core_resp_column_type.rb │ ├── 20141224001651_fix_platform_metric_columns.rb │ ├── 20141231171025_add_moving_avg_activity_to_product_metrics.rb │ ├── 20150106200506_add_greenlit_at_to_ideas.rb │ ├── 20150107174916_create_proposals.rb │ ├── 20150107174925_create_choices.rb │ ├── 20150108190148_add_foreign_keys_to_comments.rb │ ├── 20150109223523_add_try_url_to_products.rb │ ├── 20150112061502_create_vestings.rb │ ├── 20150114002653_add_founder_preference_to_ideas.rb │ ├── 20150114020029_kill_mark_orphans.rb │ ├── 20150114021512_uniqify_markings.rb │ ├── 20150114214933_migrate_start_wip_to_post_wip.rb │ ├── 20150116232412_create_ownership_status.rb │ ├── 20150119172507_add_heart_counter_cache_to_wips.rb │ ├── 20150120194016_add_tilting_threshold_to_ideas.rb │ ├── 20150122004709_add_topics_to_ideas.rb │ ├── 20150122190700_add_dominant_colors_to_attachments.rb │ ├── 20150122210550_add_flagged_at_to_ideas.rb │ ├── 20150123160600_add_indexes_to_news_feed_item_comments.rb │ ├── 20150123161047_add_indexes_to_news_feed_items.rb │ ├── 20150123163508_add_index_to_transaction_log_entries_on_cents.rb │ ├── 20150123174043_add_index_to_top_products.rb │ ├── 20150123174233_update_indexes_on_news_feed_item_comments.rb │ ├── 20150123192359_add_topics_to_products.rb │ ├── 20150123193215_change_showcases_for_new_apps_page.rb │ ├── 20150123194247_create_showcase_entries.rb │ ├── 20150123202018_change_idea_topics_to_an_array.rb │ ├── 20150123204157_add_categories_to_ideas.rb │ ├── 20150126214402_add_wips_count_to_products.rb │ ├── 20150127003026_add_background_to_showcases.rb │ ├── 20150128204102_add_deleted_at_to_wips.rb │ ├── 20150128204342_add_deleted_at_to_products.rb │ ├── 20150128212544_add_deleted_at_to_events.rb │ ├── 20150128213925_add_deleted_at_to_ideas.rb │ ├── 20150202004906_create_screenshots.rb │ ├── 20150202220246_add_tips_total_to_news_feed_item_comments.rb │ ├── 20150205012712_track_tweet_status_on_ideas.rb │ ├── 20150208042236_add_deleted_at_to_attachments_assets_and_screenshots.rb │ ├── 20150210000653_add_subheadings_to_products.rb │ ├── 20150210224313_add_not_null_constraint_to_news_feed_item_target.rb │ ├── 20150212211001_add_showcase_banner_dismissed_at_to_users.rb │ ├── 20150217165046_create_mark_clusters.rb │ ├── 20150217234413_create_leader_positions.rb │ ├── 20150226232441_create_daily_metrics.rb │ ├── 20150227000741_add_asmlytics_key_to_products.rb │ ├── 20150227165449_add_coin_callout_viewed_at_to_users.rb │ ├── 20150302003313_create_weekly_metrics.rb │ ├── 20150303025006_add_asmlytics_untracked_accounts_to_products.rb │ ├── 20150305185755_rename_asmlytics_untracked_accounts_to_total_visitors.rb │ ├── 20150307003229_create_monthly_metrics.rb │ ├── 20150307012550_add_constraints_to_integrations.rb │ ├── 20150310015640_add_analytics_category_to_products.rb │ ├── 20150310212204_add_target_user_id_to_hearts.rb │ ├── 20150312205251_add_tentative_name_to_idea.rb │ ├── 20150312231554_update_awards_to_cache_coins.rb │ ├── 20150314000058_add_hearts_received_to_users.rb │ ├── 20150317225633_add_product_id_to_hearts.rb │ ├── 20150324182459_tilt_email_last_sent.rb │ ├── 20150324205010_add_total_visitors_to_ideas.rb │ ├── 20150325175251_add_order_to_bounties.rb │ ├── 20150327013821_prioritize_all_open_bounties.rb │ ├── 20150327203312_add_value_to_wips.rb │ ├── 20150330222515_add_coin_info.rb │ ├── 20150331180623_add_txhash_to_awards.rb │ ├── 20150331194114_set_value_as_earnable_coins.rb │ ├── 20150401205759_create_guests.rb │ ├── 20150403193900_add_guest_id_to_awards.rb │ ├── 20150406160722_add_trust_fields_to_products.rb │ ├── 20150406223416_combine_certain_trust_fields_on_products.rb │ ├── 20150406234442_make_bounties_value_not_null.rb │ ├── 20150407011939_add_metric_fields_to_monthly_metrics.rb │ ├── 20150409225349_add_beta_subscriber_at_to_users.rb │ ├── 20150410215557_add_reason_to_awards.rb │ └── 20150604194917_add_source_to_users.rb ├── schema.rb ├── seeds.rb └── seeds │ └── calmail.md ├── fig.yml ├── lib ├── active_model │ ├── currency.rb │ └── lists.rb ├── activerecord │ └── uuid.rb ├── avatar.rb ├── bounty_guidance │ └── valuations.rb ├── chat_migrator.rb ├── console_helpers.rb ├── core_ext │ └── time_ext.rb ├── dashboard_reporter.rb ├── errors_offline_template.rb ├── es_proxy.rb ├── ga_client.rb ├── github │ └── payload.rb ├── integrations │ ├── google.rb │ └── remote.rb ├── karma │ ├── kalkulate.rb │ ├── kronikler.rb │ └── kwesting.rb ├── mailgun │ └── rails.rb ├── marks │ ├── mark_basics.rb │ └── vector_math.rb ├── mixpanel_client.rb ├── money.rb ├── offline_template.rb ├── open_assets │ ├── balance_check.rb │ ├── blockchain_server.rb │ ├── cryptodata.rb │ ├── remote.rb │ ├── transactions.rb │ └── util.rb ├── poster_image.rb ├── randomize_all_the_things.rb ├── readraptor_tracker.rb ├── redis_cache.rb ├── s3_policy.rb ├── sidekiq │ └── middleware │ │ └── log_stats.rb ├── string_colors.rb ├── stripe_customer_ensurer.rb ├── tasks │ ├── activity.rake │ ├── awards.rake │ ├── blockchain.rake │ ├── bounties.rake │ ├── campaigns.rake │ ├── chat_rooms.rake │ ├── customerio.rake │ ├── db.rake │ ├── discussions.rake │ ├── domains.rake │ ├── emails.rake │ ├── es.rake │ ├── governance.rake │ ├── ideas.rake │ ├── jests.rake │ ├── js_routes.rake │ ├── leaderboard.rake │ ├── mailchimp.rake │ ├── markclusters.rake │ ├── marks.rake │ ├── metrics.rake │ ├── news_feed_items.rake │ ├── payments.rake │ ├── platform_metrics.rake │ ├── posts.rake │ ├── product_metrics.rake │ ├── products.rake │ ├── redis.rake │ ├── reporting.rake │ ├── rspec.rake │ ├── showcase.rake │ ├── static.rake │ ├── stats.rake │ ├── statwing.rake │ ├── stories.rake │ ├── suggestions.rake │ ├── trends.rake │ ├── tweets.rake │ ├── update_karma.rake │ └── user.rake ├── timed_set.rb ├── user_employment.rb ├── versioning.rb └── woeful_products.rb ├── package.json ├── public ├── 422.html ├── favicon.ico ├── google7be6163b6897b65a.html ├── googleadcfabc1b3b11322.html └── robots.txt ├── spec ├── controllers │ ├── admin │ │ ├── apps_controller_spec.rb │ │ ├── newsletters_controller_spec.rb │ │ ├── ownership_controller_spec.rb │ │ └── product_rankings_controller_spec.rb │ ├── api │ │ ├── awards_controller_spec.rb │ │ ├── bounties_controller_spec.rb │ │ ├── bounty_postings_controller_spec.rb │ │ ├── offers_controller_spec.rb │ │ ├── products_controller_spec.rb │ │ ├── subscribers_controller_spec.rb │ │ └── textcompletes_controller_spec.rb │ ├── assets_controller_spec.rb │ ├── attachments_controller_spec.rb │ ├── comments_controller_spec.rb │ ├── contracts_controller_spec.rb │ ├── core_team_members_controller_spec.rb │ ├── domains_controller_spec.rb │ ├── expense_claims_controller_spec.rb │ ├── github_controller_spec.rb │ ├── global_interests_controller_spec.rb │ ├── heartables_controller_spec.rb │ ├── integrations_controller_spec.rb │ ├── invites_controller_spec.rb │ ├── metrics_controller_spec.rb │ ├── news_feed_items_controller_spec.rb │ ├── pages_controller_spec.rb │ ├── partners_controller_spec.rb │ ├── people_controller_spec.rb │ ├── posts_controller_spec.rb │ ├── product_logos_controller_spec.rb │ ├── products_controller_spec.rb │ ├── projects_controller_spec.rb │ ├── repositories_controller_spec.rb │ ├── saved_searches_controller_spec.rb │ ├── screenshots_controller_spec.rb │ ├── tasks_controller_spec.rb │ ├── tax_infos_controller_spec.rb │ ├── tips_controller_spec.rb │ ├── users │ │ ├── balances_controller_spec.rb │ │ ├── payment_options_controller_spec.rb │ │ ├── registrations_controller_spec.rb │ │ └── sessions_controller.rb │ ├── users_controller_spec.rb │ └── webhooks │ │ ├── assembly_assets_controller_spec.rb │ │ ├── mailgun_controller_spec.rb │ │ └── read_raptor_controller_spec.rb ├── features │ ├── bounties_index_spec.rb │ └── bounties_show_spec.rb ├── fixtures │ ├── faq_groups │ │ ├── hitchhiking.md │ │ └── rock.md │ ├── github │ │ ├── pull_request.json │ │ └── push.json │ └── vcr_cassettes │ │ ├── _github_stats.yml │ │ ├── create_github_repo.yml │ │ ├── create_stripe_recipient.yml │ │ ├── new_domain_in_mailgun.yml │ │ ├── start_domain_transfer_error.yml │ │ ├── start_domain_transfer_success.yml │ │ ├── transfer_assembly_asset.yml │ │ ├── update_domain_in_mailgun_with_new_core_team_member.yml │ │ └── update_stripe_recipient.yml ├── javascripts │ ├── application_spec.js │ ├── fixtures │ │ ├── readraptor_meta_tag.html │ │ └── sign_up_form.html │ ├── flux │ │ ├── actions │ │ │ ├── bounty_action_creators_test.js │ │ │ ├── comment_action_creators_test.js │ │ │ ├── news_feed_item_action_creators_test.js │ │ │ └── router_test.js │ │ ├── components │ │ │ ├── avatar_test.js │ │ │ ├── chat_notifications_test.js │ │ │ ├── chat_notifications_toggler_test.js │ │ │ ├── ideas │ │ │ │ ├── idea_share_panel_test.js │ │ │ │ ├── idea_show_test.js │ │ │ │ └── idea_tile_test.js │ │ │ ├── news_feed │ │ │ │ ├── news_feed_item_test.js │ │ │ │ └── news_feed_test.js │ │ │ ├── tag_list_test.js │ │ │ ├── text_input_test.js │ │ │ ├── toggle_button_test.js │ │ │ ├── ui │ │ │ │ └── carousel_test.js │ │ │ └── welcome_banner_test.js │ │ ├── dispatcher │ │ │ └── dispatcher_test.js │ │ └── stores │ │ │ ├── apps_store_test.js │ │ │ ├── archived_news_feed_items_store_test.js │ │ │ ├── assets_store_test.js │ │ │ ├── attachment_store_test.js │ │ │ ├── bounties_store_test.js │ │ │ ├── bounty_marks_store_test.js │ │ │ ├── bounty_store_test.js │ │ │ ├── chat_notifications_store_test.js │ │ │ ├── comment_attachment_store_test.js │ │ │ ├── comment_store_test.js │ │ │ ├── discussion_store_test.js │ │ │ ├── idea_store_test.js │ │ │ ├── ideas_store_test.js │ │ │ ├── interest_store_test.js │ │ │ ├── online_users_store_test.js │ │ │ ├── posts_store_test.js │ │ │ ├── product_store_test.js │ │ │ ├── store_test.js │ │ │ ├── toggle_button_store_test.js │ │ │ └── uploading_attachments_store_test.js │ ├── jest_env.js │ ├── preprocessor.js │ ├── spec_helper.js │ └── stores │ │ ├── notification_preferences_dropdown_store_spec.js │ │ ├── notifications_users_store_spec.js │ │ ├── people_store_spec.js │ │ ├── person_picker_store_spec.js │ │ └── tag_list_store_spec.js ├── lib │ ├── avatar_spec.rb │ ├── core_ext │ │ └── time_ext_spec.rb │ ├── github_payload_spec.rb │ ├── poster_image_spec.rb │ └── timed_set_spec.rb ├── mailers │ ├── heart_mailer_spec.rb │ ├── post_mailer_spec.rb │ ├── preview │ │ ├── award_mailer_preview.rb │ │ ├── badge_mailer_preview.rb │ │ ├── balance_entry_mailer_preview.rb │ │ ├── chat_mailer_preview.rb │ │ ├── comment_mailer_preview.rb │ │ ├── core_team_mailer_preview.rb │ │ ├── domain_mailer_preview.rb │ │ ├── heart_mailer_preview.rb │ │ ├── invite_mailer_preview.rb │ │ ├── newsletter_mailer_preview.rb │ │ ├── partnership_mailer_preview.rb │ │ ├── pitch_week_preview.rb │ │ ├── post_mailer_preview.rb │ │ ├── product_mailer_preview.rb │ │ ├── showcase_mailer_preview.rb │ │ ├── suggestion_mailer_preview.rb │ │ ├── team_building_mailer_preview.rb │ │ ├── text_mailer_preview.rb │ │ ├── tilt_mailer_preview.rb │ │ ├── tip_mailer_preview.rb │ │ ├── unread_mailer_preview.rb │ │ ├── user_mailer_preview.rb │ │ └── wip_mailer_preview.rb │ └── unread_mailer_spec.rb ├── models │ ├── activity_spec.rb │ ├── attachment_spec.rb │ ├── auto_bounty_spec.rb │ ├── auto_post_spec.rb │ ├── auto_tip_contract_spec.rb │ ├── award_spec.rb │ ├── btc_payment_spec.rb │ ├── campfire_notifier_spec.rb │ ├── checklist_handler_spec.rb │ ├── chronicle_spec.rb │ ├── code_deliverable_spec.rb │ ├── coin_info_spec.rb │ ├── coins_minted_spec.rb │ ├── counter_spec.rb │ ├── csv_compiler.rb │ ├── deed_spec.rb │ ├── deliverable_spec.rb │ ├── discussion_spec.rb │ ├── email_campaigns │ │ └── hearts_received_spec.rb │ ├── faq_group.rb │ ├── filter_ideas_query_spec.rb │ ├── filter_updates_query_spec.rb │ ├── filter_wips_query_spec.rb │ ├── finance_spec.rb │ ├── financial │ │ ├── account_spec.rb │ │ ├── amount_spec.rb │ │ └── transaction_spec.rb │ ├── global_interest_spec.rb │ ├── idea_spec.rb │ ├── interpreter_spec.rb │ ├── invite_spec.rb │ ├── kwest_spec.rb │ ├── leader_determination_spec.rb │ ├── make_marks_spec.rb │ ├── mark_spec.rb │ ├── mark_to_mark_spec.rb │ ├── marking_spec.rb │ ├── metric_spec.rb │ ├── metrics_aggregator_spec.rb │ ├── news_feed_item_comment_spec.rb │ ├── news_feed_item_post_spec.rb │ ├── news_feed_item_spec.rb │ ├── news_feed_spec.rb │ ├── newsletter_spec.rb │ ├── partner_spec.rb │ ├── post_spec.rb │ ├── product_metric_spec.rb │ ├── product_redirector_spec.rb │ ├── product_spec.rb │ ├── product_trend_spec.rb │ ├── proposal_spec.rb │ ├── query_marks_spec.rb │ ├── read_raptor_client_spec.rb │ ├── read_raptor_serializer_spec.rb │ ├── screenshot_spec.rb │ ├── status_message_spec.rb │ ├── story_sentences_spec.rb │ ├── story_spec.rb │ ├── stream_event_spec.rb │ ├── subscriber_spec.rb │ ├── task_spec.rb │ ├── team_membership_spec.rb │ ├── text_filters │ │ ├── asset_inline_filter_spec.rb │ │ ├── no_follow_links_filter_spec.rb │ │ ├── task_list_filter_spec.rb │ │ └── user_mention_filter_spec.rb │ ├── textcomplete_search_spec.rb │ ├── top_bounty_spec.rb │ ├── top_product_spec.rb │ ├── transaction_entry_spec.rb │ ├── tweeter_spec.rb │ ├── user_contribution_spec.rb │ ├── user_identity_spec.rb │ ├── user_spec.rb │ ├── vesting_spec.rb │ ├── viewing_spec.rb │ ├── watching_spec.rb │ ├── wip │ │ └── worker_spec.rb │ ├── wip_group_spec.rb │ ├── wip_spec.rb │ └── work_spec.rb ├── requests │ └── user_signup_spec.rb ├── serializers │ ├── activity_serializer_spec.rb │ └── story_serializer_spec.rb ├── spec_helper.rb ├── support │ ├── blueprints.rb │ ├── devise.rb │ ├── fake.rb │ ├── fake_stripe_customer.rb │ ├── hash.rb │ ├── mailer_test_helper.rb │ ├── matchers │ │ ├── be_same_time_as.rb │ │ └── have_attributes.rb │ ├── spec_helpers.rb │ └── vcr.rb ├── teaspoon_env.rb └── workers │ ├── add_mark_identity_spec.rb │ ├── adjust_markings_spec.rb │ ├── apply_for_pitch_week_spec.rb │ ├── create_project_spec.rb │ ├── dnsimple │ └── start_domain_transfer_spec.rb │ ├── github │ └── create_product_repo_worker_spec.rb │ ├── give_coins_to_participants_spec.rb │ ├── link_github_account_spec.rb │ ├── mark_vector_from_text_spec.rb │ ├── post_chat_message_spec.rb │ ├── publish_activity_spec.rb │ ├── read_raptor │ ├── read_article_spec.rb │ └── register_article_worker_spec.rb │ ├── set_mail_records_in_dnsimple_and_mailgun_spec.rb │ ├── update_core_team_email_forwards_spec.rb │ ├── update_product_metrics_spec.rb │ └── view_worker_spec.rb ├── vagrant.yml.example └── vagrant ├── bootstrap.sh └── meta-box ├── http └── preseed.cfg ├── rebuild.sh ├── scripts ├── postinstall.sh └── user-config.sh └── template.json /.buildpacks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/.buildpacks -------------------------------------------------------------------------------- /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/.env.sample -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/.gitignore -------------------------------------------------------------------------------- /.hound.yml: -------------------------------------------------------------------------------- 1 | ruby: 2 | config_file: .ruby-style.yml 3 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "asi": true 3 | } 4 | -------------------------------------------------------------------------------- /.ruby-gemset: -------------------------------------------------------------------------------- 1 | meta 2 | -------------------------------------------------------------------------------- /.ruby-style.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/.ruby-style.yml -------------------------------------------------------------------------------- /.scss-style.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/.scss-style.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/Guardfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/Rakefile -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/Vagrantfile -------------------------------------------------------------------------------- /app/assets/fonts/Simple-Line-Icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/fonts/Simple-Line-Icons.eot -------------------------------------------------------------------------------- /app/assets/fonts/Simple-Line-Icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/fonts/Simple-Line-Icons.svg -------------------------------------------------------------------------------- /app/assets/fonts/Simple-Line-Icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/fonts/Simple-Line-Icons.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Simple-Line-Icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/fonts/Simple-Line-Icons.woff -------------------------------------------------------------------------------- /app/assets/fonts/assembly-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/fonts/assembly-icons.eot -------------------------------------------------------------------------------- /app/assets/fonts/assembly-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/fonts/assembly-icons.svg -------------------------------------------------------------------------------- /app/assets/fonts/assembly-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/fonts/assembly-icons.ttf -------------------------------------------------------------------------------- /app/assets/fonts/assembly-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/fonts/assembly-icons.woff -------------------------------------------------------------------------------- /app/assets/fonts/batch.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/fonts/batch.eot -------------------------------------------------------------------------------- /app/assets/fonts/batch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/fonts/batch.svg -------------------------------------------------------------------------------- /app/assets/fonts/batch.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/fonts/batch.ttf -------------------------------------------------------------------------------- /app/assets/fonts/batch.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/fonts/batch.woff -------------------------------------------------------------------------------- /app/assets/fonts/mvb-solitaire-black.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/fonts/mvb-solitaire-black.eot -------------------------------------------------------------------------------- /app/assets/fonts/mvb-solitaire-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/fonts/mvb-solitaire-black.svg -------------------------------------------------------------------------------- /app/assets/fonts/mvb-solitaire-black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/fonts/mvb-solitaire-black.ttf -------------------------------------------------------------------------------- /app/assets/fonts/mvb-solitaire-book.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/fonts/mvb-solitaire-book.eot -------------------------------------------------------------------------------- /app/assets/fonts/mvb-solitaire-book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/fonts/mvb-solitaire-book.svg -------------------------------------------------------------------------------- /app/assets/fonts/mvb-solitaire-book.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/fonts/mvb-solitaire-book.ttf -------------------------------------------------------------------------------- /app/assets/fonts/mvb-solitaire-book.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/fonts/mvb-solitaire-book.woff -------------------------------------------------------------------------------- /app/assets/fonts/mvb-solitaire-light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/fonts/mvb-solitaire-light.eot -------------------------------------------------------------------------------- /app/assets/fonts/mvb-solitaire-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/fonts/mvb-solitaire-light.svg -------------------------------------------------------------------------------- /app/assets/fonts/ss-gizmo.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/fonts/ss-gizmo.eot -------------------------------------------------------------------------------- /app/assets/fonts/ss-gizmo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/fonts/ss-gizmo.svg -------------------------------------------------------------------------------- /app/assets/fonts/ss-gizmo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/fonts/ss-gizmo.ttf -------------------------------------------------------------------------------- /app/assets/fonts/ss-gizmo.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/fonts/ss-gizmo.woff -------------------------------------------------------------------------------- /app/assets/images/404/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/images/404/1.jpg -------------------------------------------------------------------------------- /app/assets/images/404/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/images/404/2.jpg -------------------------------------------------------------------------------- /app/assets/images/404/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/images/404/3.jpg -------------------------------------------------------------------------------- /app/assets/images/404/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/images/404/4.jpg -------------------------------------------------------------------------------- /app/assets/images/404/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/images/404/5.jpg -------------------------------------------------------------------------------- /app/assets/images/about/copy-img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/images/about/copy-img1.jpg -------------------------------------------------------------------------------- /app/assets/images/about/copy-img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/images/about/copy-img2.jpg -------------------------------------------------------------------------------- /app/assets/images/about/copy-img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/images/about/copy-img3.jpg -------------------------------------------------------------------------------- /app/assets/images/about/grid-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/images/about/grid-logo.png -------------------------------------------------------------------------------- /app/assets/images/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/images/app_icon.png -------------------------------------------------------------------------------- /app/assets/images/chosen-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/images/chosen-sprite.png -------------------------------------------------------------------------------- /app/assets/images/core_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/images/core_icon.svg -------------------------------------------------------------------------------- /app/assets/images/default_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/images/default_avatar.png -------------------------------------------------------------------------------- /app/assets/images/default_poster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/images/default_poster.jpg -------------------------------------------------------------------------------- /app/assets/images/emails/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/images/emails/line.png -------------------------------------------------------------------------------- /app/assets/images/emails/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/images/emails/more.png -------------------------------------------------------------------------------- /app/assets/images/faces.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/images/faces.jpg -------------------------------------------------------------------------------- /app/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/images/favicon.ico -------------------------------------------------------------------------------- /app/assets/images/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/images/flag.svg -------------------------------------------------------------------------------- /app/assets/images/handle-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/images/handle-active.png -------------------------------------------------------------------------------- /app/assets/images/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/images/handle.png -------------------------------------------------------------------------------- /app/assets/images/home-new-user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/images/home-new-user.png -------------------------------------------------------------------------------- /app/assets/images/jumbotron/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/images/jumbotron/bg.png -------------------------------------------------------------------------------- /app/assets/images/jumbotron/bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/images/jumbotron/bg@2x.png -------------------------------------------------------------------------------- /app/assets/images/logo.min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/images/logo.min.png -------------------------------------------------------------------------------- /app/assets/images/markdown-mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/images/markdown-mark.png -------------------------------------------------------------------------------- /app/assets/images/new_profile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/images/new_profile.gif -------------------------------------------------------------------------------- /app/assets/images/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/images/play.png -------------------------------------------------------------------------------- /app/assets/images/touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/images/touch-icon.png -------------------------------------------------------------------------------- /app/assets/images/users/chexee.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/images/users/chexee.jpeg -------------------------------------------------------------------------------- /app/assets/images/users/whale.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/images/users/whale.jpg -------------------------------------------------------------------------------- /app/assets/javascripts/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/javascripts/admin.js -------------------------------------------------------------------------------- /app/assets/javascripts/admin/d3.v2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/javascripts/admin/d3.v2.js -------------------------------------------------------------------------------- /app/assets/javascripts/assets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/javascripts/assets.js -------------------------------------------------------------------------------- /app/assets/javascripts/collections/tips.js.coffee: -------------------------------------------------------------------------------- 1 | class window.Tips extends Backbone.Collection 2 | -------------------------------------------------------------------------------- /app/assets/javascripts/collections/wips.coffee: -------------------------------------------------------------------------------- 1 | class window.Wips extends Backbone.Collection 2 | model: Wip -------------------------------------------------------------------------------- /app/assets/javascripts/components/activity_sidebar.js.jsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/javascripts/cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/javascripts/cookie.js -------------------------------------------------------------------------------- /app/assets/javascripts/focus_home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/javascripts/focus_home.js -------------------------------------------------------------------------------- /app/assets/javascripts/functional.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/javascripts/functional.js -------------------------------------------------------------------------------- /app/assets/javascripts/lib/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/javascripts/lib/ajax.js -------------------------------------------------------------------------------- /app/assets/javascripts/lib/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/javascripts/lib/button.js -------------------------------------------------------------------------------- /app/assets/javascripts/lib/delay.coffee: -------------------------------------------------------------------------------- 1 | window.delay = (ms, fn) -> 2 | setTimeout(fn, ms) 3 | -------------------------------------------------------------------------------- /app/assets/javascripts/lib/every.coffee: -------------------------------------------------------------------------------- 1 | window.every = (ms, fn) -> 2 | setInterval(fn, ms) 3 | -------------------------------------------------------------------------------- /app/assets/javascripts/lib/scroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/javascripts/lib/scroll.js -------------------------------------------------------------------------------- /app/assets/javascripts/main.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/javascripts/main.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/models/activity.js.coffee: -------------------------------------------------------------------------------- 1 | class window.Activity extends Backbone.Model 2 | -------------------------------------------------------------------------------- /app/assets/javascripts/models/design_deliverable.coffee: -------------------------------------------------------------------------------- 1 | class window.DesignDeliverable extends Backbone.Model 2 | 3 | -------------------------------------------------------------------------------- /app/assets/javascripts/models/user.coffee: -------------------------------------------------------------------------------- 1 | class window.User extends Backbone.Model 2 | -------------------------------------------------------------------------------- /app/assets/javascripts/models/vote.coffee: -------------------------------------------------------------------------------- 1 | class window.Vote extends Backbone.Model 2 | 3 | -------------------------------------------------------------------------------- /app/assets/javascripts/polyfills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/javascripts/polyfills.js -------------------------------------------------------------------------------- /app/assets/javascripts/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/javascripts/routes.js -------------------------------------------------------------------------------- /app/assets/javascripts/web_util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/javascripts/web_util.js -------------------------------------------------------------------------------- /app/assets/javascripts/xhr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/javascripts/xhr.js -------------------------------------------------------------------------------- /app/assets/stylesheets/_basscss.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/stylesheets/_basscss.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/admin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/stylesheets/admin.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/app/_main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/stylesheets/app/_main.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/app/components/discussion.scss: -------------------------------------------------------------------------------- 1 | .discussion { 2 | padding: 0 20px; 3 | } 4 | -------------------------------------------------------------------------------- /app/assets/stylesheets/app/components/entry.scss: -------------------------------------------------------------------------------- 1 | .entry-unread { 2 | background-color: #ecf5fd; 3 | } 4 | -------------------------------------------------------------------------------- /app/assets/stylesheets/app/components/tagged_input_group.scss: -------------------------------------------------------------------------------- 1 | .tagged-input-group { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /app/assets/stylesheets/app/slop.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/stylesheets/app/slop.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/base/_scale.scss: -------------------------------------------------------------------------------- 1 | html { 2 | font-size: 12px; 3 | } 4 | -------------------------------------------------------------------------------- /app/assets/stylesheets/c3/c3.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/stylesheets/c3/c3.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/email.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/stylesheets/email.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/email_ink.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/assets/stylesheets/email_ink.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/utilities/_accesibility.scss: -------------------------------------------------------------------------------- 1 | .sr-only { 2 | display: none; 3 | } 4 | -------------------------------------------------------------------------------- /app/controllers/admin_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/controllers/admin_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/api_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/controllers/api/api_controller.rb -------------------------------------------------------------------------------- /app/controllers/apps_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/controllers/apps_controller.rb -------------------------------------------------------------------------------- /app/controllers/assets_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/controllers/assets_controller.rb -------------------------------------------------------------------------------- /app/controllers/awards_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/controllers/awards_controller.rb -------------------------------------------------------------------------------- /app/controllers/choices_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/controllers/choices_controller.rb -------------------------------------------------------------------------------- /app/controllers/domains_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/controllers/domains_controller.rb -------------------------------------------------------------------------------- /app/controllers/errors_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/controllers/errors_controller.rb -------------------------------------------------------------------------------- /app/controllers/guides_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/controllers/guides_controller.rb -------------------------------------------------------------------------------- /app/controllers/hellos_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/controllers/hellos_controller.rb -------------------------------------------------------------------------------- /app/controllers/ideas_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/controllers/ideas_controller.rb -------------------------------------------------------------------------------- /app/controllers/invites_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/controllers/invites_controller.rb -------------------------------------------------------------------------------- /app/controllers/metrics_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/controllers/metrics_controller.rb -------------------------------------------------------------------------------- /app/controllers/pages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/controllers/pages_controller.rb -------------------------------------------------------------------------------- /app/controllers/people_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/controllers/people_controller.rb -------------------------------------------------------------------------------- /app/controllers/posts_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/controllers/posts_controller.rb -------------------------------------------------------------------------------- /app/controllers/product_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/controllers/product_controller.rb -------------------------------------------------------------------------------- /app/controllers/search_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/controllers/search_controller.rb -------------------------------------------------------------------------------- /app/controllers/stakes_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/controllers/stakes_controller.rb -------------------------------------------------------------------------------- /app/controllers/stories_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/controllers/stories_controller.rb -------------------------------------------------------------------------------- /app/controllers/tags_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/controllers/tags_controller.rb -------------------------------------------------------------------------------- /app/controllers/talk_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/controllers/talk_controller.rb -------------------------------------------------------------------------------- /app/controllers/tasks_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/controllers/tasks_controller.rb -------------------------------------------------------------------------------- /app/controllers/tips_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/controllers/tips_controller.rb -------------------------------------------------------------------------------- /app/controllers/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/controllers/users_controller.rb -------------------------------------------------------------------------------- /app/controllers/webhook_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/controllers/webhook_controller.rb -------------------------------------------------------------------------------- /app/controllers/wips_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/controllers/wips_controller.rb -------------------------------------------------------------------------------- /app/decorators/product_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/decorators/product_decorator.rb -------------------------------------------------------------------------------- /app/decorators/showcases_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/decorators/showcases_decorator.rb -------------------------------------------------------------------------------- /app/decorators/user_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/decorators/user_decorator.rb -------------------------------------------------------------------------------- /app/helpers/admin_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/helpers/admin_helper.rb -------------------------------------------------------------------------------- /app/helpers/analytics_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/helpers/analytics_helper.rb -------------------------------------------------------------------------------- /app/helpers/app_icon_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/helpers/app_icon_helper.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/avatar_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/helpers/avatar_helper.rb -------------------------------------------------------------------------------- /app/helpers/bounties_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/helpers/bounties_helper.rb -------------------------------------------------------------------------------- /app/helpers/bounty_stats_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/helpers/bounty_stats_helper.rb -------------------------------------------------------------------------------- /app/helpers/coin_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/helpers/coin_helper.rb -------------------------------------------------------------------------------- /app/helpers/currency_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/helpers/currency_helper.rb -------------------------------------------------------------------------------- /app/helpers/facebook_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/helpers/facebook_helper.rb -------------------------------------------------------------------------------- /app/helpers/firesize_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/helpers/firesize_helper.rb -------------------------------------------------------------------------------- /app/helpers/flag_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/helpers/flag_helper.rb -------------------------------------------------------------------------------- /app/helpers/form_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/helpers/form_helper.rb -------------------------------------------------------------------------------- /app/helpers/image_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/helpers/image_helper.rb -------------------------------------------------------------------------------- /app/helpers/json_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/helpers/json_helper.rb -------------------------------------------------------------------------------- /app/helpers/layout_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/helpers/layout_helper.rb -------------------------------------------------------------------------------- /app/helpers/markdown_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/helpers/markdown_helper.rb -------------------------------------------------------------------------------- /app/helpers/navs_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/helpers/navs_helper.rb -------------------------------------------------------------------------------- /app/helpers/products_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/helpers/products_helper.rb -------------------------------------------------------------------------------- /app/helpers/react_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/helpers/react_helper.rb -------------------------------------------------------------------------------- /app/helpers/sign_in_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/helpers/sign_in_helper.rb -------------------------------------------------------------------------------- /app/helpers/stores_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/helpers/stores_helper.rb -------------------------------------------------------------------------------- /app/helpers/styleguide_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/helpers/styleguide_helper.rb -------------------------------------------------------------------------------- /app/helpers/table_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/helpers/table_helper.rb -------------------------------------------------------------------------------- /app/helpers/text_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/helpers/text_helper.rb -------------------------------------------------------------------------------- /app/helpers/time_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/helpers/time_helper.rb -------------------------------------------------------------------------------- /app/helpers/title_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/helpers/title_helper.rb -------------------------------------------------------------------------------- /app/helpers/wip_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/helpers/wip_helper.rb -------------------------------------------------------------------------------- /app/helpers/you_tube_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/helpers/you_tube_helper.rb -------------------------------------------------------------------------------- /app/mailers/award_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/mailers/award_mailer.rb -------------------------------------------------------------------------------- /app/mailers/badge_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/mailers/badge_mailer.rb -------------------------------------------------------------------------------- /app/mailers/base_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/mailers/base_mailer.rb -------------------------------------------------------------------------------- /app/mailers/chat_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/mailers/chat_mailer.rb -------------------------------------------------------------------------------- /app/mailers/comment_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/mailers/comment_mailer.rb -------------------------------------------------------------------------------- /app/mailers/core_team_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/mailers/core_team_mailer.rb -------------------------------------------------------------------------------- /app/mailers/custom_devise_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/mailers/custom_devise_mailer.rb -------------------------------------------------------------------------------- /app/mailers/digest_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/mailers/digest_mailer.rb -------------------------------------------------------------------------------- /app/mailers/domain_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/mailers/domain_mailer.rb -------------------------------------------------------------------------------- /app/mailers/heart_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/mailers/heart_mailer.rb -------------------------------------------------------------------------------- /app/mailers/idea_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/mailers/idea_mailer.rb -------------------------------------------------------------------------------- /app/mailers/invite_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/mailers/invite_mailer.rb -------------------------------------------------------------------------------- /app/mailers/newsletter_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/mailers/newsletter_mailer.rb -------------------------------------------------------------------------------- /app/mailers/partnership_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/mailers/partnership_mailer.rb -------------------------------------------------------------------------------- /app/mailers/pitch_week_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/mailers/pitch_week_mailer.rb -------------------------------------------------------------------------------- /app/mailers/post_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/mailers/post_mailer.rb -------------------------------------------------------------------------------- /app/mailers/product_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/mailers/product_mailer.rb -------------------------------------------------------------------------------- /app/mailers/showcase_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/mailers/showcase_mailer.rb -------------------------------------------------------------------------------- /app/mailers/suggestion_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/mailers/suggestion_mailer.rb -------------------------------------------------------------------------------- /app/mailers/team_building_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/mailers/team_building_mailer.rb -------------------------------------------------------------------------------- /app/mailers/text_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/mailers/text_mailer.rb -------------------------------------------------------------------------------- /app/mailers/tilt_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/mailers/tilt_mailer.rb -------------------------------------------------------------------------------- /app/mailers/tip_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/mailers/tip_mailer.rb -------------------------------------------------------------------------------- /app/mailers/unread_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/mailers/unread_mailer.rb -------------------------------------------------------------------------------- /app/mailers/user_balance_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/mailers/user_balance_mailer.rb -------------------------------------------------------------------------------- /app/mailers/user_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/mailers/user_mailer.rb -------------------------------------------------------------------------------- /app/mailers/wip_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/mailers/wip_mailer.rb -------------------------------------------------------------------------------- /app/models/ability.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/ability.rb -------------------------------------------------------------------------------- /app/models/activities/assign.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/activities/assign.rb -------------------------------------------------------------------------------- /app/models/activities/award.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/activities/award.rb -------------------------------------------------------------------------------- /app/models/activities/chat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/activities/chat.rb -------------------------------------------------------------------------------- /app/models/activities/close.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/activities/close.rb -------------------------------------------------------------------------------- /app/models/activities/comment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/activities/comment.rb -------------------------------------------------------------------------------- /app/models/activities/follow.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/activities/follow.rb -------------------------------------------------------------------------------- /app/models/activities/found.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/activities/found.rb -------------------------------------------------------------------------------- /app/models/activities/git_push.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/activities/git_push.rb -------------------------------------------------------------------------------- /app/models/activities/introduce.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/activities/introduce.rb -------------------------------------------------------------------------------- /app/models/activities/launch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/activities/launch.rb -------------------------------------------------------------------------------- /app/models/activities/open.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/activities/open.rb -------------------------------------------------------------------------------- /app/models/activities/post.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/activities/post.rb -------------------------------------------------------------------------------- /app/models/activities/reference.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/activities/reference.rb -------------------------------------------------------------------------------- /app/models/activities/subscribe.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/activities/subscribe.rb -------------------------------------------------------------------------------- /app/models/activities/tip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/activities/tip.rb -------------------------------------------------------------------------------- /app/models/activities/unassign.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/activities/unassign.rb -------------------------------------------------------------------------------- /app/models/activities/update.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/activities/update.rb -------------------------------------------------------------------------------- /app/models/activities/vote.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/activities/vote.rb -------------------------------------------------------------------------------- /app/models/activity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/activity.rb -------------------------------------------------------------------------------- /app/models/activity_stream.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/activity_stream.rb -------------------------------------------------------------------------------- /app/models/apps_query.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/apps_query.rb -------------------------------------------------------------------------------- /app/models/assembly_asset.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/assembly_asset.rb -------------------------------------------------------------------------------- /app/models/assembly_coins.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/assembly_coins.rb -------------------------------------------------------------------------------- /app/models/assembly_team.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/assembly_team.rb -------------------------------------------------------------------------------- /app/models/asset.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/asset.rb -------------------------------------------------------------------------------- /app/models/assign_product_key_pair.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/assign_product_key_pair.rb -------------------------------------------------------------------------------- /app/models/attachment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/attachment.rb -------------------------------------------------------------------------------- /app/models/auto_bounty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/auto_bounty.rb -------------------------------------------------------------------------------- /app/models/auto_post.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/auto_post.rb -------------------------------------------------------------------------------- /app/models/auto_tip_contract.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/auto_tip_contract.rb -------------------------------------------------------------------------------- /app/models/award.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/award.rb -------------------------------------------------------------------------------- /app/models/awarded_bounties_query.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/awarded_bounties_query.rb -------------------------------------------------------------------------------- /app/models/bounty_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/bounty_factory.rb -------------------------------------------------------------------------------- /app/models/bounty_posting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/bounty_posting.rb -------------------------------------------------------------------------------- /app/models/btc_payment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/btc_payment.rb -------------------------------------------------------------------------------- /app/models/chat_room.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/chat_room.rb -------------------------------------------------------------------------------- /app/models/checklist_handler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/checklist_handler.rb -------------------------------------------------------------------------------- /app/models/choice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/choice.rb -------------------------------------------------------------------------------- /app/models/chronicle.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/chronicle.rb -------------------------------------------------------------------------------- /app/models/code_deliverable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/code_deliverable.rb -------------------------------------------------------------------------------- /app/models/coin_info.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/coin_info.rb -------------------------------------------------------------------------------- /app/models/contract_holder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/contract_holder.rb -------------------------------------------------------------------------------- /app/models/copy_deliverable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/copy_deliverable.rb -------------------------------------------------------------------------------- /app/models/core_team_membership.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/core_team_membership.rb -------------------------------------------------------------------------------- /app/models/corporation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/corporation.rb -------------------------------------------------------------------------------- /app/models/counter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/counter.rb -------------------------------------------------------------------------------- /app/models/csv_compiler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/csv_compiler.rb -------------------------------------------------------------------------------- /app/models/daily_metric.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/daily_metric.rb -------------------------------------------------------------------------------- /app/models/dashboard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/dashboard.rb -------------------------------------------------------------------------------- /app/models/dashboard_query.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/dashboard_query.rb -------------------------------------------------------------------------------- /app/models/date_range_extensions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/date_range_extensions.rb -------------------------------------------------------------------------------- /app/models/deed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/deed.rb -------------------------------------------------------------------------------- /app/models/deliverable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/deliverable.rb -------------------------------------------------------------------------------- /app/models/discussion.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/discussion.rb -------------------------------------------------------------------------------- /app/models/domain.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/domain.rb -------------------------------------------------------------------------------- /app/models/easy_trailing_average.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/easy_trailing_average.rb -------------------------------------------------------------------------------- /app/models/email_log.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/email_log.rb -------------------------------------------------------------------------------- /app/models/event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/event.rb -------------------------------------------------------------------------------- /app/models/event/allocation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/event/allocation.rb -------------------------------------------------------------------------------- /app/models/event/close.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/event/close.rb -------------------------------------------------------------------------------- /app/models/event/code_added.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/event/code_added.rb -------------------------------------------------------------------------------- /app/models/event/comment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/event/comment.rb -------------------------------------------------------------------------------- /app/models/event/comment_reference.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/event/comment_reference.rb -------------------------------------------------------------------------------- /app/models/event/commit_reference.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/event/commit_reference.rb -------------------------------------------------------------------------------- /app/models/event/copy_added.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/event/copy_added.rb -------------------------------------------------------------------------------- /app/models/event/demotion.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/event/demotion.rb -------------------------------------------------------------------------------- /app/models/event/promotion.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/event/promotion.rb -------------------------------------------------------------------------------- /app/models/event/rejection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/event/rejection.rb -------------------------------------------------------------------------------- /app/models/event/reopen.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/event/reopen.rb -------------------------------------------------------------------------------- /app/models/event/review_ready.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/event/review_ready.rb -------------------------------------------------------------------------------- /app/models/event/tag_change.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/event/tag_change.rb -------------------------------------------------------------------------------- /app/models/event/title_change.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/event/title_change.rb -------------------------------------------------------------------------------- /app/models/event/type_change.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/event/type_change.rb -------------------------------------------------------------------------------- /app/models/event/unallocation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/event/unallocation.rb -------------------------------------------------------------------------------- /app/models/event/win.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/event/win.rb -------------------------------------------------------------------------------- /app/models/expense_claim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/expense_claim.rb -------------------------------------------------------------------------------- /app/models/facet_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/facet_filter.rb -------------------------------------------------------------------------------- /app/models/faq_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/faq_group.rb -------------------------------------------------------------------------------- /app/models/filter_ideas_query.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/filter_ideas_query.rb -------------------------------------------------------------------------------- /app/models/filter_updates_query.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/filter_updates_query.rb -------------------------------------------------------------------------------- /app/models/filter_wips_query.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/filter_wips_query.rb -------------------------------------------------------------------------------- /app/models/finance.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/finance.rb -------------------------------------------------------------------------------- /app/models/financial/account.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/financial/account.rb -------------------------------------------------------------------------------- /app/models/financial/amount.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/financial/amount.rb -------------------------------------------------------------------------------- /app/models/financial/asset.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/financial/asset.rb -------------------------------------------------------------------------------- /app/models/financial/credit_amount.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/financial/credit_amount.rb -------------------------------------------------------------------------------- /app/models/financial/debit_account.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/financial/debit_account.rb -------------------------------------------------------------------------------- /app/models/financial/debit_amount.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/financial/debit_amount.rb -------------------------------------------------------------------------------- /app/models/financial/equity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/financial/equity.rb -------------------------------------------------------------------------------- /app/models/financial/expense.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/financial/expense.rb -------------------------------------------------------------------------------- /app/models/financial/liability.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/financial/liability.rb -------------------------------------------------------------------------------- /app/models/financial/revenue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/financial/revenue.rb -------------------------------------------------------------------------------- /app/models/financial/transaction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/financial/transaction.rb -------------------------------------------------------------------------------- /app/models/global_interest.rb: -------------------------------------------------------------------------------- 1 | class GlobalInterest < ActiveRecord::Base 2 | belongs_to :user 3 | end 4 | -------------------------------------------------------------------------------- /app/models/governance.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/governance.rb -------------------------------------------------------------------------------- /app/models/growth_hack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/growth_hack.rb -------------------------------------------------------------------------------- /app/models/guest.rb: -------------------------------------------------------------------------------- 1 | class Guest < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /app/models/guides_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/guides_group.rb -------------------------------------------------------------------------------- /app/models/heart.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/heart.rb -------------------------------------------------------------------------------- /app/models/heart_stories_query.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/heart_stories_query.rb -------------------------------------------------------------------------------- /app/models/hot_bounty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/hot_bounty.rb -------------------------------------------------------------------------------- /app/models/idea.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/idea.rb -------------------------------------------------------------------------------- /app/models/idea_comment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/idea_comment.rb -------------------------------------------------------------------------------- /app/models/integration.rb: -------------------------------------------------------------------------------- 1 | class Integration < ActiveRecord::Base 2 | belongs_to :product 3 | end 4 | -------------------------------------------------------------------------------- /app/models/interest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/interest.rb -------------------------------------------------------------------------------- /app/models/interpreter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/interpreter.rb -------------------------------------------------------------------------------- /app/models/invite.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/invite.rb -------------------------------------------------------------------------------- /app/models/kwest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/kwest.rb -------------------------------------------------------------------------------- /app/models/leader_determination.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/leader_determination.rb -------------------------------------------------------------------------------- /app/models/leader_position.rb: -------------------------------------------------------------------------------- 1 | class LeaderPosition < ActiveRecord::Base 2 | belongs_to :user 3 | 4 | end 5 | -------------------------------------------------------------------------------- /app/models/make_marks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/make_marks.rb -------------------------------------------------------------------------------- /app/models/mark.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/mark.rb -------------------------------------------------------------------------------- /app/models/mark_cluster.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/mark_cluster.rb -------------------------------------------------------------------------------- /app/models/mark_stem.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/mark_stem.rb -------------------------------------------------------------------------------- /app/models/mark_to_mark.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/mark_to_mark.rb -------------------------------------------------------------------------------- /app/models/marking.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/marking.rb -------------------------------------------------------------------------------- /app/models/measurement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/measurement.rb -------------------------------------------------------------------------------- /app/models/message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/message.rb -------------------------------------------------------------------------------- /app/models/metric.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/metric.rb -------------------------------------------------------------------------------- /app/models/metrics/contributors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/metrics/contributors.rb -------------------------------------------------------------------------------- /app/models/metrics/daily_actives.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/metrics/daily_actives.rb -------------------------------------------------------------------------------- /app/models/metrics/engaged_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/metrics/engaged_users.rb -------------------------------------------------------------------------------- /app/models/metrics/influence_count.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/metrics/influence_count.rb -------------------------------------------------------------------------------- /app/models/metrics/kpi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/metrics/kpi.rb -------------------------------------------------------------------------------- /app/models/metrics/live_products.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/metrics/live_products.rb -------------------------------------------------------------------------------- /app/models/metrics/mixpanel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/metrics/mixpanel.rb -------------------------------------------------------------------------------- /app/models/metrics/new_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/metrics/new_users.rb -------------------------------------------------------------------------------- /app/models/metrics/partners.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/metrics/partners.rb -------------------------------------------------------------------------------- /app/models/metrics/percentage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/metrics/percentage.rb -------------------------------------------------------------------------------- /app/models/metrics/product_uniques.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/metrics/product_uniques.rb -------------------------------------------------------------------------------- /app/models/metrics/raw_number.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/metrics/raw_number.rb -------------------------------------------------------------------------------- /app/models/metrics/retention.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/metrics/retention.rb -------------------------------------------------------------------------------- /app/models/metrics_aggregator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/metrics_aggregator.rb -------------------------------------------------------------------------------- /app/models/milestone.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/milestone.rb -------------------------------------------------------------------------------- /app/models/milestone_image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/milestone_image.rb -------------------------------------------------------------------------------- /app/models/milestone_task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/milestone_task.rb -------------------------------------------------------------------------------- /app/models/monthly_metric.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/monthly_metric.rb -------------------------------------------------------------------------------- /app/models/muting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/muting.rb -------------------------------------------------------------------------------- /app/models/news_feed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/news_feed.rb -------------------------------------------------------------------------------- /app/models/news_feed_item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/news_feed_item.rb -------------------------------------------------------------------------------- /app/models/news_feed_item_comment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/news_feed_item_comment.rb -------------------------------------------------------------------------------- /app/models/news_feed_item_post.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/news_feed_item_post.rb -------------------------------------------------------------------------------- /app/models/newsletter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/newsletter.rb -------------------------------------------------------------------------------- /app/models/offer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/offer.rb -------------------------------------------------------------------------------- /app/models/ownership_status.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/ownership_status.rb -------------------------------------------------------------------------------- /app/models/partner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/partner.rb -------------------------------------------------------------------------------- /app/models/pitch_week_application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/pitch_week_application.rb -------------------------------------------------------------------------------- /app/models/platform_metric.rb: -------------------------------------------------------------------------------- 1 | class PlatformMetric < ActiveRecord::Base 2 | 3 | end 4 | -------------------------------------------------------------------------------- /app/models/post.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/post.rb -------------------------------------------------------------------------------- /app/models/product.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/product.rb -------------------------------------------------------------------------------- /app/models/product_contributions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/product_contributions.rb -------------------------------------------------------------------------------- /app/models/product_metric.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/product_metric.rb -------------------------------------------------------------------------------- /app/models/product_ownership.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/product_ownership.rb -------------------------------------------------------------------------------- /app/models/product_redirector.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/product_redirector.rb -------------------------------------------------------------------------------- /app/models/product_stats.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/product_stats.rb -------------------------------------------------------------------------------- /app/models/product_trend.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/product_trend.rb -------------------------------------------------------------------------------- /app/models/profit_report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/profit_report.rb -------------------------------------------------------------------------------- /app/models/proposal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/proposal.rb -------------------------------------------------------------------------------- /app/models/query_marks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/query_marks.rb -------------------------------------------------------------------------------- /app/models/read_raptor_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/read_raptor_client.rb -------------------------------------------------------------------------------- /app/models/read_raptor_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/read_raptor_serializer.rb -------------------------------------------------------------------------------- /app/models/repo/github.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/repo/github.rb -------------------------------------------------------------------------------- /app/models/room.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/room.rb -------------------------------------------------------------------------------- /app/models/saved_search.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/saved_search.rb -------------------------------------------------------------------------------- /app/models/screenshot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/screenshot.rb -------------------------------------------------------------------------------- /app/models/search/product_search.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/search/product_search.rb -------------------------------------------------------------------------------- /app/models/search/sanitizer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/search/sanitizer.rb -------------------------------------------------------------------------------- /app/models/search/search_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/search/search_filter.rb -------------------------------------------------------------------------------- /app/models/search/state_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/search/state_filter.rb -------------------------------------------------------------------------------- /app/models/search/tech_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/search/tech_filter.rb -------------------------------------------------------------------------------- /app/models/search/totals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/search/totals.rb -------------------------------------------------------------------------------- /app/models/search/wip_search.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/search/wip_search.rb -------------------------------------------------------------------------------- /app/models/secure_reply_to.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/secure_reply_to.rb -------------------------------------------------------------------------------- /app/models/seven_day_mvp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/seven_day_mvp.rb -------------------------------------------------------------------------------- /app/models/showcase.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/showcase.rb -------------------------------------------------------------------------------- /app/models/showcase_entry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/showcase_entry.rb -------------------------------------------------------------------------------- /app/models/slack_notifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/slack_notifier.rb -------------------------------------------------------------------------------- /app/models/slackpipe_payload.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/slackpipe_payload.rb -------------------------------------------------------------------------------- /app/models/staff_constraint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/staff_constraint.rb -------------------------------------------------------------------------------- /app/models/stake/allocation_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/stake/allocation_event.rb -------------------------------------------------------------------------------- /app/models/stake/allocation_run.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/stake/allocation_run.rb -------------------------------------------------------------------------------- /app/models/static_content_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/static_content_group.rb -------------------------------------------------------------------------------- /app/models/status_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/status_message.rb -------------------------------------------------------------------------------- /app/models/story.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/story.rb -------------------------------------------------------------------------------- /app/models/story_sentences.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/story_sentences.rb -------------------------------------------------------------------------------- /app/models/stream_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/stream_event.rb -------------------------------------------------------------------------------- /app/models/stream_events/win_win.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/stream_events/win_win.rb -------------------------------------------------------------------------------- /app/models/stream_events/work_work.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/stream_events/work_work.rb -------------------------------------------------------------------------------- /app/models/subscriber.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/subscriber.rb -------------------------------------------------------------------------------- /app/models/task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/task.rb -------------------------------------------------------------------------------- /app/models/team_membership.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/team_membership.rb -------------------------------------------------------------------------------- /app/models/textcomplete_search.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/textcomplete_search.rb -------------------------------------------------------------------------------- /app/models/tip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/tip.rb -------------------------------------------------------------------------------- /app/models/tip_contract.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/tip_contract.rb -------------------------------------------------------------------------------- /app/models/top_bounty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/top_bounty.rb -------------------------------------------------------------------------------- /app/models/top_product.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/top_product.rb -------------------------------------------------------------------------------- /app/models/topic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/topic.rb -------------------------------------------------------------------------------- /app/models/transaction_log_entry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/transaction_log_entry.rb -------------------------------------------------------------------------------- /app/models/transaction_log_report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/transaction_log_report.rb -------------------------------------------------------------------------------- /app/models/tweet_prep.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/tweet_prep.rb -------------------------------------------------------------------------------- /app/models/tweeter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/tweeter.rb -------------------------------------------------------------------------------- /app/models/type_id.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/type_id.rb -------------------------------------------------------------------------------- /app/models/unique.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/unique.rb -------------------------------------------------------------------------------- /app/models/unread_chat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/unread_chat.rb -------------------------------------------------------------------------------- /app/models/updates_wip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/updates_wip.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/models/user/balance.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/user/balance.rb -------------------------------------------------------------------------------- /app/models/user/balance_entry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/user/balance_entry.rb -------------------------------------------------------------------------------- /app/models/user/payment_option.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/user/payment_option.rb -------------------------------------------------------------------------------- /app/models/user/tag.rb: -------------------------------------------------------------------------------- 1 | class User::Tag 2 | 3 | end -------------------------------------------------------------------------------- /app/models/user/tax_info.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/user/tax_info.rb -------------------------------------------------------------------------------- /app/models/user/w8_ben.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/user/w8_ben.rb -------------------------------------------------------------------------------- /app/models/user/w9.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/user/w9.rb -------------------------------------------------------------------------------- /app/models/user/withdrawal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/user/withdrawal.rb -------------------------------------------------------------------------------- /app/models/user_contribution.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/user_contribution.rb -------------------------------------------------------------------------------- /app/models/user_identity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/user_identity.rb -------------------------------------------------------------------------------- /app/models/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/version.rb -------------------------------------------------------------------------------- /app/models/vesting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/vesting.rb -------------------------------------------------------------------------------- /app/models/viewing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/viewing.rb -------------------------------------------------------------------------------- /app/models/vote.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/vote.rb -------------------------------------------------------------------------------- /app/models/watching.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/watching.rb -------------------------------------------------------------------------------- /app/models/weekly_metric.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/weekly_metric.rb -------------------------------------------------------------------------------- /app/models/wip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/wip.rb -------------------------------------------------------------------------------- /app/models/wip/tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/wip/tag.rb -------------------------------------------------------------------------------- /app/models/wip/tagging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/wip/tagging.rb -------------------------------------------------------------------------------- /app/models/wip/worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/wip/worker.rb -------------------------------------------------------------------------------- /app/models/wip_contracts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/wip_contracts.rb -------------------------------------------------------------------------------- /app/models/wip_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/wip_factory.rb -------------------------------------------------------------------------------- /app/models/wip_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/wip_group.rb -------------------------------------------------------------------------------- /app/models/withholding.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/withholding.rb -------------------------------------------------------------------------------- /app/models/work.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/work.rb -------------------------------------------------------------------------------- /app/models/work_contracts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/work_contracts.rb -------------------------------------------------------------------------------- /app/models/work_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/models/work_factory.rb -------------------------------------------------------------------------------- /app/serializers/app_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/serializers/app_serializer.rb -------------------------------------------------------------------------------- /app/serializers/asset_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/serializers/asset_serializer.rb -------------------------------------------------------------------------------- /app/serializers/avatar_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/serializers/avatar_serializer.rb -------------------------------------------------------------------------------- /app/serializers/award_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/serializers/award_serializer.rb -------------------------------------------------------------------------------- /app/serializers/bounty_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/serializers/bounty_serializer.rb -------------------------------------------------------------------------------- /app/serializers/comment_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/serializers/comment_serializer.rb -------------------------------------------------------------------------------- /app/serializers/event_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/serializers/event_serializer.rb -------------------------------------------------------------------------------- /app/serializers/heart_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/serializers/heart_serializer.rb -------------------------------------------------------------------------------- /app/serializers/idea_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/serializers/idea_serializer.rb -------------------------------------------------------------------------------- /app/serializers/invite_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/serializers/invite_serializer.rb -------------------------------------------------------------------------------- /app/serializers/list_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/serializers/list_serializer.rb -------------------------------------------------------------------------------- /app/serializers/member_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/serializers/member_serializer.rb -------------------------------------------------------------------------------- /app/serializers/offer_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/serializers/offer_serializer.rb -------------------------------------------------------------------------------- /app/serializers/org_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/serializers/org_serializer.rb -------------------------------------------------------------------------------- /app/serializers/partner_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/serializers/partner_serializer.rb -------------------------------------------------------------------------------- /app/serializers/post_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/serializers/post_serializer.rb -------------------------------------------------------------------------------- /app/serializers/product_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/serializers/product_serializer.rb -------------------------------------------------------------------------------- /app/serializers/short_activity_serializer.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/serializers/story_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/serializers/story_serializer.rb -------------------------------------------------------------------------------- /app/serializers/task_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/serializers/task_serializer.rb -------------------------------------------------------------------------------- /app/serializers/tip_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/serializers/tip_serializer.rb -------------------------------------------------------------------------------- /app/serializers/unread_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/serializers/unread_serializer.rb -------------------------------------------------------------------------------- /app/serializers/user_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/serializers/user_serializer.rb -------------------------------------------------------------------------------- /app/serializers/vesting_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/serializers/vesting_serializer.rb -------------------------------------------------------------------------------- /app/serializers/wip_hot_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/serializers/wip_hot_serializer.rb -------------------------------------------------------------------------------- /app/serializers/wip_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/serializers/wip_serializer.rb -------------------------------------------------------------------------------- /app/serializers/wip_tag_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/serializers/wip_tag_serializer.rb -------------------------------------------------------------------------------- /app/serializers/work_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/serializers/work_serializer.rb -------------------------------------------------------------------------------- /app/templates/events/tag_changes/_tag_change.mustache: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/views/admin/_navbar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/admin/_navbar.html.erb -------------------------------------------------------------------------------- /app/views/admin/apps/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/admin/apps/index.html.erb -------------------------------------------------------------------------------- /app/views/admin/bitcoin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/admin/bitcoin/index.html -------------------------------------------------------------------------------- /app/views/admin/karma/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/admin/karma/index.html -------------------------------------------------------------------------------- /app/views/admin/tags/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/admin/tags/index.html.erb -------------------------------------------------------------------------------- /app/views/admin/user_books/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/admin/user_books/index.html -------------------------------------------------------------------------------- /app/views/admin/users/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/admin/users/index.html.erb -------------------------------------------------------------------------------- /app/views/admin/wips/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/admin/wips/index.html.erb -------------------------------------------------------------------------------- /app/views/apps/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/apps/index.html.erb -------------------------------------------------------------------------------- /app/views/assets/_asset.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/assets/_asset.html.erb -------------------------------------------------------------------------------- /app/views/assets/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/assets/index.html.erb -------------------------------------------------------------------------------- /app/views/assets/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/assets/new.html.erb -------------------------------------------------------------------------------- /app/views/awards/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/awards/show.html.erb -------------------------------------------------------------------------------- /app/views/bounties/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/bounties/index.html.erb -------------------------------------------------------------------------------- /app/views/bounties/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/bounties/show.html.erb -------------------------------------------------------------------------------- /app/views/chat_rooms/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/chat_rooms/show.html.erb -------------------------------------------------------------------------------- /app/views/contracts/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/contracts/index.html.erb -------------------------------------------------------------------------------- /app/views/dashboard/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/dashboard/index.html.erb -------------------------------------------------------------------------------- /app/views/errors/error.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/errors/error.html.erb -------------------------------------------------------------------------------- /app/views/errors/maintenance.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/errors/maintenance.html.erb -------------------------------------------------------------------------------- /app/views/errors/not_found.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/errors/not_found.html.erb -------------------------------------------------------------------------------- /app/views/facebook/channel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/facebook/channel.html -------------------------------------------------------------------------------- /app/views/faq_groups/basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/faq_groups/basics.md -------------------------------------------------------------------------------- /app/views/faq_groups/building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/faq_groups/building.md -------------------------------------------------------------------------------- /app/views/faq_groups/community.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/faq_groups/community.md -------------------------------------------------------------------------------- /app/views/faq_groups/launching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/faq_groups/launching.md -------------------------------------------------------------------------------- /app/views/faq_groups/migrating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/faq_groups/migrating.md -------------------------------------------------------------------------------- /app/views/faq_groups/platform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/faq_groups/platform.md -------------------------------------------------------------------------------- /app/views/faq_groups/privacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/faq_groups/privacy.md -------------------------------------------------------------------------------- /app/views/faq_groups/revenue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/faq_groups/revenue.md -------------------------------------------------------------------------------- /app/views/faq_groups/terms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/faq_groups/terms.md -------------------------------------------------------------------------------- /app/views/financials/_nav.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/financials/_nav.html.erb -------------------------------------------------------------------------------- /app/views/financials/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/financials/index.html.erb -------------------------------------------------------------------------------- /app/views/governance/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/governance/index.html.erb -------------------------------------------------------------------------------- /app/views/guides/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/guides/index.html.erb -------------------------------------------------------------------------------- /app/views/guides_groups/blockchain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/guides_groups/blockchain.md -------------------------------------------------------------------------------- /app/views/guides_groups/domains.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/guides_groups/domains.md -------------------------------------------------------------------------------- /app/views/guides_groups/expenses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/guides_groups/expenses.md -------------------------------------------------------------------------------- /app/views/guides_groups/ownership.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/guides_groups/ownership.md -------------------------------------------------------------------------------- /app/views/guides_groups/platform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/guides_groups/platform.md -------------------------------------------------------------------------------- /app/views/guides_groups/tips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/guides_groups/tips.md -------------------------------------------------------------------------------- /app/views/hellos/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/hellos/show.html.erb -------------------------------------------------------------------------------- /app/views/hot_bounties/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/hot_bounties/show.html.erb -------------------------------------------------------------------------------- /app/views/idea_mailer/congratulate_on_greenlight.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/ideas/admin.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/ideas/admin.html.erb -------------------------------------------------------------------------------- /app/views/ideas/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/ideas/edit.html.erb -------------------------------------------------------------------------------- /app/views/ideas/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/ideas/index.html.erb -------------------------------------------------------------------------------- /app/views/ideas/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/ideas/new.html.erb -------------------------------------------------------------------------------- /app/views/ideas/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/ideas/show.html.erb -------------------------------------------------------------------------------- /app/views/layouts/admin.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/layouts/admin.html.erb -------------------------------------------------------------------------------- /app/views/layouts/email.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/layouts/email.html.erb -------------------------------------------------------------------------------- /app/views/layouts/email_tile.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/layouts/email_tile.html.erb -------------------------------------------------------------------------------- /app/views/layouts/ideas.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/layouts/ideas.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mail/default.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/layouts/mail/default.erb -------------------------------------------------------------------------------- /app/views/layouts/new_email.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/layouts/new_email.html.erb -------------------------------------------------------------------------------- /app/views/layouts/product.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/layouts/product.html.erb -------------------------------------------------------------------------------- /app/views/layouts/static.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/layouts/static.html.erb -------------------------------------------------------------------------------- /app/views/metrics/_snippet.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/metrics/_snippet.html.erb -------------------------------------------------------------------------------- /app/views/metrics/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/metrics/index.html.erb -------------------------------------------------------------------------------- /app/views/metrics/snippet.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/metrics/snippet.html.erb -------------------------------------------------------------------------------- /app/views/pages/about.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/pages/about.html.erb -------------------------------------------------------------------------------- /app/views/pages/badges.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/pages/badges.html.erb -------------------------------------------------------------------------------- /app/views/pages/focus_home.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/pages/focus_home.html.erb -------------------------------------------------------------------------------- /app/views/pages/home.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/pages/home.html.erb -------------------------------------------------------------------------------- /app/views/pages/styleguide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/pages/styleguide.html -------------------------------------------------------------------------------- /app/views/pages/tos.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/pages/tos.html.erb -------------------------------------------------------------------------------- /app/views/pages/tos_content.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/pages/tos_content.markdown -------------------------------------------------------------------------------- /app/views/partners/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/partners/index.html.erb -------------------------------------------------------------------------------- /app/views/payments/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/payments/index.html.erb -------------------------------------------------------------------------------- /app/views/people/_nav.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/people/_nav.html.erb -------------------------------------------------------------------------------- /app/views/people/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/people/index.html.erb -------------------------------------------------------------------------------- /app/views/pitch_week/_chip.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/pitch_week/_chip.html.erb -------------------------------------------------------------------------------- /app/views/posts/_post.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/posts/_post.html.erb -------------------------------------------------------------------------------- /app/views/posts/_posts_store.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/posts/_posts_store.html.erb -------------------------------------------------------------------------------- /app/views/posts/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/posts/edit.html.erb -------------------------------------------------------------------------------- /app/views/posts/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/posts/index.html.erb -------------------------------------------------------------------------------- /app/views/posts/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/posts/new.html.erb -------------------------------------------------------------------------------- /app/views/posts/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/posts/show.html.erb -------------------------------------------------------------------------------- /app/views/products/_alert.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/products/_alert.html.erb -------------------------------------------------------------------------------- /app/views/products/_card.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/products/_card.html.erb -------------------------------------------------------------------------------- /app/views/products/admin.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/products/admin.html.erb -------------------------------------------------------------------------------- /app/views/products/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/products/edit.html.erb -------------------------------------------------------------------------------- /app/views/products/flag.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/products/flag.html.erb -------------------------------------------------------------------------------- /app/views/products/import.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/products/import.html.erb -------------------------------------------------------------------------------- /app/views/products/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/products/new.html.erb -------------------------------------------------------------------------------- /app/views/products/plan.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/products/plan.html.erb -------------------------------------------------------------------------------- /app/views/products/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/products/show.html.erb -------------------------------------------------------------------------------- /app/views/products/start.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/products/start.html.erb -------------------------------------------------------------------------------- /app/views/products/trust.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/products/trust.html.erb -------------------------------------------------------------------------------- /app/views/products/welcome.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/products/welcome.html.erb -------------------------------------------------------------------------------- /app/views/projects/_header.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/projects/_header.html.erb -------------------------------------------------------------------------------- /app/views/projects/_project.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/projects/_project.html.erb -------------------------------------------------------------------------------- /app/views/projects/_tasks.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/projects/_tasks.html.erb -------------------------------------------------------------------------------- /app/views/projects/add.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/projects/add.js.erb -------------------------------------------------------------------------------- /app/views/projects/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/projects/edit.html.erb -------------------------------------------------------------------------------- /app/views/projects/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/projects/index.html.erb -------------------------------------------------------------------------------- /app/views/projects/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/projects/new.html.erb -------------------------------------------------------------------------------- /app/views/projects/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/projects/show.html.erb -------------------------------------------------------------------------------- /app/views/proposals/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/proposals/index.html.erb -------------------------------------------------------------------------------- /app/views/proposals/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/proposals/show.html.erb -------------------------------------------------------------------------------- /app/views/questions/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/questions/index.html.erb -------------------------------------------------------------------------------- /app/views/repositories/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/repositories/index.html.erb -------------------------------------------------------------------------------- /app/views/resources/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/resources/index.html.erb -------------------------------------------------------------------------------- /app/views/shared/_analytics.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/shared/_analytics.html.erb -------------------------------------------------------------------------------- /app/views/shared/_error_messages.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/shared/_error_messages.erb -------------------------------------------------------------------------------- /app/views/shared/_facebook.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/shared/_facebook.html.erb -------------------------------------------------------------------------------- /app/views/shared/_flash.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/shared/_flash.html.erb -------------------------------------------------------------------------------- /app/views/shared/_footer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/shared/_footer.html.erb -------------------------------------------------------------------------------- /app/views/shared/_footer_nav.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/shared/_footer_nav.html.erb -------------------------------------------------------------------------------- /app/views/shared/_hn_button.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/shared/_hn_button.html.erb -------------------------------------------------------------------------------- /app/views/shared/_navbar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/shared/_navbar.html.erb -------------------------------------------------------------------------------- /app/views/shared/_olark.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/shared/_olark.html.erb -------------------------------------------------------------------------------- /app/views/shared/_pusher.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/shared/_pusher.html.erb -------------------------------------------------------------------------------- /app/views/shared/_repo.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/shared/_repo.html.erb -------------------------------------------------------------------------------- /app/views/shared/_twitter.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/shared/_twitter.html.erb -------------------------------------------------------------------------------- /app/views/shared/_welcome.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/shared/_welcome.html.erb -------------------------------------------------------------------------------- /app/views/shared/mail/activities_chats/_description.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/tilt_mailer/create.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/tilt_mailer/create.html.erb -------------------------------------------------------------------------------- /app/views/tip_mailer/tipped.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/tip_mailer/tipped.html.erb -------------------------------------------------------------------------------- /app/views/users/_assets.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/users/_assets.html.erb -------------------------------------------------------------------------------- /app/views/users/_card.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/users/_card.html.erb -------------------------------------------------------------------------------- /app/views/users/_inline.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/users/_inline.html.erb -------------------------------------------------------------------------------- /app/views/users/_karma.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/users/_karma.html.erb -------------------------------------------------------------------------------- /app/views/users/_more_button.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/users/_more_button.html.erb -------------------------------------------------------------------------------- /app/views/users/_overview.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/users/_overview.html.erb -------------------------------------------------------------------------------- /app/views/users/_user_store.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/users/_user_store.html.erb -------------------------------------------------------------------------------- /app/views/users/assets.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/users/assets.html.erb -------------------------------------------------------------------------------- /app/views/users/avatars/_sm.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/users/avatars/_sm.html.erb -------------------------------------------------------------------------------- /app/views/users/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/users/edit.html.erb -------------------------------------------------------------------------------- /app/views/users/karma.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/users/karma.html -------------------------------------------------------------------------------- /app/views/users/sessions/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/users/sessions/new.html.erb -------------------------------------------------------------------------------- /app/views/users/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/users/show.html.erb -------------------------------------------------------------------------------- /app/views/wip_mailer/wip_created.text.erb: -------------------------------------------------------------------------------- 1 | <%= @wip.description %> 2 | -------------------------------------------------------------------------------- /app/views/wips/_discussion.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/wips/_discussion.html.erb -------------------------------------------------------------------------------- /app/views/wips/_people_store.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/wips/_people_store.html.erb -------------------------------------------------------------------------------- /app/views/wips/award.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/wips/award.js.erb -------------------------------------------------------------------------------- /app/views/wips/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/wips/edit.html.erb -------------------------------------------------------------------------------- /app/views/wips/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/views/wips/new.html.erb -------------------------------------------------------------------------------- /app/workers/add_mark_identity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/workers/add_mark_identity.rb -------------------------------------------------------------------------------- /app/workers/adjust_markings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/workers/adjust_markings.rb -------------------------------------------------------------------------------- /app/workers/api_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/workers/api_worker.rb -------------------------------------------------------------------------------- /app/workers/apply_for_pitch_week.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/workers/apply_for_pitch_week.rb -------------------------------------------------------------------------------- /app/workers/assembly_coin/worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/workers/assembly_coin/worker.rb -------------------------------------------------------------------------------- /app/workers/coins_minted.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/workers/coins_minted.rb -------------------------------------------------------------------------------- /app/workers/create_chat_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/workers/create_chat_message.rb -------------------------------------------------------------------------------- /app/workers/create_product.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/workers/create_product.rb -------------------------------------------------------------------------------- /app/workers/create_project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/workers/create_project.rb -------------------------------------------------------------------------------- /app/workers/delete_user_account.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/workers/delete_user_account.rb -------------------------------------------------------------------------------- /app/workers/deliver_unread_email.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/workers/deliver_unread_email.rb -------------------------------------------------------------------------------- /app/workers/dnsimple/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/workers/dnsimple/client.rb -------------------------------------------------------------------------------- /app/workers/fetch_google_analytics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/workers/fetch_google_analytics.rb -------------------------------------------------------------------------------- /app/workers/find_mentioned_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/workers/find_mentioned_users.rb -------------------------------------------------------------------------------- /app/workers/github/worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/workers/github/worker.rb -------------------------------------------------------------------------------- /app/workers/governance_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/workers/governance_worker.rb -------------------------------------------------------------------------------- /app/workers/indexer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/workers/indexer.rb -------------------------------------------------------------------------------- /app/workers/landline_bridge_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/workers/landline_bridge_worker.rb -------------------------------------------------------------------------------- /app/workers/link_github_account.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/workers/link_github_account.rb -------------------------------------------------------------------------------- /app/workers/mailgun/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/workers/mailgun/client.rb -------------------------------------------------------------------------------- /app/workers/mark_chat_room_as_read.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/workers/mark_chat_room_as_read.rb -------------------------------------------------------------------------------- /app/workers/mark_vector_from_text.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/workers/mark_vector_from_text.rb -------------------------------------------------------------------------------- /app/workers/minter_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/workers/minter_worker.rb -------------------------------------------------------------------------------- /app/workers/monsoon_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/workers/monsoon_worker.rb -------------------------------------------------------------------------------- /app/workers/notify_mentions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/workers/notify_mentions.rb -------------------------------------------------------------------------------- /app/workers/notify_online_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/workers/notify_online_worker.rb -------------------------------------------------------------------------------- /app/workers/notify_subscribers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/workers/notify_subscribers.rb -------------------------------------------------------------------------------- /app/workers/payments_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/workers/payments_worker.rb -------------------------------------------------------------------------------- /app/workers/post_chat_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/workers/post_chat_message.rb -------------------------------------------------------------------------------- /app/workers/publish_activity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/workers/publish_activity.rb -------------------------------------------------------------------------------- /app/workers/push_mention.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/workers/push_mention.rb -------------------------------------------------------------------------------- /app/workers/pusher_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/workers/pusher_worker.rb -------------------------------------------------------------------------------- /app/workers/read_raptor/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/workers/read_raptor/client.rb -------------------------------------------------------------------------------- /app/workers/regroup_stories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/workers/regroup_stories.rb -------------------------------------------------------------------------------- /app/workers/request_info.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/workers/request_info.rb -------------------------------------------------------------------------------- /app/workers/slackhook_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/workers/slackhook_worker.rb -------------------------------------------------------------------------------- /app/workers/slackpipe_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/workers/slackpipe_worker.rb -------------------------------------------------------------------------------- /app/workers/track_acknowledgements.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/workers/track_acknowledgements.rb -------------------------------------------------------------------------------- /app/workers/track_activity_created.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/workers/track_activity_created.rb -------------------------------------------------------------------------------- /app/workers/track_engaged.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/workers/track_engaged.rb -------------------------------------------------------------------------------- /app/workers/track_heart_received.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/workers/track_heart_received.rb -------------------------------------------------------------------------------- /app/workers/track_influenced.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/workers/track_influenced.rb -------------------------------------------------------------------------------- /app/workers/track_vested.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/workers/track_vested.rb -------------------------------------------------------------------------------- /app/workers/tweet_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/workers/tweet_worker.rb -------------------------------------------------------------------------------- /app/workers/update_product_metrics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/workers/update_product_metrics.rb -------------------------------------------------------------------------------- /app/workers/username_rename_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/workers/username_rename_worker.rb -------------------------------------------------------------------------------- /app/workers/view_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/workers/view_worker.rb -------------------------------------------------------------------------------- /app/workers/webhook_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/app/workers/webhook_worker.rb -------------------------------------------------------------------------------- /bin/autospec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/bin/autospec -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/npm-watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/bin/npm-watch -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/bin/rspec -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/bin/spring -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/database.yml.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/config/database.yml.sample -------------------------------------------------------------------------------- /config/database.yml.travis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/config/database.yml.travis -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/1_redis.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/config/initializers/1_redis.rb -------------------------------------------------------------------------------- /config/initializers/analytics_ruby.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/config/initializers/analytics_ruby.rb -------------------------------------------------------------------------------- /config/initializers/bugsnag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/config/initializers/bugsnag.rb -------------------------------------------------------------------------------- /config/initializers/csv_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/config/initializers/csv_renderer.rb -------------------------------------------------------------------------------- /config/initializers/devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/config/initializers/devise.rb -------------------------------------------------------------------------------- /config/initializers/elasticsearch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/config/initializers/elasticsearch.rb -------------------------------------------------------------------------------- /config/initializers/features.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/config/initializers/features.rb -------------------------------------------------------------------------------- /config/initializers/hogan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/config/initializers/hogan.rb -------------------------------------------------------------------------------- /config/initializers/mail_redirect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/config/initializers/mail_redirect.rb -------------------------------------------------------------------------------- /config/initializers/markerb.rb: -------------------------------------------------------------------------------- 1 | Markerb.processing_options = { tables: true } -------------------------------------------------------------------------------- /config/initializers/oink.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/config/initializers/oink.rb -------------------------------------------------------------------------------- /config/initializers/omniauth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/config/initializers/omniauth.rb -------------------------------------------------------------------------------- /config/initializers/secret_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/config/initializers/secret_token.rb -------------------------------------------------------------------------------- /config/initializers/serializers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/config/initializers/serializers.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/sidekiq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/config/initializers/sidekiq.rb -------------------------------------------------------------------------------- /config/initializers/split.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/config/initializers/split.rb -------------------------------------------------------------------------------- /config/initializers/stripe.rb: -------------------------------------------------------------------------------- 1 | Stripe.api_key = ENV['STRIPE_SECRET'] -------------------------------------------------------------------------------- /config/locales/activerecord/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/config/locales/activerecord/en.yml -------------------------------------------------------------------------------- /config/locales/devise.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/config/locales/devise.en.yml -------------------------------------------------------------------------------- /config/locales/domains/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/config/locales/domains/en.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/stories/stories.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/config/locales/stories/stories.en.yml -------------------------------------------------------------------------------- /config/newrelic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/config/newrelic.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/skylight.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/config/skylight.yml -------------------------------------------------------------------------------- /db/development_seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/db/development_seeds.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /db/seeds/calmail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/db/seeds/calmail.md -------------------------------------------------------------------------------- /fig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/fig.yml -------------------------------------------------------------------------------- /lib/active_model/currency.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/active_model/currency.rb -------------------------------------------------------------------------------- /lib/active_model/lists.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/active_model/lists.rb -------------------------------------------------------------------------------- /lib/activerecord/uuid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/activerecord/uuid.rb -------------------------------------------------------------------------------- /lib/avatar.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/avatar.rb -------------------------------------------------------------------------------- /lib/bounty_guidance/valuations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/bounty_guidance/valuations.rb -------------------------------------------------------------------------------- /lib/chat_migrator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/chat_migrator.rb -------------------------------------------------------------------------------- /lib/console_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/console_helpers.rb -------------------------------------------------------------------------------- /lib/core_ext/time_ext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/core_ext/time_ext.rb -------------------------------------------------------------------------------- /lib/dashboard_reporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/dashboard_reporter.rb -------------------------------------------------------------------------------- /lib/errors_offline_template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/errors_offline_template.rb -------------------------------------------------------------------------------- /lib/es_proxy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/es_proxy.rb -------------------------------------------------------------------------------- /lib/ga_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/ga_client.rb -------------------------------------------------------------------------------- /lib/github/payload.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/github/payload.rb -------------------------------------------------------------------------------- /lib/integrations/google.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/integrations/google.rb -------------------------------------------------------------------------------- /lib/integrations/remote.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/integrations/remote.rb -------------------------------------------------------------------------------- /lib/karma/kalkulate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/karma/kalkulate.rb -------------------------------------------------------------------------------- /lib/karma/kronikler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/karma/kronikler.rb -------------------------------------------------------------------------------- /lib/karma/kwesting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/karma/kwesting.rb -------------------------------------------------------------------------------- /lib/mailgun/rails.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/mailgun/rails.rb -------------------------------------------------------------------------------- /lib/marks/mark_basics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/marks/mark_basics.rb -------------------------------------------------------------------------------- /lib/marks/vector_math.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/marks/vector_math.rb -------------------------------------------------------------------------------- /lib/mixpanel_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/mixpanel_client.rb -------------------------------------------------------------------------------- /lib/money.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/money.rb -------------------------------------------------------------------------------- /lib/offline_template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/offline_template.rb -------------------------------------------------------------------------------- /lib/open_assets/balance_check.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/open_assets/balance_check.rb -------------------------------------------------------------------------------- /lib/open_assets/blockchain_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/open_assets/blockchain_server.rb -------------------------------------------------------------------------------- /lib/open_assets/cryptodata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/open_assets/cryptodata.rb -------------------------------------------------------------------------------- /lib/open_assets/remote.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/open_assets/remote.rb -------------------------------------------------------------------------------- /lib/open_assets/transactions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/open_assets/transactions.rb -------------------------------------------------------------------------------- /lib/open_assets/util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/open_assets/util.rb -------------------------------------------------------------------------------- /lib/poster_image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/poster_image.rb -------------------------------------------------------------------------------- /lib/randomize_all_the_things.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/randomize_all_the_things.rb -------------------------------------------------------------------------------- /lib/readraptor_tracker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/readraptor_tracker.rb -------------------------------------------------------------------------------- /lib/redis_cache.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/redis_cache.rb -------------------------------------------------------------------------------- /lib/s3_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/s3_policy.rb -------------------------------------------------------------------------------- /lib/sidekiq/middleware/log_stats.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/sidekiq/middleware/log_stats.rb -------------------------------------------------------------------------------- /lib/string_colors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/string_colors.rb -------------------------------------------------------------------------------- /lib/stripe_customer_ensurer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/stripe_customer_ensurer.rb -------------------------------------------------------------------------------- /lib/tasks/activity.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/tasks/activity.rake -------------------------------------------------------------------------------- /lib/tasks/awards.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/tasks/awards.rake -------------------------------------------------------------------------------- /lib/tasks/blockchain.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/tasks/blockchain.rake -------------------------------------------------------------------------------- /lib/tasks/bounties.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/tasks/bounties.rake -------------------------------------------------------------------------------- /lib/tasks/campaigns.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/tasks/campaigns.rake -------------------------------------------------------------------------------- /lib/tasks/chat_rooms.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/tasks/chat_rooms.rake -------------------------------------------------------------------------------- /lib/tasks/customerio.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/tasks/customerio.rake -------------------------------------------------------------------------------- /lib/tasks/db.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/tasks/db.rake -------------------------------------------------------------------------------- /lib/tasks/discussions.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/tasks/discussions.rake -------------------------------------------------------------------------------- /lib/tasks/domains.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/tasks/domains.rake -------------------------------------------------------------------------------- /lib/tasks/emails.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/tasks/emails.rake -------------------------------------------------------------------------------- /lib/tasks/es.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/tasks/es.rake -------------------------------------------------------------------------------- /lib/tasks/governance.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/tasks/governance.rake -------------------------------------------------------------------------------- /lib/tasks/ideas.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/tasks/ideas.rake -------------------------------------------------------------------------------- /lib/tasks/jests.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/tasks/jests.rake -------------------------------------------------------------------------------- /lib/tasks/js_routes.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/tasks/js_routes.rake -------------------------------------------------------------------------------- /lib/tasks/leaderboard.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/tasks/leaderboard.rake -------------------------------------------------------------------------------- /lib/tasks/mailchimp.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/tasks/mailchimp.rake -------------------------------------------------------------------------------- /lib/tasks/markclusters.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/tasks/markclusters.rake -------------------------------------------------------------------------------- /lib/tasks/marks.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/tasks/marks.rake -------------------------------------------------------------------------------- /lib/tasks/metrics.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/tasks/metrics.rake -------------------------------------------------------------------------------- /lib/tasks/news_feed_items.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/tasks/news_feed_items.rake -------------------------------------------------------------------------------- /lib/tasks/payments.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/tasks/payments.rake -------------------------------------------------------------------------------- /lib/tasks/platform_metrics.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/tasks/platform_metrics.rake -------------------------------------------------------------------------------- /lib/tasks/posts.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/tasks/posts.rake -------------------------------------------------------------------------------- /lib/tasks/product_metrics.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/tasks/product_metrics.rake -------------------------------------------------------------------------------- /lib/tasks/products.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/tasks/products.rake -------------------------------------------------------------------------------- /lib/tasks/redis.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/tasks/redis.rake -------------------------------------------------------------------------------- /lib/tasks/reporting.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/tasks/reporting.rake -------------------------------------------------------------------------------- /lib/tasks/rspec.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/tasks/rspec.rake -------------------------------------------------------------------------------- /lib/tasks/showcase.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/tasks/showcase.rake -------------------------------------------------------------------------------- /lib/tasks/static.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/tasks/static.rake -------------------------------------------------------------------------------- /lib/tasks/stats.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/tasks/stats.rake -------------------------------------------------------------------------------- /lib/tasks/statwing.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/tasks/statwing.rake -------------------------------------------------------------------------------- /lib/tasks/stories.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/tasks/stories.rake -------------------------------------------------------------------------------- /lib/tasks/suggestions.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/tasks/suggestions.rake -------------------------------------------------------------------------------- /lib/tasks/trends.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/tasks/trends.rake -------------------------------------------------------------------------------- /lib/tasks/tweets.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/tasks/tweets.rake -------------------------------------------------------------------------------- /lib/tasks/update_karma.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/tasks/update_karma.rake -------------------------------------------------------------------------------- /lib/tasks/user.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/tasks/user.rake -------------------------------------------------------------------------------- /lib/timed_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/timed_set.rb -------------------------------------------------------------------------------- /lib/user_employment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/user_employment.rb -------------------------------------------------------------------------------- /lib/versioning.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/versioning.rb -------------------------------------------------------------------------------- /lib/woeful_products.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/lib/woeful_products.rb -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/package.json -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/public/422.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/google7be6163b6897b65a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/public/google7be6163b6897b65a.html -------------------------------------------------------------------------------- /public/googleadcfabc1b3b11322.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/public/googleadcfabc1b3b11322.html -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/public/robots.txt -------------------------------------------------------------------------------- /spec/features/bounties_index_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/features/bounties_index_spec.rb -------------------------------------------------------------------------------- /spec/features/bounties_show_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/features/bounties_show_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/faq_groups/rock.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: What's the saddest of all keys? 3 | --- 4 | 5 | D minor 6 | -------------------------------------------------------------------------------- /spec/fixtures/github/push.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/fixtures/github/push.json -------------------------------------------------------------------------------- /spec/javascripts/application_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/javascripts/application_spec.js -------------------------------------------------------------------------------- /spec/javascripts/fixtures/readraptor_meta_tag.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spec/javascripts/jest_env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/javascripts/jest_env.js -------------------------------------------------------------------------------- /spec/javascripts/preprocessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/javascripts/preprocessor.js -------------------------------------------------------------------------------- /spec/javascripts/spec_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/javascripts/spec_helper.js -------------------------------------------------------------------------------- /spec/lib/avatar_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/lib/avatar_spec.rb -------------------------------------------------------------------------------- /spec/lib/core_ext/time_ext_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/lib/core_ext/time_ext_spec.rb -------------------------------------------------------------------------------- /spec/lib/github_payload_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/lib/github_payload_spec.rb -------------------------------------------------------------------------------- /spec/lib/poster_image_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/lib/poster_image_spec.rb -------------------------------------------------------------------------------- /spec/lib/timed_set_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/lib/timed_set_spec.rb -------------------------------------------------------------------------------- /spec/mailers/heart_mailer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/mailers/heart_mailer_spec.rb -------------------------------------------------------------------------------- /spec/mailers/post_mailer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/mailers/post_mailer_spec.rb -------------------------------------------------------------------------------- /spec/mailers/unread_mailer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/mailers/unread_mailer_spec.rb -------------------------------------------------------------------------------- /spec/models/activity_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/activity_spec.rb -------------------------------------------------------------------------------- /spec/models/attachment_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/attachment_spec.rb -------------------------------------------------------------------------------- /spec/models/auto_bounty_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/auto_bounty_spec.rb -------------------------------------------------------------------------------- /spec/models/auto_post_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/auto_post_spec.rb -------------------------------------------------------------------------------- /spec/models/auto_tip_contract_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/auto_tip_contract_spec.rb -------------------------------------------------------------------------------- /spec/models/award_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/award_spec.rb -------------------------------------------------------------------------------- /spec/models/btc_payment_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/btc_payment_spec.rb -------------------------------------------------------------------------------- /spec/models/campfire_notifier_spec.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/models/checklist_handler_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/checklist_handler_spec.rb -------------------------------------------------------------------------------- /spec/models/chronicle_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/chronicle_spec.rb -------------------------------------------------------------------------------- /spec/models/code_deliverable_spec.rb: -------------------------------------------------------------------------------- 1 | require 'spec_helper' 2 | 3 | describe CodeDeliverable do 4 | end 5 | -------------------------------------------------------------------------------- /spec/models/coin_info_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/coin_info_spec.rb -------------------------------------------------------------------------------- /spec/models/coins_minted_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/coins_minted_spec.rb -------------------------------------------------------------------------------- /spec/models/counter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/counter_spec.rb -------------------------------------------------------------------------------- /spec/models/csv_compiler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/csv_compiler.rb -------------------------------------------------------------------------------- /spec/models/deed_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/deed_spec.rb -------------------------------------------------------------------------------- /spec/models/deliverable_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/deliverable_spec.rb -------------------------------------------------------------------------------- /spec/models/discussion_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/discussion_spec.rb -------------------------------------------------------------------------------- /spec/models/faq_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/faq_group.rb -------------------------------------------------------------------------------- /spec/models/filter_wips_query_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/filter_wips_query_spec.rb -------------------------------------------------------------------------------- /spec/models/finance_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/finance_spec.rb -------------------------------------------------------------------------------- /spec/models/financial/account_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/financial/account_spec.rb -------------------------------------------------------------------------------- /spec/models/financial/amount_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/financial/amount_spec.rb -------------------------------------------------------------------------------- /spec/models/global_interest_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/global_interest_spec.rb -------------------------------------------------------------------------------- /spec/models/idea_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/idea_spec.rb -------------------------------------------------------------------------------- /spec/models/interpreter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/interpreter_spec.rb -------------------------------------------------------------------------------- /spec/models/invite_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/invite_spec.rb -------------------------------------------------------------------------------- /spec/models/kwest_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/kwest_spec.rb -------------------------------------------------------------------------------- /spec/models/make_marks_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/make_marks_spec.rb -------------------------------------------------------------------------------- /spec/models/mark_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/mark_spec.rb -------------------------------------------------------------------------------- /spec/models/mark_to_mark_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/mark_to_mark_spec.rb -------------------------------------------------------------------------------- /spec/models/marking_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/marking_spec.rb -------------------------------------------------------------------------------- /spec/models/metric_spec.rb: -------------------------------------------------------------------------------- 1 | require 'spec_helper' 2 | 3 | describe Metric do 4 | end 5 | -------------------------------------------------------------------------------- /spec/models/news_feed_item_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/news_feed_item_spec.rb -------------------------------------------------------------------------------- /spec/models/news_feed_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/news_feed_spec.rb -------------------------------------------------------------------------------- /spec/models/newsletter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/newsletter_spec.rb -------------------------------------------------------------------------------- /spec/models/partner_spec.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/models/post_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/post_spec.rb -------------------------------------------------------------------------------- /spec/models/product_metric_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/product_metric_spec.rb -------------------------------------------------------------------------------- /spec/models/product_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/product_spec.rb -------------------------------------------------------------------------------- /spec/models/product_trend_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/product_trend_spec.rb -------------------------------------------------------------------------------- /spec/models/proposal_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/proposal_spec.rb -------------------------------------------------------------------------------- /spec/models/query_marks_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/query_marks_spec.rb -------------------------------------------------------------------------------- /spec/models/screenshot_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/screenshot_spec.rb -------------------------------------------------------------------------------- /spec/models/status_message_spec.rb: -------------------------------------------------------------------------------- 1 | require 'spec_helper' 2 | 3 | describe StatusMessage do 4 | end 5 | -------------------------------------------------------------------------------- /spec/models/story_sentences_spec.rb: -------------------------------------------------------------------------------- 1 | describe StorySentences do 2 | 3 | end 4 | -------------------------------------------------------------------------------- /spec/models/story_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/story_spec.rb -------------------------------------------------------------------------------- /spec/models/stream_event_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/stream_event_spec.rb -------------------------------------------------------------------------------- /spec/models/subscriber_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/subscriber_spec.rb -------------------------------------------------------------------------------- /spec/models/task_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/task_spec.rb -------------------------------------------------------------------------------- /spec/models/team_membership_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/team_membership_spec.rb -------------------------------------------------------------------------------- /spec/models/top_bounty_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/top_bounty_spec.rb -------------------------------------------------------------------------------- /spec/models/top_product_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/top_product_spec.rb -------------------------------------------------------------------------------- /spec/models/transaction_entry_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/transaction_entry_spec.rb -------------------------------------------------------------------------------- /spec/models/tweeter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/tweeter_spec.rb -------------------------------------------------------------------------------- /spec/models/user_contribution_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/user_contribution_spec.rb -------------------------------------------------------------------------------- /spec/models/user_identity_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/user_identity_spec.rb -------------------------------------------------------------------------------- /spec/models/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/user_spec.rb -------------------------------------------------------------------------------- /spec/models/vesting_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/vesting_spec.rb -------------------------------------------------------------------------------- /spec/models/viewing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/viewing_spec.rb -------------------------------------------------------------------------------- /spec/models/watching_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/watching_spec.rb -------------------------------------------------------------------------------- /spec/models/wip/worker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/wip/worker_spec.rb -------------------------------------------------------------------------------- /spec/models/wip_group_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/wip_group_spec.rb -------------------------------------------------------------------------------- /spec/models/wip_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/wip_spec.rb -------------------------------------------------------------------------------- /spec/models/work_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/models/work_spec.rb -------------------------------------------------------------------------------- /spec/requests/user_signup_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/requests/user_signup_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/blueprints.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/support/blueprints.rb -------------------------------------------------------------------------------- /spec/support/devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/support/devise.rb -------------------------------------------------------------------------------- /spec/support/fake.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/support/fake.rb -------------------------------------------------------------------------------- /spec/support/fake_stripe_customer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/support/fake_stripe_customer.rb -------------------------------------------------------------------------------- /spec/support/hash.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/support/hash.rb -------------------------------------------------------------------------------- /spec/support/mailer_test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/support/mailer_test_helper.rb -------------------------------------------------------------------------------- /spec/support/spec_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/support/spec_helpers.rb -------------------------------------------------------------------------------- /spec/support/vcr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/support/vcr.rb -------------------------------------------------------------------------------- /spec/teaspoon_env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/teaspoon_env.rb -------------------------------------------------------------------------------- /spec/workers/adjust_markings_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/workers/adjust_markings_spec.rb -------------------------------------------------------------------------------- /spec/workers/create_project_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/workers/create_project_spec.rb -------------------------------------------------------------------------------- /spec/workers/publish_activity_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/workers/publish_activity_spec.rb -------------------------------------------------------------------------------- /spec/workers/view_worker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/spec/workers/view_worker_spec.rb -------------------------------------------------------------------------------- /vagrant.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/vagrant.yml.example -------------------------------------------------------------------------------- /vagrant/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/vagrant/bootstrap.sh -------------------------------------------------------------------------------- /vagrant/meta-box/http/preseed.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/vagrant/meta-box/http/preseed.cfg -------------------------------------------------------------------------------- /vagrant/meta-box/rebuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/vagrant/meta-box/rebuild.sh -------------------------------------------------------------------------------- /vagrant/meta-box/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemblymade/meta/HEAD/vagrant/meta-box/template.json --------------------------------------------------------------------------------