├── .dockerignore ├── .env.dev ├── .env.test ├── .gitignore ├── .rspec ├── .ruby-version ├── .travis.yml ├── CONTRIBUTING.md ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Procfile ├── README.md ├── Rakefile ├── app.json ├── app ├── assets │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── images │ │ ├── Bountysource-190x60.png │ │ ├── Bountysource-green.png │ │ ├── Bountysource-square-100.png │ │ ├── Bountysource-white.png │ │ ├── GitHub-Mark-32px.png │ │ ├── ajax-loader.gif │ │ ├── anon.jpg │ │ ├── backgrounds │ │ │ ├── home-desk.svg │ │ │ └── salt_splash.svg │ │ ├── bird_blue_32.png │ │ ├── bountysource-grey.png │ │ ├── bs-anon.png │ │ ├── checkbox.png │ │ ├── checkbox_checked.png │ │ ├── extension1.png │ │ ├── facebook_share_32.png │ │ ├── favicon-bitbucket.png │ │ ├── favicon-bugzilla.png │ │ ├── favicon-email.png │ │ ├── favicon-facebook.png │ │ ├── favicon-github-white.png │ │ ├── favicon-github.png │ │ ├── favicon-jira.png │ │ ├── favicon-launchpad.png │ │ ├── favicon-pivotal.png │ │ ├── favicon-sourceforge.png │ │ ├── favicon-trac.png │ │ ├── favicon-twitter.png │ │ ├── github-plugin-example.png │ │ ├── github-plugin-example2.png │ │ ├── github-plugin.png │ │ ├── github-white-20.png │ │ ├── github-white-24.png │ │ ├── github-white.png │ │ ├── google-wallet.png │ │ ├── gplus-32.png │ │ ├── icons │ │ │ ├── icon_advanced_search.svg │ │ │ ├── icon_bitcoin.svg │ │ │ ├── icon_canya.svg │ │ │ ├── icon_copy.svg │ │ │ ├── icon_edit.svg │ │ │ ├── icon_ethereum.svg │ │ │ ├── icon_facebook.svg │ │ │ ├── icon_facebook_circle.svg │ │ │ ├── icon_facebook_white.svg │ │ │ ├── icon_github.svg │ │ │ ├── icon_googleplus_circle.svg │ │ │ ├── icon_googleplus_white.svg │ │ │ ├── icon_like_selected.svg │ │ │ ├── icon_like_unselected.svg │ │ │ ├── icon_lock.svg │ │ │ ├── icon_mail.svg │ │ │ ├── icon_person.svg │ │ │ ├── icon_reddit_circle.svg │ │ │ ├── icon_reddit_white.svg │ │ │ ├── icon_search.svg │ │ │ ├── icon_timestamp.svg │ │ │ ├── icon_trash.svg │ │ │ ├── icon_twitter.svg │ │ │ ├── icon_twitter_circle.svg │ │ │ └── icon_twitter_white.svg │ │ ├── logos.ai │ │ ├── logos │ │ │ ├── alternate.svg │ │ │ ├── main.svg │ │ │ └── metamask-logo.svg │ │ ├── paypal.png │ │ ├── thumbsup-20.png │ │ ├── thumbsup-32.png │ │ └── thumbsup.png │ ├── javascripts │ │ ├── admin.js.erb │ │ ├── admin │ │ │ ├── access_tokens │ │ │ │ ├── index.html │ │ │ │ └── index.js │ │ │ ├── accounts │ │ │ │ ├── index.html │ │ │ │ ├── index.js │ │ │ │ ├── show.html │ │ │ │ └── show.js │ │ │ ├── activity_log │ │ │ │ ├── index.html │ │ │ │ └── index.js │ │ │ ├── ad_spaces │ │ │ │ ├── edit.html │ │ │ │ ├── edit.js │ │ │ │ ├── index.html │ │ │ │ ├── index.js │ │ │ │ ├── new.html │ │ │ │ └── new.js │ │ │ ├── api.js │ │ │ ├── app.js │ │ │ ├── auth │ │ │ │ ├── auth.html │ │ │ │ └── auth.js │ │ │ ├── bounties │ │ │ │ ├── index.html │ │ │ │ ├── index.js │ │ │ │ ├── show.html │ │ │ │ ├── show.js │ │ │ │ ├── unacknowledged.html │ │ │ │ └── unacknowledged.js │ │ │ ├── bounty_claims │ │ │ │ ├── index.html │ │ │ │ ├── index.js │ │ │ │ ├── index_priority.html │ │ │ │ ├── index_priority.js │ │ │ │ ├── partials │ │ │ │ │ ├── claims_table.html │ │ │ │ │ ├── nav_tabs.html │ │ │ │ │ └── nav_tabs.js │ │ │ │ ├── show.html │ │ │ │ └── show.js │ │ │ ├── bounty_searches │ │ │ │ ├── index.html │ │ │ │ └── index.js │ │ │ ├── cash_outs │ │ │ │ ├── directives │ │ │ │ │ ├── cashOutTable.html │ │ │ │ │ └── cashOutTable.js │ │ │ │ ├── pending.html │ │ │ │ ├── pending.js │ │ │ │ ├── sent.html │ │ │ │ └── sent.js │ │ │ ├── crypto_pay_outs │ │ │ │ ├── directives │ │ │ │ │ ├── cryptoPayOutTable.html │ │ │ │ │ └── cryptoPayOutTable.js │ │ │ │ ├── pending.html │ │ │ │ ├── pending.js │ │ │ │ ├── processing.html │ │ │ │ ├── processing.js │ │ │ │ ├── sent.html │ │ │ │ └── sent.js │ │ │ ├── delayed_jobs │ │ │ │ ├── index.html │ │ │ │ ├── index.js │ │ │ │ └── partials │ │ │ │ │ └── job_modal.html │ │ │ ├── developer_goals │ │ │ │ ├── index.html │ │ │ │ └── index.js │ │ │ ├── directives.js │ │ │ ├── events │ │ │ │ ├── _table.html │ │ │ │ ├── index.html │ │ │ │ └── index.js │ │ │ ├── filters.js │ │ │ ├── follows │ │ │ │ ├── index.html │ │ │ │ └── index.js │ │ │ ├── fundraisers │ │ │ │ ├── index.html │ │ │ │ ├── index.js │ │ │ │ ├── show.html.erb │ │ │ │ └── show.js │ │ │ ├── github_api_errors │ │ │ │ ├── index.html │ │ │ │ └── index.js │ │ │ ├── home │ │ │ │ ├── home.js │ │ │ │ ├── login.html │ │ │ │ ├── login.js │ │ │ │ ├── search.js │ │ │ │ └── search_results.html.erb │ │ │ ├── issue_addresses │ │ │ │ ├── index.html │ │ │ │ ├── index.js │ │ │ │ ├── show.html │ │ │ │ └── show.js │ │ │ ├── issues │ │ │ │ ├── closed.html │ │ │ │ ├── controllers │ │ │ │ │ ├── closed.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── nav_tabs.js │ │ │ │ │ ├── open.js │ │ │ │ │ ├── paid_out.js │ │ │ │ │ └── show.js │ │ │ │ ├── index.html │ │ │ │ ├── open.html │ │ │ │ ├── paid_out.html │ │ │ │ ├── paid_out.js │ │ │ │ ├── partials │ │ │ │ │ ├── issue_table.html │ │ │ │ │ └── nav_tabs.html │ │ │ │ └── show.html │ │ │ ├── kpi │ │ │ │ ├── kpi.html │ │ │ │ ├── kpi.js │ │ │ │ ├── new_kpi.html │ │ │ │ └── new_kpi.js │ │ │ ├── layout │ │ │ │ ├── navbar.html.erb │ │ │ │ ├── navbar.js │ │ │ │ └── not_found.html │ │ │ ├── main.js │ │ │ ├── newsletters │ │ │ │ ├── newsletters.html.erb │ │ │ │ └── newsletters.js │ │ │ ├── orders │ │ │ │ ├── show.html │ │ │ │ └── show.js │ │ │ ├── people │ │ │ │ ├── _show_tabs.html │ │ │ │ ├── celebrities.html │ │ │ │ ├── celebrities.js │ │ │ │ ├── index.html │ │ │ │ ├── index.js │ │ │ │ ├── show.js │ │ │ │ ├── show_bounties.html │ │ │ │ ├── show_events.html │ │ │ │ ├── show_financial.html │ │ │ │ ├── show_info.html │ │ │ │ ├── show_misc.html │ │ │ │ ├── show_salt.html │ │ │ │ └── show_team_payins.html │ │ │ ├── pledges │ │ │ │ ├── index.html │ │ │ │ ├── index.js │ │ │ │ ├── show.html │ │ │ │ └── show.js │ │ │ ├── plugins │ │ │ │ ├── index.html │ │ │ │ └── index.js │ │ │ ├── reports │ │ │ │ ├── accounts.html │ │ │ │ ├── accounts.js │ │ │ │ ├── directives.js │ │ │ │ ├── partials │ │ │ │ │ ├── header.html │ │ │ │ │ └── transaction_modal.html │ │ │ │ ├── paypal.html │ │ │ │ ├── paypal.js │ │ │ │ ├── reports.html │ │ │ │ ├── reports.js │ │ │ │ └── templates │ │ │ │ │ ├── escrowReport.html │ │ │ │ │ └── liabilityReport.html │ │ │ ├── request_for_proposal │ │ │ │ ├── rfp.html │ │ │ │ └── rfp.js │ │ │ ├── searches │ │ │ │ ├── searches.html │ │ │ │ └── searches.js │ │ │ ├── services.js │ │ │ ├── shorts │ │ │ │ ├── index.html │ │ │ │ └── index.js │ │ │ ├── sidebar │ │ │ │ ├── sidebar.html │ │ │ │ └── sidebar.js │ │ │ ├── signin │ │ │ │ ├── callback.js │ │ │ │ ├── reset.js │ │ │ │ └── signin.js │ │ │ ├── solutions │ │ │ │ ├── index.html │ │ │ │ └── index.js │ │ │ ├── tags │ │ │ │ ├── show.html │ │ │ │ └── show.js │ │ │ ├── takedowns │ │ │ │ ├── index.html │ │ │ │ └── index.js │ │ │ ├── team_claims │ │ │ │ ├── index.html │ │ │ │ └── index.js │ │ │ ├── team_payins │ │ │ │ ├── index.html │ │ │ │ ├── index.js │ │ │ │ ├── show.html │ │ │ │ └── show.js │ │ │ ├── teams │ │ │ │ ├── index.html.erb │ │ │ │ ├── index.js │ │ │ │ ├── show.html.erb │ │ │ │ └── show.js │ │ │ ├── tracker_merges │ │ │ │ ├── index.html │ │ │ │ └── index.js │ │ │ ├── trackers │ │ │ │ ├── index.html │ │ │ │ ├── index.js │ │ │ │ ├── show.html │ │ │ │ └── show.js │ │ │ └── transactions │ │ │ │ ├── edit.html │ │ │ │ ├── edit.js │ │ │ │ ├── index.html │ │ │ │ ├── index.js │ │ │ │ ├── index_unaudited.html │ │ │ │ ├── index_unaudited.js │ │ │ │ ├── new.html │ │ │ │ ├── new.js │ │ │ │ ├── new_bank_transfer.html │ │ │ │ ├── new_bank_transfer.js │ │ │ │ ├── new_cash_out.html │ │ │ │ ├── new_cash_out.js │ │ │ │ ├── partials │ │ │ │ ├── transaction_form.html │ │ │ │ └── transaction_form.js │ │ │ │ ├── show.html │ │ │ │ └── show.js │ │ ├── app.js.erb │ │ ├── app │ │ │ ├── about │ │ │ │ ├── fees.html │ │ │ │ ├── learn.html │ │ │ │ ├── privacy_policy.html │ │ │ │ ├── static.js │ │ │ │ ├── stats.html │ │ │ │ ├── stats.js │ │ │ │ └── terms.html │ │ │ ├── activity │ │ │ │ ├── activity.js │ │ │ │ ├── bounties.html.erb │ │ │ │ ├── bounties.js │ │ │ │ ├── bounty_claims.html │ │ │ │ ├── bounty_claims.js │ │ │ │ ├── cashOuts │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.js │ │ │ │ │ ├── new.html │ │ │ │ │ ├── new.js │ │ │ │ │ └── new │ │ │ │ │ │ ├── mailingAddress.js │ │ │ │ │ │ ├── paymentMethod.js │ │ │ │ │ │ └── permanentAddress.js │ │ │ │ ├── crypto_bounties.html.erb │ │ │ │ ├── crypto_bounties.js │ │ │ │ ├── crypto_pay_outs.html │ │ │ │ ├── crypto_pay_outs.js │ │ │ │ ├── pacts.html │ │ │ │ ├── pacts.js │ │ │ │ ├── templates │ │ │ │ │ ├── navTabs.html │ │ │ │ │ └── navTabs.js │ │ │ │ ├── timeline.html │ │ │ │ └── timeline.js │ │ │ ├── app.js │ │ │ ├── auth │ │ │ │ ├── auth.html │ │ │ │ └── auth.js │ │ │ ├── bounties │ │ │ │ ├── search.html.erb │ │ │ │ └── search.js │ │ │ ├── crypto_dep_bundle.js │ │ │ ├── directives │ │ │ │ └── issues │ │ │ │ │ ├── backersTab │ │ │ │ │ ├── backersTab.html.haml │ │ │ │ │ └── backersTab.js │ │ │ │ │ ├── teamAboutPanel │ │ │ │ │ ├── teamAboutPanel.html.haml │ │ │ │ │ └── teamAboutPanel.js │ │ │ │ │ └── updatesTab │ │ │ │ │ ├── updatesTab.html.haml │ │ │ │ │ └── updatesTab.js │ │ │ ├── env.js │ │ │ ├── extension │ │ │ │ ├── index.html.erb │ │ │ │ └── index.js │ │ │ ├── google_analytics.js │ │ │ ├── home │ │ │ │ ├── landing_page.html.erb │ │ │ │ ├── landing_page.js │ │ │ │ ├── post_bounty_modal.html │ │ │ │ ├── search.html │ │ │ │ ├── search.js │ │ │ │ ├── timeline.html.erb │ │ │ │ └── timeline.js │ │ │ ├── issues │ │ │ │ ├── _payment_method.html │ │ │ │ ├── _show_backer_box.html.haml │ │ │ │ ├── _show_developer_actions.html.haml │ │ │ │ ├── _show_hunter_box.html.haml │ │ │ │ ├── developers.js │ │ │ │ ├── index.html │ │ │ │ ├── index.js │ │ │ │ ├── show.html.haml │ │ │ │ ├── show.js │ │ │ │ ├── templates │ │ │ │ │ ├── breadcrumb.html │ │ │ │ │ ├── contribute_accordian.html.haml │ │ │ │ │ ├── crypto_form.html.haml │ │ │ │ │ ├── crypto_form_with_qr.html.haml │ │ │ │ │ ├── options │ │ │ │ │ │ ├── expiration_down.html │ │ │ │ │ │ ├── expiration_up.html │ │ │ │ │ │ ├── promotion.html │ │ │ │ │ │ └── upon_expiration.html │ │ │ │ │ └── usd_form.html.haml │ │ │ │ ├── test.html │ │ │ │ ├── thumbs.html │ │ │ │ └── thumbs.js │ │ │ ├── layout │ │ │ │ ├── footer.html.erb │ │ │ │ ├── layout.js │ │ │ │ ├── navbar.html.erb │ │ │ │ ├── navbar.js │ │ │ │ ├── notFound.html │ │ │ │ └── templates │ │ │ │ │ ├── devToolsModal.html │ │ │ │ │ ├── footerCompany.html │ │ │ │ │ ├── footerContactUs.html │ │ │ │ │ ├── footerLegal.html │ │ │ │ │ └── footerPullRequests.html │ │ │ ├── legacy_route.js │ │ │ ├── mixpanel.js │ │ │ ├── notifications │ │ │ │ ├── unsubscribe.html │ │ │ │ └── unsubscribe.js │ │ │ ├── orders │ │ │ │ ├── index.html │ │ │ │ ├── index.js │ │ │ │ ├── share.html.erb │ │ │ │ ├── show.html.erb │ │ │ │ └── show.js │ │ │ ├── pacts │ │ │ │ ├── create │ │ │ │ │ ├── create-pact-controller.js │ │ │ │ │ ├── create-pact.html.erb │ │ │ │ │ └── templates │ │ │ │ │ │ ├── anon-img.html.haml │ │ │ │ │ │ ├── current-person-img.html.haml │ │ │ │ │ │ └── payment-form.html │ │ │ │ └── single-pact │ │ │ │ │ ├── single-pact-controller.js │ │ │ │ │ └── single-pact.html.haml │ │ │ ├── people │ │ │ │ ├── activity.html.erb │ │ │ │ ├── activity.js │ │ │ │ └── templates │ │ │ │ │ └── header.html │ │ │ ├── press │ │ │ │ ├── index.html │ │ │ │ └── index.js │ │ │ ├── settings │ │ │ │ ├── accounts.html │ │ │ │ ├── accounts.js │ │ │ │ ├── profile.html │ │ │ │ ├── profile.js │ │ │ │ ├── tabs.html │ │ │ │ └── tabs.js │ │ │ ├── signin │ │ │ │ ├── callback.html │ │ │ │ ├── callback.js │ │ │ │ ├── reset.html │ │ │ │ ├── reset.js │ │ │ │ ├── signin.html │ │ │ │ ├── signin.js.erb │ │ │ │ ├── verify.html │ │ │ │ ├── verify.js │ │ │ │ ├── verify_email.html │ │ │ │ └── verify_email.js │ │ │ ├── teams │ │ │ │ ├── _new_team_request_invite.html │ │ │ │ ├── _share_badge.html │ │ │ │ ├── _tags.html │ │ │ │ ├── _team_table.html.haml │ │ │ │ ├── backers.html │ │ │ │ ├── base.js │ │ │ │ ├── bounties.html │ │ │ │ ├── bounties.js │ │ │ │ ├── fundraiser.html │ │ │ │ ├── fundraiser.js │ │ │ │ ├── index.html │ │ │ │ ├── index.js │ │ │ │ ├── issue_suggestions │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.js │ │ │ │ │ ├── new.html │ │ │ │ │ └── new.js │ │ │ │ ├── issues.html.erb │ │ │ │ ├── issues.js │ │ │ │ ├── join.html │ │ │ │ ├── join.js │ │ │ │ ├── manage_members.html │ │ │ │ ├── manage_members.js │ │ │ │ ├── manage_projects.html │ │ │ │ ├── manage_projects.js │ │ │ │ ├── members.html │ │ │ │ ├── new.html.erb │ │ │ │ ├── new.js │ │ │ │ ├── rewards.html │ │ │ │ ├── rewards.js │ │ │ │ ├── settings.html │ │ │ │ ├── settings.js │ │ │ │ ├── show.html.haml │ │ │ │ ├── show.js │ │ │ │ ├── suggested_issues.html │ │ │ │ ├── suggested_issues.js │ │ │ │ ├── tagged.html.haml │ │ │ │ ├── tagged.js │ │ │ │ ├── team_badge_controller.js │ │ │ │ ├── team_badge_modal.html │ │ │ │ ├── teams.js │ │ │ │ ├── update.html │ │ │ │ ├── update.js │ │ │ │ ├── update_new.html │ │ │ │ ├── update_new.js │ │ │ │ ├── updates.html │ │ │ │ └── updates.js │ │ │ ├── tools │ │ │ │ ├── all.html │ │ │ │ ├── base.js │ │ │ │ ├── installed.html │ │ │ │ ├── installed.js │ │ │ │ └── templates │ │ │ │ │ ├── header.html │ │ │ │ │ ├── info.html.erb │ │ │ │ │ ├── plugin_settings.html │ │ │ │ │ ├── tabs.html │ │ │ │ │ └── trackers.html │ │ │ └── trackers │ │ │ │ ├── _tracker_header.html │ │ │ │ ├── index.html │ │ │ │ ├── index.js │ │ │ │ ├── nav_tabs.js │ │ │ │ ├── show.html.erb │ │ │ │ ├── show.js │ │ │ │ ├── templates │ │ │ │ ├── nav_tabs.html │ │ │ │ └── tracker_badge_modal.html │ │ │ │ └── tracker_badge_controller.js │ │ ├── common │ │ │ ├── angularTypeaheadOverride.js │ │ │ ├── constants │ │ │ │ ├── countries.js │ │ │ │ ├── defaultRouteOptions.js │ │ │ │ ├── personResolver.js │ │ │ │ └── usStates.js │ │ │ ├── directives │ │ │ │ ├── abRandomize │ │ │ │ │ └── abRandomize.js │ │ │ │ ├── activityTimeline │ │ │ │ │ ├── activityTimeline.html │ │ │ │ │ └── activityTimeline.js │ │ │ │ ├── addressForm │ │ │ │ │ ├── addressFormInputGroups.html │ │ │ │ │ └── addressFormInputGroups.js │ │ │ │ ├── addressSelect │ │ │ │ │ ├── addressSelect.html │ │ │ │ │ └── addressSelect.js │ │ │ │ ├── backerList │ │ │ │ │ ├── backerList.html │ │ │ │ │ └── backerList.js │ │ │ │ ├── backerThumbnails │ │ │ │ │ ├── backerThumbnails.html.erb │ │ │ │ │ └── backerThumbnails.js │ │ │ │ ├── claimContent │ │ │ │ │ ├── claimContent.html │ │ │ │ │ └── claimContent.js │ │ │ │ ├── favicon │ │ │ │ │ ├── favicon.html │ │ │ │ │ └── favicon.js │ │ │ │ ├── formattedAddress │ │ │ │ │ ├── formattedAddress.html │ │ │ │ │ └── formattedAddress.js │ │ │ │ ├── fundraiserEditForm │ │ │ │ │ ├── fundraiserEditForm.html │ │ │ │ │ └── fundraiserEditForm.js │ │ │ │ ├── fundraiserSideBar │ │ │ │ │ ├── fundraiserSideBar.html │ │ │ │ │ └── fundraiserSideBar.js │ │ │ │ ├── fundraiserTemplate │ │ │ │ │ ├── fundraiserTemplate.html.erb │ │ │ │ │ └── fundraiserTemplate.js │ │ │ │ ├── fundraiserTweetButton │ │ │ │ │ ├── fundraiserTweetButton.html │ │ │ │ │ └── fundraiserTweetButton.js │ │ │ │ ├── infoSpace │ │ │ │ │ ├── infoSpace.html.erb │ │ │ │ │ └── infoSpace.js │ │ │ │ ├── inputSlug │ │ │ │ │ └── inputSlug.js │ │ │ │ ├── integerOnly │ │ │ │ │ └── integerOnly.js │ │ │ │ ├── issueCard │ │ │ │ │ ├── issueCard.html.erb │ │ │ │ │ └── issueCard.js │ │ │ │ ├── issueList │ │ │ │ │ ├── issueList.html │ │ │ │ │ └── issueList.js │ │ │ │ ├── issueStatusLabel │ │ │ │ │ ├── issueStatusLabel.html │ │ │ │ │ └── issueStatusLabel.js │ │ │ │ ├── loadingBar │ │ │ │ │ ├── loadingBar.html │ │ │ │ │ └── loadingBar.js │ │ │ │ ├── nameForExternalLink │ │ │ │ │ ├── nameForExternalLink.html.haml │ │ │ │ │ └── nameForExternalLink.js │ │ │ │ ├── navElement │ │ │ │ │ ├── navElement.html │ │ │ │ │ └── navElement.js │ │ │ │ ├── ngAutofillAware │ │ │ │ │ └── ngAutofillAware.js │ │ │ │ ├── ngClickRequireAuth │ │ │ │ │ └── ngClickRequireAuth.js │ │ │ │ ├── ngFocus │ │ │ │ │ └── ngFocus.js │ │ │ │ ├── onFinishRender │ │ │ │ │ └── onFinishRender.js │ │ │ │ ├── ownerHref │ │ │ │ │ └── ownerHref.js │ │ │ │ ├── personIcon │ │ │ │ │ ├── personIcon.html │ │ │ │ │ └── personIcon.js │ │ │ │ ├── profileName │ │ │ │ │ ├── profileName.html.haml │ │ │ │ │ └── profileName.js │ │ │ │ ├── profilePic │ │ │ │ │ ├── profilePic.html.haml │ │ │ │ │ └── profilePic.js │ │ │ │ ├── recommendationBox │ │ │ │ │ ├── recommendationBox.html.haml │ │ │ │ │ └── recommendationBox.js │ │ │ │ ├── requireGithubAuth │ │ │ │ │ └── requireGithubAuth.js │ │ │ │ ├── requireGplus │ │ │ │ │ └── requireGplus.js │ │ │ │ ├── requireTwitter │ │ │ │ │ └── requireTwitter.js │ │ │ │ ├── selectOnClick │ │ │ │ │ └── selectOnClick.js │ │ │ │ ├── shareBadge │ │ │ │ │ ├── issue_badge_modal.html │ │ │ │ │ ├── shareBadge.html │ │ │ │ │ └── shareBadge.js │ │ │ │ ├── shareButton │ │ │ │ │ ├── shareButton.html.erb │ │ │ │ │ └── shareButton.js │ │ │ │ ├── signalIcon │ │ │ │ │ ├── signalIcon.html │ │ │ │ │ └── signalIcon.js │ │ │ │ ├── takedown │ │ │ │ │ ├── takedown.html │ │ │ │ │ └── takedown.js │ │ │ │ ├── targetBlank │ │ │ │ │ └── targetBlank.js │ │ │ │ ├── teamBadge │ │ │ │ │ └── teamBadge.js │ │ │ │ ├── teamForm │ │ │ │ │ ├── teamForm.html │ │ │ │ │ └── teamForm.js │ │ │ │ ├── teamView │ │ │ │ │ ├── tag_autocomplete.html.haml │ │ │ │ │ ├── teamView.html.erb │ │ │ │ │ └── teamView.js │ │ │ │ ├── thumbnailLinks │ │ │ │ │ ├── thumbnailLinks.html.erb │ │ │ │ │ └── thumbnailLinks.js │ │ │ │ ├── thumbsUpBox │ │ │ │ │ ├── thumbsUpBox.html.haml │ │ │ │ │ └── thumbsUpBox.js │ │ │ │ ├── timeDifference │ │ │ │ │ ├── timeDifference.html │ │ │ │ │ └── timeDifference.js │ │ │ │ ├── timeline │ │ │ │ │ ├── timeline.html.erb │ │ │ │ │ ├── timeline.js │ │ │ │ │ ├── timelineSmall.html.erb │ │ │ │ │ └── timelineSmall.js │ │ │ │ └── updateList │ │ │ │ │ ├── updateList.html │ │ │ │ │ └── updateList.js │ │ │ ├── factories │ │ │ │ ├── Badge.js │ │ │ │ ├── IssueBadge.js │ │ │ │ ├── NavTab.js │ │ │ │ ├── Pagination.js │ │ │ │ ├── TeamBadge.js │ │ │ │ ├── TeamBadgeBountiesPosted.js │ │ │ │ ├── TeamBadgeBountiesReceived.js │ │ │ │ ├── TeamBadgeRaised.js │ │ │ │ ├── TrackerBadge.js │ │ │ │ ├── Web3.js │ │ │ │ └── addressManager │ │ │ │ │ └── addressManager.js │ │ │ ├── filters │ │ │ │ ├── atLeast.js │ │ │ │ ├── atMost.js │ │ │ │ ├── cleanUrl.js │ │ │ │ ├── currencyUnit.js │ │ │ │ ├── dollars.js │ │ │ │ ├── emptyFilter.js │ │ │ │ ├── encodeEntities.js │ │ │ │ ├── encodeUriQuery.js │ │ │ │ ├── fromSnakeCase.js │ │ │ │ ├── fundraiserStatus.js │ │ │ │ ├── hex.js │ │ │ │ ├── orderObjectBy.js │ │ │ │ ├── percent.js │ │ │ │ ├── pluck.js │ │ │ │ ├── proposalStatus.js │ │ │ │ ├── round.js │ │ │ │ ├── shuffle.js │ │ │ │ ├── slice.js │ │ │ │ ├── slug.js │ │ │ │ ├── timeAgoShort.js │ │ │ │ ├── timeDiff.js │ │ │ │ ├── timeLeftInWords.js │ │ │ │ ├── title.js │ │ │ │ ├── truncate.js │ │ │ │ ├── trustedHtml.js │ │ │ │ └── unique.js │ │ │ ├── providers │ │ │ │ ├── currentPersonResolver.js │ │ │ │ └── featureProvider.js │ │ │ ├── resources │ │ │ │ ├── Person.js │ │ │ │ ├── Proposal.js │ │ │ │ ├── Stat.js │ │ │ │ ├── Team.js │ │ │ │ ├── Timeline.js │ │ │ │ ├── Wallet.js │ │ │ │ ├── bounties.js │ │ │ │ ├── bounty_claim.js │ │ │ │ ├── comments.js │ │ │ │ ├── developer_goal.js │ │ │ │ ├── issue.js │ │ │ │ ├── payment_method.js │ │ │ │ ├── recommendation.js │ │ │ │ ├── request_for_proposal.js │ │ │ │ ├── solution.js │ │ │ │ ├── tag.js │ │ │ │ ├── thumb.js │ │ │ │ └── tracker.js │ │ │ ├── routes.js │ │ │ ├── services │ │ │ │ ├── addresses.js │ │ │ │ ├── api.js.erb │ │ │ │ ├── gplus.js │ │ │ │ ├── pageTitle.js │ │ │ │ ├── teams.js │ │ │ │ └── twttr.js │ │ │ ├── templates │ │ │ │ ├── hunterBoxModal.html.erb │ │ │ │ ├── issueAddressQrModal.html.erb │ │ │ │ ├── metamaskModal.html.erb │ │ │ │ ├── trackerPluginAuthorizeModal.html │ │ │ │ └── trackerSigninModal.html.erb │ │ │ ├── trackerPluginAuthorizeModal.js │ │ │ └── trackerSigninModal.js │ │ ├── lib │ │ │ ├── angular-qrcode.js │ │ │ ├── api_config.js │ │ │ ├── cookie_jar.js │ │ │ ├── cookie_jar_config.js │ │ │ ├── elastic-textarea.js │ │ │ ├── markdown.js │ │ │ ├── ng-click-copy.js │ │ │ ├── qr_code.js │ │ │ └── qrcode_UTF8.js │ │ ├── salt.js.erb │ │ └── salt │ │ │ ├── api.js │ │ │ ├── app.js │ │ │ ├── auth.js │ │ │ ├── checkout │ │ │ ├── _amount.html.erb │ │ │ ├── _display.html.erb │ │ │ ├── amount.html.erb │ │ │ ├── amount.js │ │ │ ├── base.js │ │ │ ├── display.html.erb │ │ │ ├── display.js │ │ │ ├── one_time_payment.html.erb │ │ │ ├── one_time_payment.js │ │ │ ├── payment.html.erb │ │ │ └── payment.js │ │ │ ├── directives │ │ │ ├── target_blank.js │ │ │ ├── thumbs_up_box.html.haml │ │ │ └── thumbs_up_box.js │ │ │ ├── env.js │ │ │ ├── filters.js │ │ │ ├── google_analytics.js │ │ │ ├── home │ │ │ ├── activity.html │ │ │ ├── activity.js │ │ │ ├── base.html.erb │ │ │ ├── base.js │ │ │ ├── home_search.js │ │ │ ├── teams.html │ │ │ ├── teams.js │ │ │ ├── teams_list.html │ │ │ ├── teams_list.js │ │ │ ├── updates.html │ │ │ └── updates.js │ │ │ ├── issues │ │ │ ├── index.html │ │ │ └── index.js │ │ │ ├── layout │ │ │ ├── error.html │ │ │ ├── error.js │ │ │ ├── footer.html.erb │ │ │ ├── layout.html │ │ │ ├── layout.js │ │ │ ├── navbar.html.erb │ │ │ └── navbar.js │ │ │ ├── session │ │ │ ├── _buttons.html.erb │ │ │ ├── _buttons.js │ │ │ ├── base.js │ │ │ ├── login.html │ │ │ ├── login.js │ │ │ ├── password_reset.html │ │ │ ├── password_reset.js │ │ │ ├── signup.html │ │ │ └── signup.js │ │ │ ├── settings │ │ │ ├── base.html │ │ │ ├── base.js │ │ │ ├── payment_methods.html │ │ │ └── payment_methods.js │ │ │ ├── support_levels │ │ │ ├── _destroy.html │ │ │ ├── base.js │ │ │ ├── index.html │ │ │ ├── index.js │ │ │ ├── show.html.erb │ │ │ └── show.js │ │ │ ├── teams │ │ │ ├── _home_tab.html │ │ │ ├── _support_header.html │ │ │ ├── _support_header_box.html.erb │ │ │ ├── _support_header_supporters.html │ │ │ ├── _support_header_title.html │ │ │ ├── _tabs.html.erb │ │ │ ├── admin │ │ │ │ ├── _tabs.html │ │ │ │ ├── base.html │ │ │ │ ├── base.js │ │ │ │ ├── general.html │ │ │ │ ├── general.js │ │ │ │ ├── goals.html.erb │ │ │ │ ├── goals.js │ │ │ │ ├── rewards.html.erb │ │ │ │ ├── rewards.js │ │ │ │ ├── supporters.html │ │ │ │ ├── supporters.js │ │ │ │ └── updates │ │ │ │ │ ├── base.js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.js │ │ │ │ │ ├── new.html │ │ │ │ │ └── new.js │ │ │ ├── base.js │ │ │ ├── not_activated.html.erb │ │ │ ├── not_activated.js │ │ │ ├── show.html │ │ │ ├── show.js │ │ │ ├── supporters.html │ │ │ ├── supporters.js │ │ │ └── updates │ │ │ │ ├── base.js │ │ │ │ ├── index.js │ │ │ │ ├── show.html │ │ │ │ └── show.js │ │ │ └── title.js │ └── stylesheets │ │ ├── admin.css.erb │ │ ├── admin │ │ ├── base.css │ │ ├── bounty_claims.css │ │ ├── companies.css │ │ ├── fundraisers.css │ │ ├── home.css │ │ ├── issues.css │ │ ├── kpi.css │ │ ├── layout.css │ │ ├── people.css │ │ ├── search.css │ │ └── signin.css │ │ ├── bountysource.css.erb │ │ ├── bountysource │ │ ├── about.css │ │ ├── alerts.css │ │ ├── bounty_claims.css │ │ ├── breadcrumbs.css │ │ ├── buttons.scss │ │ ├── cards.scss │ │ ├── chatroom.css │ │ ├── companies.css │ │ ├── custom-grid.css │ │ ├── forms.scss │ │ ├── fundraisers.css │ │ ├── home.css │ │ ├── issues.css │ │ ├── labels.css │ │ ├── landing_page │ │ │ ├── _issue_card.scss │ │ │ ├── _post_bounty_modal.scss │ │ │ ├── _search_form.scss │ │ │ ├── _sidebar.scss │ │ │ ├── _timeline_small.scss │ │ │ └── landing_page.scss │ │ ├── layout.css │ │ ├── learn.css │ │ ├── markdown.css │ │ ├── modal.css │ │ ├── navbar.css │ │ ├── navs.css │ │ ├── panels.scss │ │ ├── people.css │ │ ├── pills.css │ │ ├── progress-bar.css │ │ ├── search.css │ │ ├── settings.css │ │ ├── signin.scss │ │ ├── table.css │ │ ├── teams.css │ │ ├── thumbs.scss │ │ ├── timeline.css │ │ ├── tools.css │ │ ├── trackers.css │ │ └── utilities.css │ │ ├── salt.scss │ │ └── salt │ │ ├── app │ │ ├── angular-ui.scss │ │ ├── checkout.scss │ │ ├── footer.scss │ │ ├── forms.scss │ │ ├── home.scss │ │ ├── issues.scss │ │ ├── layout.scss │ │ ├── markdown.scss │ │ ├── navbar.scss │ │ ├── navs.scss │ │ ├── sessions.scss │ │ ├── tables.scss │ │ ├── teams.scss │ │ ├── thumbs.scss │ │ ├── timeline.scss │ │ └── utilities.scss │ │ ├── base.scss │ │ ├── bootstrap-custom-utilities.scss │ │ └── bootstrap-overrides.scss ├── controllers │ ├── admin_controller.rb │ ├── api │ │ ├── base_controller.rb │ │ ├── v0 │ │ │ ├── accounts │ │ │ │ ├── personal_controller.rb │ │ │ │ └── set_override_fees_controller.rb │ │ │ ├── accounts_controller.rb │ │ │ ├── activity_logs_controller.rb │ │ │ ├── base_controller.rb │ │ │ ├── bounties_controller.rb │ │ │ ├── bounty_claims │ │ │ │ └── force_collects_controller.rb │ │ │ ├── bounty_claims_controller.rb │ │ │ ├── cash_outs_controller.rb │ │ │ ├── crypto_pay_outs │ │ │ │ └── sends_controller.rb │ │ │ ├── crypto_pay_outs_controller.rb │ │ │ ├── delayed_jobs_controller.rb │ │ │ ├── developer_goals_controller.rb │ │ │ ├── ethereum_transaction_refunds_controller.rb │ │ │ ├── events_controller.rb │ │ │ ├── follow_relations_controller.rb │ │ │ ├── fundraisers_controller.rb │ │ │ ├── github │ │ │ │ └── repositories_controller.rb │ │ │ ├── home_controller.rb │ │ │ ├── info_spaces_controller.rb │ │ │ ├── issue_addresses_controller.rb │ │ │ ├── issues_controller.rb │ │ │ ├── payments_controller.rb │ │ │ ├── people_controller.rb │ │ │ ├── pledges_controller.rb │ │ │ ├── report_controller.rb │ │ │ ├── request_for_proposals_controller.rb │ │ │ ├── searches_controller.rb │ │ │ ├── shorts_controller.rb │ │ │ ├── solutions_controller.rb │ │ │ ├── splits_controller.rb │ │ │ ├── tags_controller.rb │ │ │ ├── takedowns_controller.rb │ │ │ ├── team_claims_controller.rb │ │ │ ├── team_payins_controller.rb │ │ │ ├── teams_controller.rb │ │ │ ├── tracker_plugins_controller.rb │ │ │ ├── trackers_controller.rb │ │ │ └── transactions_controller.rb │ │ ├── v1 │ │ │ ├── addresses_controller.rb │ │ │ ├── bounties_controller.rb │ │ │ ├── bounty_claim_responses_controller.rb │ │ │ ├── bounty_claims_controller.rb │ │ │ ├── bulk_controller.rb │ │ │ ├── delayed_jobs_controller.rb │ │ │ ├── developer_goals_controller.rb │ │ │ ├── email_change_verifications_controller.rb │ │ │ ├── email_verifications_controller.rb │ │ │ ├── follow_relations_controller.rb │ │ │ ├── fundraisers_controller.rb │ │ │ ├── home_controller.rb │ │ │ ├── info_spaces_controller.rb │ │ │ ├── issue_addresses_controller.rb │ │ │ ├── issues │ │ │ │ ├── crypto_bounties_controller.rb │ │ │ │ └── reindices_controller.rb │ │ │ ├── issues_controller.rb │ │ │ ├── languages_controller.rb │ │ │ ├── notifications_controller.rb │ │ │ ├── people_controller.rb │ │ │ ├── person_relations_controller.rb │ │ │ ├── pledges_controller.rb │ │ │ ├── postbacks_controller.rb │ │ │ ├── projects_controller.rb │ │ │ ├── rewards_controller.rb │ │ │ ├── saved_search_tabs_controller.rb │ │ │ ├── searches_controller.rb │ │ │ ├── solutions_controller.rb │ │ │ ├── stats_controller.rb │ │ │ ├── team_invites_controller.rb │ │ │ ├── teams_controller.rb │ │ │ ├── tracker_plugins_controller.rb │ │ │ ├── tracker_relations_controller.rb │ │ │ ├── trackers_controller.rb │ │ │ └── transactions_controller.rb │ │ └── v2 │ │ │ ├── account_controller.rb │ │ │ ├── addresses_controller.rb │ │ │ ├── backers_controller.rb │ │ │ ├── bounties_controller.rb │ │ │ ├── bounty_claims_controller.rb │ │ │ ├── cart_controller.rb │ │ │ ├── cash_outs_controller.rb │ │ │ ├── comments_controller.rb │ │ │ ├── currencies_controller.rb │ │ │ ├── developer_goals_controller.rb │ │ │ ├── events_controller.rb │ │ │ ├── fundraiser_rewards_controller.rb │ │ │ ├── fundraisers_controller.rb │ │ │ ├── issue_suggestions_controller.rb │ │ │ ├── issues_controller.rb │ │ │ ├── pact_applications_controller.rb │ │ │ ├── pacts_controller.rb │ │ │ ├── payment_methods_controller.rb │ │ │ ├── people_controller.rb │ │ │ ├── people_trackers_controller.rb │ │ │ ├── pledges_controller.rb │ │ │ ├── plugins_controller.rb │ │ │ ├── recommendations_controller.rb │ │ │ ├── solutions_controller.rb │ │ │ ├── stats_controller.rb │ │ │ ├── support_levels_controller.rb │ │ │ ├── support_offering_rewards_controller.rb │ │ │ ├── supporters_controller.rb │ │ │ ├── tags_controller.rb │ │ │ ├── team_updates_controller.rb │ │ │ ├── teams_controller.rb │ │ │ ├── thumbs_controller.rb │ │ │ ├── timeline_controller.rb │ │ │ ├── trackers_controller.rb │ │ │ ├── wallets │ │ │ └── set_as_primaries_controller.rb │ │ │ └── wallets_controller.rb │ ├── application_controller.rb │ ├── badge_controller.rb │ ├── bounty_source_controller.rb │ ├── coinbase_controller.rb │ ├── concerns │ │ ├── currency_conversion.rb │ │ ├── request_for_proposal_authorization.rb │ │ └── request_tracking.rb │ ├── google_wallet_controller.rb │ ├── payments_controller.rb │ ├── salt_controller.rb │ ├── session_controller.rb │ ├── shorts_controller.rb │ └── track_controller.rb ├── helpers │ ├── admin_helper.rb │ ├── api │ │ ├── v1 │ │ │ └── home_helper.rb │ │ └── v2 │ │ │ ├── account_helper.rb │ │ │ ├── addresses_helper.rb │ │ │ ├── backers_helper.rb │ │ │ ├── base_helper.rb │ │ │ ├── bounties_helper.rb │ │ │ ├── bounty_claims_helper.rb │ │ │ ├── cart_helper.rb │ │ │ ├── cash_outs_helper.rb │ │ │ ├── developer_goals_helper.rb │ │ │ ├── fundraiser_rewards_helper.rb │ │ │ ├── fundraisers_helper.rb │ │ │ ├── issues_helper.rb │ │ │ ├── pagination_helper.rb │ │ │ ├── people_helper.rb │ │ │ ├── people_trackers_helper.rb │ │ │ ├── pledges_helper.rb │ │ │ ├── plugins_helper.rb │ │ │ ├── solutions_helper.rb │ │ │ ├── timeline_helper.rb │ │ │ └── trackers_helper.rb │ ├── bounty_source_helper.rb │ ├── issue_link_helper.rb │ ├── issue_meta_tags_helper.rb │ ├── number_to_dollars_helper.rb │ ├── owner_link_helper.rb │ ├── pacts_helper.rb │ ├── team_link_helper.rb │ └── tracker_link_helper.rb ├── mailers │ ├── mailer.rb │ └── mailer_scheduler.rb ├── models │ ├── ability.rb │ ├── access_token.rb │ ├── account.rb │ ├── account │ │ ├── amazon.rb │ │ ├── apache.rb │ │ ├── bof_a.rb │ │ ├── bounty_source_adjustment.rb │ │ ├── bounty_source_fees_bounty.rb │ │ ├── bounty_source_fees_payment.rb │ │ ├── bounty_source_fees_pledge.rb │ │ ├── bounty_source_fees_team.rb │ │ ├── bounty_source_merch.rb │ │ ├── cash_out_hold.rb │ │ ├── coinbase.rb │ │ ├── doctors_without_borders.rb │ │ ├── electronic_frontier_foundation.rb │ │ ├── free_software_foundation.rb │ │ ├── fundraiser.rb │ │ ├── google_wallet.rb │ │ ├── inactivity_fee.rb │ │ ├── issue_account.rb │ │ ├── liability.rb │ │ ├── payment_method.rb │ │ ├── paypal.rb │ │ ├── personal.rb │ │ ├── repository.rb │ │ ├── request_for_proposal.rb │ │ ├── software_public_interest.rb │ │ └── team.rb │ ├── activity_log.rb │ ├── ad_space.rb │ ├── address.rb │ ├── admin_stat.rb │ ├── application_record.rb │ ├── badge.rb │ ├── badge │ │ ├── issue.rb │ │ ├── team.rb │ │ ├── team │ │ │ ├── bounties_posted.rb │ │ │ ├── bounties_received.rb │ │ │ └── raised.rb │ │ └── tracker.rb │ ├── badge_cache.rb │ ├── badge_factory.rb │ ├── bitbucket │ │ ├── api.rb │ │ ├── issue.rb │ │ └── tracker.rb │ ├── bounty.rb │ ├── bounty_claim.rb │ ├── bounty_claim_event.rb │ ├── bounty_claim_event │ │ ├── backer_accepted.rb │ │ ├── backer_dispute_resolved.rb │ │ ├── backer_disputed.rb │ │ ├── collected.rb │ │ └── rejected.rb │ ├── bounty_claim_response.rb │ ├── bugzilla │ │ ├── api.rb │ │ ├── issue.rb │ │ └── tracker.rb │ ├── cash_out.rb │ ├── cash_out │ │ ├── bitcoin.rb │ │ ├── check.rb │ │ ├── mastercoin.rb │ │ ├── paypal.rb │ │ └── ripple.rb │ ├── coinbase_api.rb │ ├── comment.rb │ ├── concerns │ │ ├── email_verification.rb │ │ ├── has_account.rb │ │ ├── has_cloudinary.rb │ │ ├── has_owner.rb │ │ └── password_resetable.rb │ ├── crontab.rb │ ├── crypto_admin_address.rb │ ├── crypto_bounty.rb │ ├── crypto_pay_out.rb │ ├── crypto_pay_out_claim_event.rb │ ├── crypto_pay_out_txn.rb │ ├── currency.rb │ ├── currency │ │ ├── bitcoin.rb │ │ ├── erc20.rb │ │ └── ethereum.rb │ ├── developer_goal.rb │ ├── event.rb │ ├── follow_relation.rb │ ├── fundraiser.rb │ ├── fundraiser_tracker_relation.rb │ ├── github │ │ ├── api.rb │ │ ├── event.rb │ │ ├── issue.rb │ │ └── repository.rb │ ├── github_stargazer.rb │ ├── gitlab │ │ ├── api.rb │ │ ├── issue.rb │ │ └── tracker.rb │ ├── google_code │ │ ├── api.rb │ │ ├── issue.rb │ │ └── tracker.rb │ ├── google_wallet_item.rb │ ├── issue.rb │ ├── issue_address.rb │ ├── issue_rank.rb │ ├── issue_rank │ │ ├── linked_account_github.rb │ │ ├── person.rb │ │ └── team_rank.rb │ ├── issue_rank_cache.rb │ ├── issue_suggestion.rb │ ├── issue_suggestion_reward.rb │ ├── jira │ │ ├── api.rb │ │ ├── issue.rb │ │ └── tracker.rb │ ├── language.rb │ ├── language_person_relation.rb │ ├── launchpad │ │ ├── api.rb │ │ ├── issue.rb │ │ └── tracker.rb │ ├── linked_account │ │ ├── base.rb │ │ ├── bitbucket.rb │ │ ├── facebook.rb │ │ ├── github.rb │ │ ├── github │ │ │ ├── bot.rb │ │ │ ├── organization.rb │ │ │ └── user.rb │ │ ├── gitlab.rb │ │ └── twitter.rb │ ├── lurker.rb │ ├── mantis │ │ ├── api.rb │ │ ├── issue.rb │ │ └── tracker.rb │ ├── merged_model.rb │ ├── milestone.rb │ ├── mixpanel_alias.rb │ ├── mixpanel_event.rb │ ├── pact.rb │ ├── pact_application.rb │ ├── payment_method.rb │ ├── payment_method │ │ ├── paypal_reference_transaction.rb │ │ └── stripe_credit_card.rb │ ├── payment_method_temporary.rb │ ├── payment_notification.rb │ ├── payment_notification │ │ ├── balanced_payments.rb │ │ ├── coinbase.rb │ │ ├── paypal.rb │ │ ├── paypal_reference_transaction.rb │ │ └── stripe_credit_card.rb │ ├── payment_notification_log.rb │ ├── paypal_ipn.rb │ ├── person.rb │ ├── person_relation │ │ ├── base.rb │ │ ├── bounty_source.rb │ │ ├── facebook.rb │ │ ├── github.rb │ │ └── twitter.rb │ ├── php_tracker │ │ ├── api.rb │ │ ├── issue.rb │ │ └── tracker.rb │ ├── pivotal │ │ ├── api.rb │ │ ├── issue.rb │ │ └── tracker.rb │ ├── pledge.rb │ ├── pledge_survey_response.rb │ ├── postback.rb │ ├── proposal.rb │ ├── public_stat.rb │ ├── quickbooks_base.rb │ ├── quickbooks_token.rb │ ├── quickbooks_transaction.rb │ ├── quickbooks_vendor.rb │ ├── recommendation_event.rb │ ├── request_for_proposal.rb │ ├── reward.rb │ ├── savannah │ │ ├── api.rb │ │ ├── issue.rb │ │ └── tracker.rb │ ├── saved_search_tab.rb │ ├── search.rb │ ├── sendgrid.rb │ ├── sent_email.rb │ ├── shopping_cart.rb │ ├── short.rb │ ├── solution.rb │ ├── solution_event.rb │ ├── solution_event │ │ ├── checked_in.rb │ │ ├── completed.rb │ │ ├── started.rb │ │ └── stopped.rb │ ├── source_forge │ │ ├── api.rb │ │ ├── issue.rb │ │ └── tracker.rb │ ├── source_forge_native │ │ ├── api.rb │ │ ├── issue.rb │ │ └── tracker.rb │ ├── split.rb │ ├── support_level.rb │ ├── support_level_payment.rb │ ├── support_offering.rb │ ├── support_offering_reward.rb │ ├── tag.rb │ ├── tag_relation.rb │ ├── tag_vote.rb │ ├── takedown.rb │ ├── team.rb │ ├── team_activity_inclusion.rb │ ├── team_bounty_hunter.rb │ ├── team_claim.rb │ ├── team_invite.rb │ ├── team_member_relation.rb │ ├── team_payin.rb │ ├── team_tracker_relation.rb │ ├── team_update.rb │ ├── thumb.rb │ ├── trac │ │ ├── api.rb │ │ ├── issue.rb │ │ └── tracker.rb │ ├── tracker.rb │ ├── tracker_donation.rb │ ├── tracker_language_relation.rb │ ├── tracker_person_relation.rb │ ├── tracker_plugin.rb │ ├── tracker_plugin │ │ └── gh.rb │ ├── tracker_plugin_backup.rb │ ├── tracker_rank_cache.rb │ ├── tracker_relation.rb │ ├── tracker_relation │ │ ├── committer.rb │ │ ├── organization_member.rb │ │ └── owner.rb │ ├── tracker_unknown.rb │ ├── transaction.rb │ ├── transaction │ │ ├── bank_transfer.rb │ │ ├── cash_out.rb │ │ ├── cash_out │ │ │ ├── bank_of_america.rb │ │ │ ├── google_wallet.rb │ │ │ └── paypal.rb │ │ ├── internal_transfer.rb │ │ ├── internal_transfer │ │ │ ├── bounty_claim.rb │ │ │ ├── bounty_refund.rb │ │ │ ├── deleted_owner.rb │ │ │ ├── fraud_reclaim.rb │ │ │ ├── fundraiser_cash_out.rb │ │ │ ├── inactivity_fee.rb │ │ │ ├── promotional.rb │ │ │ └── revenue_recognition.rb │ │ ├── order.rb │ │ ├── order │ │ │ ├── coinbase.rb │ │ │ ├── google_wallet.rb │ │ │ ├── internal.rb │ │ │ └── paypal.rb │ │ ├── payment.rb │ │ ├── payment │ │ │ ├── paypal_reference_transaction.rb │ │ │ └── stripe_credit_card.rb │ │ ├── refund.rb │ │ └── refund │ │ │ ├── google_wallet.rb │ │ │ └── paypal.rb │ ├── unsubscribe.rb │ └── wallet.rb ├── queries │ ├── crypto_pay_outs_query.rb │ └── people_query.rb ├── services │ ├── charge_user_inactivity_fee.rb │ └── crypto_api.rb ├── validators │ └── url_validator.rb └── views │ ├── api │ ├── v0 │ │ ├── access_tokens.rabl │ │ ├── activity_logs │ │ │ └── index.rabl │ │ ├── ad_spaces │ │ │ ├── index.rabl │ │ │ ├── partials │ │ │ │ └── _base.rabl │ │ │ └── show.rabl │ │ ├── bounties │ │ │ ├── csv.json.rb │ │ │ ├── index.rabl │ │ │ ├── index_for_person.rabl │ │ │ ├── partials │ │ │ │ ├── base.rabl │ │ │ │ ├── person.rabl │ │ │ │ └── splits.rabl │ │ │ └── show.rabl │ │ ├── crypto_pay_out_txns │ │ │ └── partials │ │ │ │ └── _base.rabl │ │ ├── crypto_pay_outs │ │ │ ├── index.rabl │ │ │ ├── partials │ │ │ │ └── _base.rabl │ │ │ └── show.rabl │ │ ├── delayed_jobs │ │ │ ├── index.rabl │ │ │ ├── partials │ │ │ │ ├── base.rabl │ │ │ │ └── handler.rabl │ │ │ └── show.rabl │ │ ├── developer_goals │ │ │ └── index.rabl │ │ ├── events │ │ │ ├── _base.json.jbuilder │ │ │ └── index.json.jbuilder │ │ ├── fundraisers │ │ │ ├── index_for_person.rabl │ │ │ └── tracker_relations.rabl │ │ ├── issue_addresses │ │ │ ├── index.rabl │ │ │ ├── partials │ │ │ │ └── base.rabl │ │ │ └── show.rabl │ │ ├── issues │ │ │ ├── counts.rabl │ │ │ ├── index.rabl │ │ │ ├── partials │ │ │ │ ├── base.rabl │ │ │ │ ├── bounties.rabl │ │ │ │ └── tracker.rabl │ │ │ └── show.rabl │ │ ├── pledges │ │ │ ├── index.rabl │ │ │ ├── partials │ │ │ │ ├── person.rabl │ │ │ │ └── splits.rabl │ │ │ └── show.rabl │ │ ├── report │ │ │ ├── escrow_report.rabl │ │ │ ├── liability_report.rabl │ │ │ └── transactions.rabl │ │ ├── request_for_proposals │ │ │ ├── _base.json.jbuilder │ │ │ └── index.json.jbuilder │ │ ├── searches │ │ │ └── index.rabl │ │ ├── shorts │ │ │ ├── _base.jbuilder │ │ │ ├── index.jbuilder │ │ │ └── show.jbuilder │ │ ├── solutions │ │ │ └── index.rabl │ │ ├── splits │ │ │ └── index.rabl │ │ ├── tag_votes │ │ │ ├── _base.json.jbuilder │ │ │ └── index.json.jbuilder │ │ ├── tags │ │ │ ├── _base.json.jbuilder │ │ │ └── show.json.jbuilder │ │ ├── takedowns │ │ │ └── index.rabl │ │ ├── team_claims │ │ │ └── index.rabl │ │ ├── team_payins │ │ │ ├── base.rabl │ │ │ ├── index.rabl │ │ │ └── show.rabl │ │ ├── teams │ │ │ ├── index.rabl │ │ │ └── show.rabl │ │ ├── tracker_plugins │ │ │ ├── index.rabl │ │ │ └── partials │ │ │ │ └── tracker.rabl │ │ ├── trackers │ │ │ ├── index.rabl │ │ │ └── show.rabl │ │ └── transactions │ │ │ ├── index.rabl │ │ │ ├── partials │ │ │ ├── admin.rabl │ │ │ ├── base.rabl │ │ │ └── splits.rabl │ │ │ └── show.rabl │ ├── v1 │ │ ├── accounts │ │ │ ├── admin.rabl │ │ │ ├── partials │ │ │ │ ├── base.rabl │ │ │ │ ├── extended.rabl │ │ │ │ └── owner.rabl │ │ │ └── show.rabl │ │ ├── ad_spaces │ │ │ ├── index.rabl │ │ │ └── partials │ │ │ │ └── _base.rabl │ │ ├── authors │ │ │ └── partials │ │ │ │ └── base.rabl │ │ ├── bounties │ │ │ ├── index.rabl │ │ │ ├── partials │ │ │ │ ├── base.rabl │ │ │ │ ├── issue.rabl │ │ │ │ ├── options.rabl │ │ │ │ ├── owner.rabl │ │ │ │ ├── pact.rabl │ │ │ │ ├── person.rabl │ │ │ │ └── splits.rabl │ │ │ └── show.rabl │ │ ├── bounty_claim_events │ │ │ └── partials │ │ │ │ ├── base.rabl │ │ │ │ ├── bounty_claim.rabl │ │ │ │ └── person.rabl │ │ ├── bounty_claim_responses │ │ │ ├── index.rabl │ │ │ ├── partials │ │ │ │ ├── base.rabl │ │ │ │ ├── bounty_claim.rabl │ │ │ │ ├── owner.rabl │ │ │ │ └── person.rabl │ │ │ └── show.rabl │ │ ├── bounty_claims │ │ │ ├── index.rabl │ │ │ ├── partials │ │ │ │ ├── base.rabl │ │ │ │ ├── bounty_claim_events.rabl │ │ │ │ ├── bounty_claim_responses.rabl │ │ │ │ ├── extended.rabl │ │ │ │ ├── issue.rabl │ │ │ │ ├── pact.rabl │ │ │ │ ├── person.rabl │ │ │ │ └── responses.rabl │ │ │ └── show.rabl │ │ ├── bulk │ │ │ └── issues.rabl │ │ ├── cards │ │ │ └── index.rabl │ │ ├── crypto_bounties │ │ │ ├── index.rabl │ │ │ └── partials │ │ │ │ ├── base.rabl │ │ │ │ └── owner.rabl │ │ ├── crypto_pay_outs │ │ │ ├── index.rabl │ │ │ └── partials │ │ │ │ └── base.rabl │ │ ├── developer_goals │ │ │ ├── index.rabl │ │ │ ├── partials │ │ │ │ ├── base.rabl │ │ │ │ ├── issue.rabl │ │ │ │ └── person.rabl │ │ │ └── show.rabl │ │ ├── doge_issues │ │ │ ├── index.rabl │ │ │ ├── partials │ │ │ │ └── issue.rabl │ │ │ └── ranked_index.rabl │ │ ├── follow_relations │ │ │ ├── index.rabl │ │ │ ├── partials │ │ │ │ ├── base.rabl │ │ │ │ ├── item.rabl │ │ │ │ └── person.rabl │ │ │ └── show.rabl │ │ ├── fundraisers │ │ │ ├── admin.rabl │ │ │ ├── cards.rabl │ │ │ ├── embed.html.erb │ │ │ ├── index.rabl │ │ │ ├── info.rabl │ │ │ ├── partials │ │ │ │ ├── account.rabl │ │ │ │ ├── base.rabl │ │ │ │ ├── card.rabl │ │ │ │ ├── extended.rabl │ │ │ │ ├── rewards.rabl │ │ │ │ └── team.rabl │ │ │ ├── show.rabl │ │ │ └── updates │ │ │ │ └── partials │ │ │ │ ├── base.rabl │ │ │ │ └── extended.rabl │ │ ├── github_repositories │ │ │ └── partials │ │ │ │ └── base.rabl │ │ ├── issue_addresses │ │ │ ├── create.rabl │ │ │ └── partials │ │ │ │ └── base.rabl │ │ ├── issues │ │ │ ├── activity.rabl │ │ │ ├── authored.rabl │ │ │ ├── bounties.rabl │ │ │ ├── featured.rabl │ │ │ ├── index.rabl │ │ │ ├── overview.rabl │ │ │ ├── partials │ │ │ │ ├── base.rabl │ │ │ │ ├── bounties.rabl │ │ │ │ ├── bounty_claims.rabl │ │ │ │ ├── card.rabl │ │ │ │ ├── comments.rabl │ │ │ │ ├── extended.rabl │ │ │ │ ├── search.rabl │ │ │ │ └── tracker.rabl │ │ │ ├── show.rabl │ │ │ └── waiting_for_developer.rabl │ │ ├── languages │ │ │ ├── index.rabl │ │ │ └── partials │ │ │ │ └── base.rabl │ │ ├── linked_accounts │ │ │ ├── partials │ │ │ │ ├── base.rabl │ │ │ │ ├── extended.rabl │ │ │ │ └── faux_person.rabl │ │ │ └── show.rabl │ │ ├── notifications │ │ │ └── partials │ │ │ │ ├── base.rabl │ │ │ │ ├── bounty.rabl │ │ │ │ ├── fundraiser.rabl │ │ │ │ └── pledge.rabl │ │ ├── owners │ │ │ └── partials │ │ │ │ └── base.rabl │ │ ├── pacts │ │ │ └── partials │ │ │ │ ├── base.rabl │ │ │ │ └── search.rabl │ │ ├── paypal_ipns │ │ │ ├── index.rabl │ │ │ └── partials │ │ │ │ ├── base.rabl │ │ │ │ └── transaction.rabl │ │ ├── people │ │ │ ├── activity.rabl │ │ │ ├── bounties.rabl │ │ │ ├── bounty_total.rabl │ │ │ ├── contributions.rabl │ │ │ ├── create.rabl │ │ │ ├── crypto_bounties.rabl │ │ │ ├── crypto_pay_outs.rabl │ │ │ ├── index.rabl │ │ │ ├── index_admin.rabl │ │ │ ├── interesting.rabl │ │ │ ├── languages.rabl │ │ │ ├── login.rabl │ │ │ ├── pacts.rabl │ │ │ ├── partials │ │ │ │ ├── account.rabl │ │ │ │ ├── authenticated.rabl │ │ │ │ ├── base.rabl │ │ │ │ ├── bounties.rabl │ │ │ │ ├── extended.rabl │ │ │ │ ├── facebook_account.rabl │ │ │ │ ├── fundraisers.rabl │ │ │ │ ├── github_account.rabl │ │ │ │ ├── pledges.rabl │ │ │ │ ├── teams.rabl │ │ │ │ ├── twitter_account.rabl │ │ │ │ └── wallets.rabl │ │ │ ├── pledges.rabl │ │ │ ├── profile.rabl │ │ │ ├── projects.rabl │ │ │ ├── recent.rabl │ │ │ ├── show.rabl │ │ │ ├── show_admin.rabl │ │ │ ├── teams.rabl │ │ │ └── tracker_plugins.rabl │ │ ├── pledges │ │ │ ├── admin.rabl │ │ │ ├── index.rabl │ │ │ ├── partials │ │ │ │ ├── base.rabl │ │ │ │ ├── fundraiser.rabl │ │ │ │ ├── owner.rabl │ │ │ │ ├── person.rabl │ │ │ │ └── reward.rabl │ │ │ ├── recent.rabl │ │ │ ├── show.rabl │ │ │ └── top_backers.rabl │ │ ├── projects │ │ │ └── issues.rabl │ │ ├── proposals │ │ │ └── partials │ │ │ │ └── base.rabl │ │ ├── rewards │ │ │ ├── index.rabl │ │ │ ├── partials │ │ │ │ ├── base.rabl │ │ │ │ └── extended.rabl │ │ │ └── show.rabl │ │ ├── saved_search_tabs │ │ │ └── index.rabl │ │ ├── searches │ │ │ ├── bounty_search.rabl │ │ │ ├── index.rabl │ │ │ ├── partials │ │ │ │ ├── base.rabl │ │ │ │ ├── extended.rabl │ │ │ │ ├── issues.rabl │ │ │ │ ├── params.rabl │ │ │ │ ├── person.rabl │ │ │ │ └── trackers.rabl │ │ │ ├── show.rabl │ │ │ └── typeahead.rabl │ │ ├── shopping_cart │ │ │ ├── partials │ │ │ │ ├── base.rabl │ │ │ │ ├── items.rabl │ │ │ │ └── items │ │ │ │ │ ├── base.rabl │ │ │ │ │ ├── bounty.rabl │ │ │ │ │ ├── pledge.rabl │ │ │ │ │ └── team_payin.rabl │ │ │ └── show.rabl │ │ ├── solutions │ │ │ ├── index.rabl │ │ │ ├── partials │ │ │ │ ├── base.rabl │ │ │ │ ├── person.rabl │ │ │ │ └── solution_events.rabl │ │ │ └── show.rabl │ │ ├── splits │ │ │ ├── index.rabl │ │ │ ├── partials │ │ │ │ ├── base.rabl │ │ │ │ ├── extended.rabl │ │ │ │ └── transaction.rabl │ │ │ └── show.rabl │ │ ├── team_invites │ │ │ ├── create.rabl │ │ │ ├── index.rabl │ │ │ └── partials │ │ │ │ └── base.rabl │ │ ├── team_payins │ │ │ └── partials │ │ │ │ ├── base.rabl │ │ │ │ ├── person.rabl │ │ │ │ └── team.rabl │ │ ├── teams │ │ │ ├── activity.rabl │ │ │ ├── bounties.rabl │ │ │ ├── index.rabl │ │ │ ├── issues.rabl │ │ │ ├── members.rabl │ │ │ ├── partials │ │ │ │ ├── account.rabl │ │ │ │ ├── base.rabl │ │ │ │ ├── extended.rabl │ │ │ │ ├── linked_account.rabl │ │ │ │ ├── member.rabl │ │ │ │ ├── overview.rabl │ │ │ │ └── trackers.rabl │ │ │ ├── show.rabl │ │ │ └── trackers.rabl │ │ ├── tracker_plugins │ │ │ ├── index.rabl │ │ │ ├── partials │ │ │ │ ├── base.rabl │ │ │ │ ├── person.rabl │ │ │ │ └── tracker.rabl │ │ │ └── show.rabl │ │ ├── tracker_relations │ │ │ ├── index.rabl │ │ │ ├── partials │ │ │ │ ├── base.rabl │ │ │ │ ├── extended.rabl │ │ │ │ ├── linked_account.rabl │ │ │ │ └── tracker.rabl │ │ │ └── show.rabl │ │ ├── trackers │ │ │ ├── activity.rabl │ │ │ ├── cards.rabl │ │ │ ├── followed.rabl │ │ │ ├── index.rabl │ │ │ ├── partials │ │ │ │ ├── base.rabl │ │ │ │ ├── extended.rabl │ │ │ │ ├── languages.rabl │ │ │ │ ├── owner.rabl │ │ │ │ ├── plugin.rabl │ │ │ │ └── search.rabl │ │ │ ├── show.rabl │ │ │ └── top_backers.rabl │ │ └── transactions │ │ │ ├── index.rabl │ │ │ ├── partials │ │ │ ├── base.rabl │ │ │ ├── checkout_method.rabl │ │ │ ├── items.rabl │ │ │ ├── items │ │ │ │ ├── base.rabl │ │ │ │ ├── bounty.rabl │ │ │ │ ├── issue_suggestion_reward.rabl │ │ │ │ ├── pledge.rabl │ │ │ │ ├── proposal.rabl │ │ │ │ ├── support_level_payment.rabl │ │ │ │ └── team_payin.rabl │ │ │ └── splits.rabl │ │ │ └── show.rabl │ └── v2 │ │ ├── _image_urls.json.jbuilder │ │ ├── account │ │ ├── _base.json.jbuilder │ │ └── show.json.jbuilder │ │ ├── addresses │ │ ├── _base.json.jbuilder │ │ ├── index.json.jbuilder │ │ └── show.json.jbuilder │ │ ├── backers │ │ ├── _base.json.jbuilder │ │ └── index.json.jbuilder │ │ ├── bounties │ │ ├── _base.json.jbuilder │ │ ├── _summary.json.jbuilder │ │ ├── index.json.jbuilder │ │ └── summary.json.jbuilder │ │ ├── bounty_claim_responses │ │ └── _base.json.jbuilder │ │ ├── bounty_claims │ │ ├── _base.json.jbuilder │ │ ├── index.json.jbuilder │ │ └── show.json.jbuilder │ │ ├── cart │ │ ├── _base.json.jbuilder │ │ └── show.json.jbuilder │ │ ├── cart_items │ │ ├── _base.json.jbuilder │ │ └── show.json.jbuilder │ │ ├── cash_outs │ │ ├── _base.json.jbuilder │ │ ├── csv.json.rb │ │ ├── index.json.jbuilder │ │ └── show.json.jbuilder │ │ ├── comments │ │ ├── _base.json.jbuilder │ │ ├── index.json.jbuilder │ │ └── show.json.jbuilder │ │ ├── developer_goals │ │ ├── _base.json.jbuilder │ │ ├── index.json.jbuilder │ │ └── show.json.jbuilder │ │ ├── events │ │ ├── _base.json.jbuilder │ │ ├── index.json.jbuilder │ │ └── show.json.jbuilder │ │ ├── fundraiser_rewards │ │ ├── _base.json.jbuilder │ │ ├── index.json.jbuilder │ │ └── show.json.jbuilder │ │ ├── fundraisers │ │ ├── _base.json.jbuilder │ │ └── index.json.jbuilder │ │ ├── issue_addresses │ │ └── _base.json.jbuilder │ │ ├── issue_suggestions │ │ ├── _base.json.jbuilder │ │ └── index.json.jbuilder │ │ ├── issues │ │ ├── _base.json.jbuilder │ │ ├── create.json.jbuilder │ │ ├── index.json.jbuilder │ │ └── show.json.jbuilder │ │ ├── linked_accounts │ │ └── _base.json.jbuilder │ │ ├── owners │ │ └── _base.json.jbuilder │ │ ├── pact_applications │ │ ├── _base.json.jbuilder │ │ ├── index.json.jbuilder │ │ └── show.json.jbuilder │ │ ├── pacts │ │ ├── _base.json.jbuilder │ │ ├── index.html.erb │ │ ├── index.json.jbuilder │ │ └── show.json.jbuilder │ │ ├── payment_methods │ │ ├── _base.json.jbuilder │ │ └── index.json.jbuilder │ │ ├── people │ │ ├── _base.json.jbuilder │ │ ├── index.json.jbuilder │ │ ├── me.json.jbuilder │ │ └── show.json.jbuilder │ │ ├── people_trackers │ │ └── index.json.jbuilder │ │ ├── pledges │ │ ├── _base.json.jbuilder │ │ └── index.json.jbuilder │ │ ├── plugins │ │ ├── _base.json.jbuilder │ │ └── index.json.jbuilder │ │ ├── proposals │ │ ├── _base.json.jbuilder │ │ ├── create.json.jbuilder │ │ ├── index.json.jbuilder │ │ └── show.json.jbuilder │ │ ├── recommendations │ │ └── index.json.jbuilder │ │ ├── redirect.json.jbuilder │ │ ├── request_for_proposals │ │ ├── _base.json.jbuilder │ │ ├── create.json.jbuilder │ │ ├── show.json.jbuilder │ │ └── update.json.jbuilder │ │ ├── solutions │ │ ├── _base.json.jbuilder │ │ └── index.json.jbuilder │ │ ├── support_level_payments │ │ └── _base.json.jbuilder │ │ ├── support_levels │ │ ├── _base.json.jbuilder │ │ ├── index.json.jbuilder │ │ └── show.json.jbuilder │ │ ├── support_offerings │ │ └── _base.json.jbuilder │ │ ├── supporters │ │ ├── _base.json.jbuilder │ │ └── index.json.jbuilder │ │ ├── tags │ │ ├── _base.json.jbuilder │ │ └── index.json.jbuilder │ │ ├── team_updates │ │ ├── _base.json.jbuilder │ │ ├── index.json.jbuilder │ │ └── show.json.jbuilder │ │ ├── teams │ │ ├── _base.json.jbuilder │ │ ├── index.json.jbuilder │ │ └── show.json.jbuilder │ │ ├── timeline │ │ └── index.json.jbuilder │ │ ├── trackers │ │ ├── _base.json.jbuilder │ │ ├── _extended.json.jbuilder │ │ ├── index.json.jbuilder │ │ └── show.json.jbuilder │ │ └── wallets │ │ ├── _base.json.jbuilder │ │ ├── index.json.jbuilder │ │ └── show.json.jbuilder │ ├── bounty_source │ ├── api_docs.html.erb │ ├── fundraiser.html.erb │ └── issue.html.erb │ ├── layouts │ ├── _env.html.erb │ ├── _footer.html.erb │ ├── _footer.text.erb │ ├── _thank_you.html.erb │ ├── _thank_you.text.erb │ ├── admin.html.erb │ ├── bounty_source.html.erb │ ├── email.html.erb │ ├── email.md.erb │ ├── email.text.erb │ └── salt.html.erb │ ├── mailer │ ├── account_created.html.erb │ ├── account_created.text.erb │ ├── added_to_team.html.erb │ ├── added_to_team.text.erb │ ├── bounty_claim_accepted_backer_notice.html.erb │ ├── bounty_claim_accepted_backer_notice.text.erb │ ├── bounty_claim_accepted_developer_notice.html.erb │ ├── bounty_claim_accepted_developer_notice.text.erb │ ├── bounty_claim_contested_backer_notice.html.erb │ ├── bounty_claim_contested_backer_notice.text.erb │ ├── bounty_claim_contested_developer_notice.html.erb │ ├── bounty_claim_contested_developer_notice.text.erb │ ├── bounty_claim_rejected_backer_notice.html.erb │ ├── bounty_claim_rejected_backer_notice.text.erb │ ├── bounty_claim_rejected_developer_notice.html.erb │ ├── bounty_claim_rejected_developer_notice.text.erb │ ├── bounty_claim_rejected_rejecter_notice.html.erb │ ├── bounty_claim_rejected_rejecter_notice.text.erb │ ├── bounty_claim_submitted_backer_notice.html.erb │ ├── bounty_claim_submitted_backer_notice.text.erb │ ├── bounty_claim_submitted_developer_notice.html.erb │ ├── bounty_claim_submitted_developer_notice.text.erb │ ├── bounty_created.html.erb │ ├── bounty_created.text.erb │ ├── bounty_increased.md.erb │ ├── bounty_placed.md.erb │ ├── bounty_refunded.html.erb │ ├── bounty_refunded.text.erb │ ├── bounty_refunded_for_deleted_issue.html.erb │ ├── bounty_refunded_for_deleted_issue.text.erb │ ├── cash_out_payment_sent.md.erb │ ├── change_email.html.erb │ ├── change_email.text.erb │ ├── claim_team.md.erb │ ├── claim_team_rejected.md.erb │ ├── crypto_pay_out_approved.html.erb │ ├── crypto_pay_out_approved.text.erb │ ├── developer_goal_created.html.erb │ ├── developer_goal_created.text.erb │ ├── developer_goal_reached.html.erb │ ├── developer_goal_reached.text.erb │ ├── email_verification.html.erb │ ├── email_verification.text.erb │ ├── extension_feedback.html.erb │ ├── extension_feedback.text.erb │ ├── fundraiser_backed.html.erb │ ├── fundraiser_backed.text.erb │ ├── fundraiser_completed.html.erb │ ├── fundraiser_completed.text.erb │ ├── fundraiser_featured_notification.html.erb │ ├── fundraiser_featured_notification.text.erb │ ├── fundraiser_pledge_made.html.erb │ ├── fundraiser_pledge_made.text.erb │ ├── inactivity_fee_charged.html.erb │ ├── inactivity_fee_charged.text.erb │ ├── invited_to_team.html.erb │ ├── invited_to_team.text.erb │ ├── issue_suggestion_created.html.erb │ ├── issue_suggestion_created.text.erb │ ├── issue_suggestion_rejected.html.erb │ ├── issue_suggestion_rejected.text.erb │ ├── issue_suggestion_thanked.html.erb │ ├── issue_suggestion_thanked.text.erb │ ├── notify_backers_of_developer_goal_set.html.erb │ ├── notify_backers_of_developer_goal_set.text.erb │ ├── notify_backers_of_fundraiser_breached.html.erb │ ├── notify_backers_of_fundraiser_breached.text.erb │ ├── notify_backers_of_fundraiser_half_completion.html.erb │ ├── notify_backers_of_fundraiser_half_completion.text.erb │ ├── notify_creator_of_fundraiser_breached.html.erb │ ├── notify_creator_of_fundraiser_breached.text.erb │ ├── notify_creator_of_fundraiser_half_completion.html.erb │ ├── notify_creator_of_fundraiser_half_completion.text.erb │ ├── notify_stakeholders_of_developer_work_started.html.erb │ ├── notify_stakeholders_of_developer_work_started.text.erb │ ├── notify_stakeholders_of_developer_work_stopped.html.erb │ ├── notify_stakeholders_of_developer_work_stopped.text.erb │ ├── order_created.html.erb │ ├── order_created.text.erb │ ├── order_failed.html.erb │ ├── order_failed.text.erb │ ├── pledge_survey_email.html.erb │ ├── pledge_survey_email.text.erb │ ├── proposal_appointed.html.erb │ ├── proposal_appointed.text.erb │ ├── proposal_appointed_to_team.html.erb │ ├── proposal_appointed_to_team.text.erb │ ├── proposal_created_to_team.html.erb │ ├── proposal_created_to_team.text.erb │ ├── proposal_rejected.html.erb │ ├── proposal_rejected.text.erb │ ├── proposal_rejected_to_team.html.erb │ ├── proposal_rejected_to_team.text.erb │ ├── remind_unresponsive_backers_of_bounty_claim.html.erb │ ├── remind_unresponsive_backers_of_bounty_claim.text.erb │ ├── repository_donation_made.html.erb │ ├── repository_donation_made.text.erb │ ├── request_for_proposal_notification.html.erb │ ├── reset_password.html.erb │ ├── reset_password.text.erb │ ├── team_account_funded.html.erb │ ├── team_account_funded.text.erb │ ├── team_account_funded_admin.html.erb │ ├── team_account_funded_admin.text.erb │ ├── team_account_funded_backer.html.erb │ ├── team_account_funded_backer.text.erb │ ├── team_member_added.html.erb │ ├── team_member_added.text.erb │ ├── team_member_permissions_changed.html.erb │ ├── team_member_permissions_changed.text.erb │ ├── team_member_requested_invite.html.erb │ ├── team_member_requested_invite.text.erb │ ├── team_payin_refunded.md.erb │ ├── team_permissions_changed.html.erb │ ├── team_permissions_changed.text.erb │ ├── team_update_created.md.erb │ ├── unsubscribed.html.erb │ ├── unsubscribed.text.erb │ ├── welcome_back.html.erb │ └── welcome_back.text.erb │ ├── proposals │ └── partials │ │ └── base.rabl │ └── transactions │ └── partials │ └── items │ └── proposal.rabl ├── bin ├── bundle ├── rails └── rake ├── config.ru ├── config ├── application.rb ├── boot.rb ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── active_record_marshaling.rb │ ├── active_record_merge.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── big_decimal_json_parse_fix.rb │ ├── bitcoin_money.rb │ ├── crontab.rb │ ├── database_connection.rb │ ├── debugger.rb │ ├── delayed_job.rb │ ├── delayed_job_fix.rb │ ├── elasticsearch.rb │ ├── enumerable_find_value.rb │ ├── force_accept_header.rb │ ├── get_method_override.rb │ ├── inflections.rb │ ├── log_level.rb │ ├── mime_types.rb │ ├── new_relic_rpm_instrumentation.rb │ ├── new_relic_unicorn.rb │ ├── nokogiri.rb │ ├── payments.rb │ ├── rabl.rb │ ├── ruby_template_handler.rb │ ├── secure_headers.rb │ ├── session_store.rb │ ├── string_to_bool.rb │ ├── stripe.rb │ ├── timeout.rb │ └── wrap_parameters.rb ├── jshint.yml ├── locales │ └── en.yml ├── puma.rb ├── routes.rb └── unicorn.rb ├── db ├── migrate │ ├── 00000000000001_initial_schema.rb │ ├── 20160611150448_create_team_claims.rb │ ├── 20170220040901_add_quickbooks_columns.rb │ ├── 20171011173023_create_quickbooks_vendors.rb │ ├── 20171025155245_create_quickbooks_transactions.rb │ ├── 20171126185423_create_takedowns.rb │ ├── 20171210181208_drop_gittip_ipns.rb │ ├── 20180302084704_remove_txn_id_non_null_from_payment_notification.rb │ ├── 20180314002424_add_is_fraud_to_cash_outs.rb │ ├── 20180328112330_remove_linked_account_uid_not_null.rb │ ├── 20180403074459_add_password_reset_token_to_person.rb │ ├── 20180404095942_add_email_verification_to_user.rb │ ├── 20180411015847_create_issue_addresses.rb │ ├── 20180424025353_add_category_to_issue.rb │ ├── 20180424182356_create_wallets.rb │ ├── 20180425061501_add_erc20_to_currency.rb │ ├── 20180426033339_add_verified_to_wallets.rb │ ├── 20180501124232_create_crypto_bounties.rb │ ├── 20180501124659_add_balance_to_issue_addresses.rb │ ├── 20180530004731_add_unique_index_to_issue_address_and_bounties.rb │ ├── 20180610184815_create_quickbooks_tokens.rb │ ├── 20180613071303_add_remote_id_to_linked_accounts.rb │ ├── 20180622112508_create_crypto_pay_outs.rb │ ├── 20180622114056_create_crypto_pay_out_txns.rb │ ├── 20180627074014_add_default_to_crypto_bounties.rb │ ├── 20180627074159_create_crypto_pay_out_claim_events.rb │ ├── 20180627093828_change_columns_in_crypto_pay_outs.rb │ ├── 20180627094310_change_columns_in_crypto_pay_out_txns.rb │ ├── 20180628015138_add_foreign_key_for_crypto_tables.rb │ ├── 20180716045309_add_refund_crypto_columns.rb │ ├── 20180717083536_remove_unique_index_for_crypto_pay_out.rb │ ├── 20180717114602_additional_columns_for_crypto_refund.rb │ ├── 20180717121553_create_crypto_admin_addresses.rb │ ├── 20180719030123_add_reason_to_crypto_pay_out.rb │ ├── 20180813231110_create_ad_spaces.rb │ ├── 20180827073853_add_override_fee_percentage_to_account.rb │ ├── 20201220205934_create_pacts.rb │ ├── 20210103191631_add_pact_to_bounties.rb │ ├── 20210105194938_create_pact_applications.rb │ ├── 20210110204412_add_completed_at_to_pacts.rb │ └── 20210113213551_add_pact_to_bounty_claims.rb ├── schema.rb └── seeds.rb ├── docker-compose.yml ├── dump.rdb ├── lib ├── assets │ └── .gitkeep ├── display_money.rb ├── heroku_timeout.rb ├── middleware │ └── force_accept_header.rb └── tasks │ ├── .gitkeep │ ├── auto_annotate_models.rake │ ├── cache.rake │ ├── delayed_job_multi.rake │ ├── reindex_elasticsearch.rake │ ├── replace_avatar.rake │ └── replace_old_avatar.rake ├── log └── .gitkeep ├── public ├── 404.html ├── 422.html ├── 500.html ├── favicon.ico └── robots.txt ├── spec ├── controllers │ ├── admin_controller_spec.rb │ ├── api │ │ ├── base_controller_spec.rb │ │ ├── v0 │ │ │ ├── fundraisers_controller_spec.rb │ │ │ └── transactions_controller_spec.rb │ │ ├── v1 │ │ │ ├── bounties_controller_spec.rb │ │ │ ├── bounty_claim_responses_controller_spec.rb │ │ │ ├── bounty_claims_controller_spec.rb │ │ │ ├── developer_goals_controller_spec.rb │ │ │ ├── follow_relations_controller_spec.rb │ │ │ ├── fundraisers_controller_spec.rb │ │ │ ├── home_controller_spec.rb │ │ │ ├── issues_controller_spec.rb │ │ │ ├── people_controller_spec.rb │ │ │ ├── pledges_controller_spec.rb │ │ │ ├── rewards_controller_spec.rb │ │ │ ├── shopping_cart_controller_spec.rb │ │ │ ├── solutions_controller_spec.rb │ │ │ ├── team_invites_controller_spec.rb │ │ │ ├── teams_controller_spec.rb │ │ │ ├── tracker_plugins_controller_spec.rb │ │ │ └── trackers_controller_spec.rb │ │ └── v2 │ │ │ ├── account_controller_spec.rb │ │ │ ├── backers_controller_spec.rb │ │ │ ├── cart_controller_spec.rb │ │ │ ├── cash_outs_controller_spec.rb │ │ │ ├── fundraiser_rewards_controller_spec.rb │ │ │ ├── fundraiser_updates_controller_spec.rb │ │ │ ├── fundraisers_controller_spec.rb │ │ │ ├── issues_controller_spec.rb │ │ │ ├── people_controller_spec.rb │ │ │ ├── people_trackers_controller_spec.rb │ │ │ ├── pledges_controller_spec.rb │ │ │ ├── plugins_controller_spec.rb │ │ │ ├── teams_controller_spec.rb │ │ │ └── trackers_conrtoller_spec.rb │ ├── application_controller_spec.rb │ ├── badge_controller_spec.rb │ ├── coinbase_controller_spec.rb │ └── payments_controller_spec.rb ├── factories │ ├── accounts.rb │ ├── activity_logs.rb │ ├── ad_spaces.rb │ ├── addresses.rb │ ├── bounties.rb │ ├── bounty_claim_responeses.rb │ ├── bounty_claims.rb │ ├── cash_outs.rb │ ├── coinbase_orders.rb │ ├── coinbases.rb │ ├── comments.rb │ ├── developer_goals.rb │ ├── factories.rb │ ├── follow_relations.rb │ ├── fundraiser_tracker_relations.rb │ ├── fundraisers.rb │ ├── github_commits.rb │ ├── issue.rb │ ├── issue_rank.rb │ ├── issue_rank_caches.rb │ ├── languages.rb │ ├── linked_accounts.rb │ ├── lurkers.rb │ ├── payment_methods.rb │ ├── payment_notifications.rb │ ├── people.rb │ ├── person_relations.rb │ ├── pledges.rb │ ├── proposals.rb │ ├── request_for_proposals.rb │ ├── rewards.rb │ ├── searches.rb │ ├── shopping_carts.rb │ ├── solution_events.rb │ ├── solutions.rb │ ├── support_levels.rb │ ├── tag_relations.rb │ ├── tag_votes.rb │ ├── tags.rb │ ├── team_invites.rb │ ├── team_member_relations.rb │ ├── team_payin.rb │ ├── team_tracker_relations.rb │ ├── team_updates.rb │ ├── teams.rb │ ├── tracker_languages.rb │ ├── tracker_person_relations.rb │ ├── tracker_plugins.rb │ ├── tracker_rank_caches.rb │ ├── tracker_relations.rb │ ├── trackers.rb │ └── transactions.rb ├── features │ └── issues_spec.rb ├── helpers │ └── api │ │ └── v2 │ │ ├── issues_helper_spec.rb │ │ ├── pagniation_helper_spec.rb │ │ └── trackers_helper_spec.rb ├── mailers │ ├── mailer_scheduler_spec.rb │ └── mailer_spec.rb ├── models │ ├── account_spec.rb │ ├── activity_log_spec.rb │ ├── ad_space_spec.rb │ ├── badge_cache_spec.rb │ ├── badge_factory_spec.rb │ ├── badge_spec.rb │ ├── bitbucket │ │ ├── issue_spec.rb │ │ └── tracker_spec.rb │ ├── bounty_claim_response_spec.rb │ ├── bounty_claim_spec.rb │ ├── bounty_spec.rb │ ├── bugzilla │ │ ├── issue_spec.rb │ │ └── tracker_spec.rb │ ├── cash_out │ │ ├── mastercoin_spec.rb │ │ └── ripple_spec.rb │ ├── cash_out_spec.rb │ ├── currency_spec.rb │ ├── developer_goal_spec.rb │ ├── follow_relation_spec.rb │ ├── fundraiser_spec.rb │ ├── fundraiser_tracker_relation_spec.rb │ ├── github │ │ ├── event_spec.rb │ │ ├── issue_spec.rb │ │ └── repository_spec.rb │ ├── github_stargazer_spec.rb │ ├── gitlab │ │ ├── issue_spec.rb │ │ └── tracker_spec.rb │ ├── google_code │ │ ├── issue_spec.rb │ │ └── tracker_spec.rb │ ├── issue_rank_cache_spec.rb │ ├── issue_spec.rb │ ├── issue_suggestion_reward_spec.rb │ ├── issue_suggestion_spec.rb │ ├── jira │ │ ├── issue_spec.rb │ │ └── tracker_spec.rb │ ├── launchpad │ │ ├── issue_spec.rb │ │ └── tracker_spec.rb │ ├── linked_account │ │ └── github_spec.rb │ ├── merged_model_spec.rb │ ├── pact.rb │ ├── payment_helpers_spec.rb │ ├── payment_method_spec.rb │ ├── payment_method_temporary_spec.rb │ ├── payment_notification │ │ ├── coinbase_spec.rb │ │ └── paypal_spec.rb │ ├── person_relation │ │ ├── facebook_spec.rb │ │ ├── github_spec.rb │ │ ├── person_relation_spec.rb │ │ └── twitter_spec.rb │ ├── person_spec.rb │ ├── pivotal │ │ ├── issue_spec.rb │ │ └── tracker_spec.rb │ ├── pledge_spec.rb │ ├── proposal_spec.rb │ ├── request_for_proposal_spec.rb │ ├── shopping_cart_spec.rb │ ├── solution_event_spec.rb │ ├── solution_spec.rb │ ├── source_forge │ │ ├── issue_spec.rb │ │ └── tracker_spec.rb │ ├── source_forge_native │ │ ├── issue_spec.rb │ │ └── tracker_spec.rb │ ├── split_spec.rb │ ├── support_level_spec.rb │ ├── support_offering_reward_spec.rb │ ├── support_offering_spec.rb │ ├── tag_relation_spec.rb │ ├── tag_spec.rb │ ├── tag_vote_spec.rb │ ├── team_bounty_hunter_spec.rb │ ├── team_claim_spec.rb │ ├── team_invite_spec.rb │ ├── team_member_relation_spec.rb │ ├── team_payin_spec.rb │ ├── team_spec.rb │ ├── team_update_spec.rb │ ├── thumb_spec.rb │ ├── trac │ │ ├── issue_spec.rb │ │ └── tracker_spec.rb │ ├── tracker_person_relation_spec.rb │ ├── tracker_plugin │ │ └── gh_spec.rb │ ├── tracker_plugin_spec.rb │ ├── tracker_rank_cache_spec.rb │ ├── tracker_spec.rb │ ├── transaction │ │ ├── internal_transfer │ │ │ └── promotional.rb │ │ ├── order │ │ │ └── paypal_spec.rb │ │ └── order_spec.rb │ ├── transaction_spec.rb │ └── unsubscribe_spec.rb ├── queries │ └── people_query_spec.rb ├── rails_helper.rb ├── requests │ └── .gitkeep ├── routing │ ├── badges_route_spec.rb │ ├── coinbase_routes_spec.rb │ ├── paypal_routes_spec.rb │ └── teams_routes_spec.rb ├── services │ └── charge_user_inactivity_fee_spec.rb ├── spec_helper.rb ├── support │ ├── api_v2_controller_context.rb │ ├── capybara.rb │ ├── database_cleaner.rb │ ├── default_vendor_params.rb │ ├── features │ │ └── session_helpers.rb │ ├── mock_github_api.rb │ ├── payment_helpers.rb │ ├── request_for_proposals │ │ └── shared_examples_for_request_for_proposals.rb │ ├── request_tracking.rb │ ├── response_status_helper.rb │ ├── shared_examples_for_currency_conversion.rb │ └── vcr.rb ├── trackers │ └── all_spec.rb └── vcr │ └── live_sync │ ├── issue_remote_sync_bitbucket │ ├── issue_should_create_new_issue.yml │ └── issue_should_fetch_issue_comment.yml │ ├── issue_remote_sync_bugzilla │ ├── issue_should_create_new_issue.yml │ └── issue_should_fetch_issue_comment.yml │ ├── issue_remote_sync_gitlab │ ├── issue_should_create_new_issue.yml │ └── issue_should_fetch_issue_comment.yml │ ├── issue_remote_sync_jira │ ├── issue_should_create_new_issue.yml │ └── issue_should_fetch_issue_comment.yml │ ├── issue_remote_sync_launchpad │ ├── issue_should_create_new_issue.yml │ └── issue_should_fetch_issue_comment.yml │ ├── issue_remote_sync_mantis_print_bug │ ├── issue_should_create_new_issue.yml │ └── issue_should_fetch_issue_comment.yml │ ├── issue_remote_sync_mantis_rest │ ├── issue_should_create_new_issue.yml │ └── issue_should_fetch_issue_comment.yml │ ├── issue_remote_sync_mantis_soap │ ├── issue_should_create_new_issue.yml │ └── issue_should_fetch_issue_comment.yml │ ├── issue_remote_sync_pivotal │ ├── issue_should_create_new_issue.yml │ └── issue_should_fetch_issue_comment.yml │ ├── issue_remote_sync_trac │ ├── issue_should_create_new_issue.yml │ └── issue_should_fetch_issue_comment.yml │ ├── tracker │ ├── api_extract_info_from_url_http_ │ │ ├── bugs_jquery_com │ │ │ ├── .yml │ │ │ └── ticket │ │ │ │ └── 10495.yml │ │ ├── dev_clojure_org │ │ │ └── jira │ │ │ │ └── browse │ │ │ │ ├── cljs.yml │ │ │ │ └── cljs_868.yml │ │ ├── trac_macports_org │ │ │ └── .yml │ │ └── twistedmatrix_com │ │ │ └── trac │ │ │ ├── .yml │ │ │ └── ticket │ │ │ └── 1228.yml │ └── api_extract_info_from_url_https_ │ │ ├── bugs_webkit_org │ │ └── show_bug_cgi_id_65711.yml │ │ ├── bugzilla_gnome_org │ │ ├── buglist_cgi_quicksearch_component_3_ageneral_product_3_a_22gnome_terminal_22_.yml │ │ └── show_bug_cgi_id_380612.yml │ │ ├── bugzilla_redhat_com │ │ ├── buglist_cgi_product_fedora_component_fedora_packager_resolution____.yml │ │ └── show_bug_cgi_id_707252.yml │ │ ├── bukkit_atlassian_net │ │ ├── browse │ │ │ └── bukkit_3846.yml │ │ └── projects │ │ │ └── bukkit │ │ │ ├── issues │ │ │ └── bukkit_5574.yml │ │ │ └── summary.yml │ │ ├── issues_apache_org │ │ └── jira │ │ │ └── browse │ │ │ ├── agila.yml │ │ │ └── agila_44.yml │ │ ├── trac_adium_im.yml │ │ ├── trac_adium_im │ │ ├── .yml │ │ └── ticket │ │ │ └── 6.yml │ │ ├── trac_torproject_org │ │ └── projects │ │ │ ├── tor.yml │ │ │ └── tor │ │ │ └── .yml │ │ ├── trac_videolan_org │ │ └── vlc │ │ │ ├── .yml │ │ │ └── ticket │ │ │ └── 4352.yml │ │ ├── www_mantisbt_org │ │ └── bugs │ │ │ ├── my_view_page_php.yml │ │ │ └── view_php_id_24096.yml │ │ └── www_pivotaltracker_com │ │ ├── n │ │ └── projects │ │ │ └── 367813 │ │ │ └── stories │ │ │ └── 45939421.yml │ │ ├── projects │ │ ├── 367813 │ │ │ └── stories.yml │ │ └── 367813_ │ │ │ └── stories │ │ │ └── 45939421.yml │ │ └── story │ │ └── show │ │ └── 45939421.yml │ ├── tracker_remote_sync_bitbucket │ ├── tracker_should_create_new_tracker.yml │ └── tracker_should_create_tracker_issues.yml │ ├── tracker_remote_sync_bugzilla │ ├── tracker_should_create_new_tracker.yml │ └── tracker_should_create_tracker_issues.yml │ ├── tracker_remote_sync_gitlab │ ├── tracker_with_gitlab_com_gitlab_org_gitlab_ce_should_create_new_tracker.yml │ └── tracker_with_gitlab_com_goto_ru_ds_school_2018_01_should_create_new_tracker.yml │ ├── tracker_remote_sync_jira │ ├── tracker_should_create_new_tracker.yml │ └── tracker_should_create_tracker_issues.yml │ ├── tracker_remote_sync_launchpad │ ├── tracker_should_create_new_tracker.yml │ └── tracker_should_create_tracker_issues.yml │ ├── tracker_remote_sync_mantis │ ├── tracker_should_create_new_tracker.yml │ └── tracker_should_create_tracker_issues.yml │ ├── tracker_remote_sync_pivotal │ ├── tracker_should_create_new_tracker.yml │ └── tracker_should_create_tracker_issues.yml │ └── tracker_remote_sync_trac │ ├── tracker_should_create_new_tracker.yml │ └── tracker_should_create_tracker_issues.yml ├── tasks.yml └── test ├── controllers └── pacts_controller_test.rb ├── fixtures ├── pact_applications.yml └── pacts.yml └── models ├── pact_application_test.rb └── pact_test.rb /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/.env.dev -------------------------------------------------------------------------------- /.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/.env.test -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/.rspec -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.7.1 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/Rakefile -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app.json -------------------------------------------------------------------------------- /app/assets/images/Bountysource-190x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/images/Bountysource-190x60.png -------------------------------------------------------------------------------- /app/assets/images/Bountysource-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/images/Bountysource-green.png -------------------------------------------------------------------------------- /app/assets/images/Bountysource-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/images/Bountysource-white.png -------------------------------------------------------------------------------- /app/assets/images/GitHub-Mark-32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/images/GitHub-Mark-32px.png -------------------------------------------------------------------------------- /app/assets/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/images/ajax-loader.gif -------------------------------------------------------------------------------- /app/assets/images/anon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/images/anon.jpg -------------------------------------------------------------------------------- /app/assets/images/bird_blue_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/images/bird_blue_32.png -------------------------------------------------------------------------------- /app/assets/images/bountysource-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/images/bountysource-grey.png -------------------------------------------------------------------------------- /app/assets/images/bs-anon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/images/bs-anon.png -------------------------------------------------------------------------------- /app/assets/images/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/images/checkbox.png -------------------------------------------------------------------------------- /app/assets/images/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/images/checkbox_checked.png -------------------------------------------------------------------------------- /app/assets/images/extension1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/images/extension1.png -------------------------------------------------------------------------------- /app/assets/images/facebook_share_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/images/facebook_share_32.png -------------------------------------------------------------------------------- /app/assets/images/favicon-bitbucket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/images/favicon-bitbucket.png -------------------------------------------------------------------------------- /app/assets/images/favicon-bugzilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/images/favicon-bugzilla.png -------------------------------------------------------------------------------- /app/assets/images/favicon-email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/images/favicon-email.png -------------------------------------------------------------------------------- /app/assets/images/favicon-facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/images/favicon-facebook.png -------------------------------------------------------------------------------- /app/assets/images/favicon-github-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/images/favicon-github-white.png -------------------------------------------------------------------------------- /app/assets/images/favicon-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/images/favicon-github.png -------------------------------------------------------------------------------- /app/assets/images/favicon-jira.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/images/favicon-jira.png -------------------------------------------------------------------------------- /app/assets/images/favicon-launchpad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/images/favicon-launchpad.png -------------------------------------------------------------------------------- /app/assets/images/favicon-pivotal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/images/favicon-pivotal.png -------------------------------------------------------------------------------- /app/assets/images/favicon-sourceforge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/images/favicon-sourceforge.png -------------------------------------------------------------------------------- /app/assets/images/favicon-trac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/images/favicon-trac.png -------------------------------------------------------------------------------- /app/assets/images/favicon-twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/images/favicon-twitter.png -------------------------------------------------------------------------------- /app/assets/images/github-plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/images/github-plugin.png -------------------------------------------------------------------------------- /app/assets/images/github-white-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/images/github-white-20.png -------------------------------------------------------------------------------- /app/assets/images/github-white-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/images/github-white-24.png -------------------------------------------------------------------------------- /app/assets/images/github-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/images/github-white.png -------------------------------------------------------------------------------- /app/assets/images/google-wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/images/google-wallet.png -------------------------------------------------------------------------------- /app/assets/images/gplus-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/images/gplus-32.png -------------------------------------------------------------------------------- /app/assets/images/icons/icon_bitcoin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/images/icons/icon_bitcoin.svg -------------------------------------------------------------------------------- /app/assets/images/icons/icon_canya.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/images/icons/icon_canya.svg -------------------------------------------------------------------------------- /app/assets/images/icons/icon_copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/images/icons/icon_copy.svg -------------------------------------------------------------------------------- /app/assets/images/icons/icon_edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/images/icons/icon_edit.svg -------------------------------------------------------------------------------- /app/assets/images/icons/icon_ethereum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/images/icons/icon_ethereum.svg -------------------------------------------------------------------------------- /app/assets/images/icons/icon_facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/images/icons/icon_facebook.svg -------------------------------------------------------------------------------- /app/assets/images/icons/icon_github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/images/icons/icon_github.svg -------------------------------------------------------------------------------- /app/assets/images/icons/icon_lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/images/icons/icon_lock.svg -------------------------------------------------------------------------------- /app/assets/images/icons/icon_mail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/images/icons/icon_mail.svg -------------------------------------------------------------------------------- /app/assets/images/icons/icon_person.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/images/icons/icon_person.svg -------------------------------------------------------------------------------- /app/assets/images/icons/icon_search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/images/icons/icon_search.svg -------------------------------------------------------------------------------- /app/assets/images/icons/icon_timestamp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/images/icons/icon_timestamp.svg -------------------------------------------------------------------------------- /app/assets/images/icons/icon_trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/images/icons/icon_trash.svg -------------------------------------------------------------------------------- /app/assets/images/icons/icon_twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/images/icons/icon_twitter.svg -------------------------------------------------------------------------------- /app/assets/images/logos.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/images/logos.ai -------------------------------------------------------------------------------- /app/assets/images/logos/alternate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/images/logos/alternate.svg -------------------------------------------------------------------------------- /app/assets/images/logos/main.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/images/logos/main.svg -------------------------------------------------------------------------------- /app/assets/images/logos/metamask-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/images/logos/metamask-logo.svg -------------------------------------------------------------------------------- /app/assets/images/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/images/paypal.png -------------------------------------------------------------------------------- /app/assets/images/thumbsup-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/images/thumbsup-20.png -------------------------------------------------------------------------------- /app/assets/images/thumbsup-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/images/thumbsup-32.png -------------------------------------------------------------------------------- /app/assets/images/thumbsup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/images/thumbsup.png -------------------------------------------------------------------------------- /app/assets/javascripts/admin.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/admin.js.erb -------------------------------------------------------------------------------- /app/assets/javascripts/admin/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/admin/api.js -------------------------------------------------------------------------------- /app/assets/javascripts/admin/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/admin/app.js -------------------------------------------------------------------------------- /app/assets/javascripts/admin/auth/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/admin/auth/auth.js -------------------------------------------------------------------------------- /app/assets/javascripts/admin/directives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/admin/directives.js -------------------------------------------------------------------------------- /app/assets/javascripts/admin/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/admin/filters.js -------------------------------------------------------------------------------- /app/assets/javascripts/admin/home/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/admin/home/home.js -------------------------------------------------------------------------------- /app/assets/javascripts/admin/home/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/admin/home/login.js -------------------------------------------------------------------------------- /app/assets/javascripts/admin/kpi/kpi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/admin/kpi/kpi.html -------------------------------------------------------------------------------- /app/assets/javascripts/admin/kpi/kpi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/admin/kpi/kpi.js -------------------------------------------------------------------------------- /app/assets/javascripts/admin/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/admin/main.js -------------------------------------------------------------------------------- /app/assets/javascripts/admin/orders/show.html: -------------------------------------------------------------------------------- 1 | Redirecting to transaction... 2 | -------------------------------------------------------------------------------- /app/assets/javascripts/admin/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/admin/services.js -------------------------------------------------------------------------------- /app/assets/javascripts/admin/tags/show.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/admin/tags/show.js -------------------------------------------------------------------------------- /app/assets/javascripts/admin/teams/show.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/admin/teams/show.js -------------------------------------------------------------------------------- /app/assets/javascripts/app.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/app.js.erb -------------------------------------------------------------------------------- /app/assets/javascripts/app/about/fees.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/app/about/fees.html -------------------------------------------------------------------------------- /app/assets/javascripts/app/about/static.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/app/about/static.js -------------------------------------------------------------------------------- /app/assets/javascripts/app/about/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/app/about/stats.js -------------------------------------------------------------------------------- /app/assets/javascripts/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/app/app.js -------------------------------------------------------------------------------- /app/assets/javascripts/app/auth/auth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/app/auth/auth.html -------------------------------------------------------------------------------- /app/assets/javascripts/app/auth/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/app/auth/auth.js -------------------------------------------------------------------------------- /app/assets/javascripts/app/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/app/env.js -------------------------------------------------------------------------------- /app/assets/javascripts/app/home/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/app/home/search.js -------------------------------------------------------------------------------- /app/assets/javascripts/app/issues/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/app/issues/index.js -------------------------------------------------------------------------------- /app/assets/javascripts/app/issues/show.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/app/issues/show.js -------------------------------------------------------------------------------- /app/assets/javascripts/app/legacy_route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/app/legacy_route.js -------------------------------------------------------------------------------- /app/assets/javascripts/app/mixpanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/app/mixpanel.js -------------------------------------------------------------------------------- /app/assets/javascripts/app/orders/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/app/orders/index.js -------------------------------------------------------------------------------- /app/assets/javascripts/app/orders/show.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/app/orders/show.js -------------------------------------------------------------------------------- /app/assets/javascripts/app/press/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/app/press/index.js -------------------------------------------------------------------------------- /app/assets/javascripts/app/signin/callback.html: -------------------------------------------------------------------------------- 1 |
{{ error || "Redirecting..." }}
-------------------------------------------------------------------------------- /app/assets/javascripts/app/signin/reset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/app/signin/reset.js -------------------------------------------------------------------------------- /app/assets/javascripts/app/teams/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/app/teams/base.js -------------------------------------------------------------------------------- /app/assets/javascripts/app/teams/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/app/teams/index.js -------------------------------------------------------------------------------- /app/assets/javascripts/app/teams/issues.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/app/teams/issues.js -------------------------------------------------------------------------------- /app/assets/javascripts/app/teams/join.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/app/teams/join.html -------------------------------------------------------------------------------- /app/assets/javascripts/app/teams/join.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/app/teams/join.js -------------------------------------------------------------------------------- /app/assets/javascripts/app/teams/new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/app/teams/new.js -------------------------------------------------------------------------------- /app/assets/javascripts/app/teams/show.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/app/teams/show.js -------------------------------------------------------------------------------- /app/assets/javascripts/app/teams/tagged.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/app/teams/tagged.js -------------------------------------------------------------------------------- /app/assets/javascripts/app/teams/teams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/app/teams/teams.js -------------------------------------------------------------------------------- /app/assets/javascripts/app/teams/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/app/teams/update.js -------------------------------------------------------------------------------- /app/assets/javascripts/app/tools/all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/app/tools/all.html -------------------------------------------------------------------------------- /app/assets/javascripts/app/tools/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/app/tools/base.js -------------------------------------------------------------------------------- /app/assets/javascripts/common/directives/nameForExternalLink/nameForExternalLink.html.haml: -------------------------------------------------------------------------------- 1 | %span {{text}} -------------------------------------------------------------------------------- /app/assets/javascripts/common/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/common/routes.js -------------------------------------------------------------------------------- /app/assets/javascripts/lib/api_config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/lib/api_config.js -------------------------------------------------------------------------------- /app/assets/javascripts/lib/cookie_jar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/lib/cookie_jar.js -------------------------------------------------------------------------------- /app/assets/javascripts/lib/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/lib/markdown.js -------------------------------------------------------------------------------- /app/assets/javascripts/lib/qr_code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/lib/qr_code.js -------------------------------------------------------------------------------- /app/assets/javascripts/lib/qrcode_UTF8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/lib/qrcode_UTF8.js -------------------------------------------------------------------------------- /app/assets/javascripts/salt.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/salt.js.erb -------------------------------------------------------------------------------- /app/assets/javascripts/salt/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/salt/api.js -------------------------------------------------------------------------------- /app/assets/javascripts/salt/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/salt/app.js -------------------------------------------------------------------------------- /app/assets/javascripts/salt/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/salt/auth.js -------------------------------------------------------------------------------- /app/assets/javascripts/salt/env.js: -------------------------------------------------------------------------------- 1 | angular.module('app').constant('$env', window.BS_ENV); 2 | -------------------------------------------------------------------------------- /app/assets/javascripts/salt/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/salt/filters.js -------------------------------------------------------------------------------- /app/assets/javascripts/salt/home/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/salt/home/base.js -------------------------------------------------------------------------------- /app/assets/javascripts/salt/home/teams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/salt/home/teams.js -------------------------------------------------------------------------------- /app/assets/javascripts/salt/teams/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/salt/teams/base.js -------------------------------------------------------------------------------- /app/assets/javascripts/salt/teams/show.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/salt/teams/show.js -------------------------------------------------------------------------------- /app/assets/javascripts/salt/title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/javascripts/salt/title.js -------------------------------------------------------------------------------- /app/assets/stylesheets/admin.css.erb: -------------------------------------------------------------------------------- 1 | /* 2 | *= require_tree "./admin" 3 | */ 4 | -------------------------------------------------------------------------------- /app/assets/stylesheets/admin/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/stylesheets/admin/base.css -------------------------------------------------------------------------------- /app/assets/stylesheets/admin/companies.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/stylesheets/admin/companies.css -------------------------------------------------------------------------------- /app/assets/stylesheets/admin/home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/stylesheets/admin/home.css -------------------------------------------------------------------------------- /app/assets/stylesheets/admin/issues.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/stylesheets/admin/issues.css -------------------------------------------------------------------------------- /app/assets/stylesheets/admin/kpi.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/stylesheets/admin/kpi.css -------------------------------------------------------------------------------- /app/assets/stylesheets/admin/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/stylesheets/admin/layout.css -------------------------------------------------------------------------------- /app/assets/stylesheets/admin/people.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/stylesheets/admin/people.css -------------------------------------------------------------------------------- /app/assets/stylesheets/admin/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/stylesheets/admin/search.css -------------------------------------------------------------------------------- /app/assets/stylesheets/admin/signin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/stylesheets/admin/signin.css -------------------------------------------------------------------------------- /app/assets/stylesheets/bountysource.css.erb: -------------------------------------------------------------------------------- 1 | /* 2 | *= require_tree "./bountysource" 3 | */ 4 | -------------------------------------------------------------------------------- /app/assets/stylesheets/bountysource/modal.css: -------------------------------------------------------------------------------- 1 | .modal-content { 2 | border-radius: 0px; 3 | } -------------------------------------------------------------------------------- /app/assets/stylesheets/salt.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/stylesheets/salt.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/salt/app/angular-ui.scss: -------------------------------------------------------------------------------- 1 | 2 | .nav a { cursor: pointer; } 3 | -------------------------------------------------------------------------------- /app/assets/stylesheets/salt/app/forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/stylesheets/salt/app/forms.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/salt/app/home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/stylesheets/salt/app/home.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/salt/app/navs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/stylesheets/salt/app/navs.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/salt/app/teams.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/assets/stylesheets/salt/app/teams.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/salt/app/timeline.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/stylesheets/salt/base.scss: -------------------------------------------------------------------------------- 1 | @import "app/*"; -------------------------------------------------------------------------------- /app/controllers/admin_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/controllers/admin_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/base_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/controllers/api/base_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v0/base_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/controllers/api/v0/base_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v0/home_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/controllers/api/v0/home_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v0/tags_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/controllers/api/v0/tags_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v0/teams_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/controllers/api/v0/teams_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/bulk_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/controllers/api/v1/bulk_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/home_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/controllers/api/v1/home_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/stats_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/controllers/api/v1/stats_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/teams_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/controllers/api/v1/teams_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v2/cart_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/controllers/api/v2/cart_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v2/pacts_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/controllers/api/v2/pacts_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v2/stats_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/controllers/api/v2/stats_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v2/tags_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/controllers/api/v2/tags_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v2/teams_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/controllers/api/v2/teams_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/badge_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/controllers/badge_controller.rb -------------------------------------------------------------------------------- /app/controllers/coinbase_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/controllers/coinbase_controller.rb -------------------------------------------------------------------------------- /app/controllers/payments_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/controllers/payments_controller.rb -------------------------------------------------------------------------------- /app/controllers/salt_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/controllers/salt_controller.rb -------------------------------------------------------------------------------- /app/controllers/session_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/controllers/session_controller.rb -------------------------------------------------------------------------------- /app/controllers/shorts_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/controllers/shorts_controller.rb -------------------------------------------------------------------------------- /app/controllers/track_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/controllers/track_controller.rb -------------------------------------------------------------------------------- /app/helpers/admin_helper.rb: -------------------------------------------------------------------------------- 1 | module AdminHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/api/v1/home_helper.rb: -------------------------------------------------------------------------------- 1 | module Api::V1::HomeHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/api/v2/account_helper.rb: -------------------------------------------------------------------------------- 1 | module Api::V2::AccountHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/api/v2/addresses_helper.rb: -------------------------------------------------------------------------------- 1 | module Api::V2::AddressesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/api/v2/backers_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/helpers/api/v2/backers_helper.rb -------------------------------------------------------------------------------- /app/helpers/api/v2/base_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/helpers/api/v2/base_helper.rb -------------------------------------------------------------------------------- /app/helpers/api/v2/bounties_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/helpers/api/v2/bounties_helper.rb -------------------------------------------------------------------------------- /app/helpers/api/v2/bounty_claims_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/helpers/api/v2/bounty_claims_helper.rb -------------------------------------------------------------------------------- /app/helpers/api/v2/cart_helper.rb: -------------------------------------------------------------------------------- 1 | module Api::V2::CartHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/api/v2/cash_outs_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/helpers/api/v2/cash_outs_helper.rb -------------------------------------------------------------------------------- /app/helpers/api/v2/fundraisers_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/helpers/api/v2/fundraisers_helper.rb -------------------------------------------------------------------------------- /app/helpers/api/v2/issues_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/helpers/api/v2/issues_helper.rb -------------------------------------------------------------------------------- /app/helpers/api/v2/pagination_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/helpers/api/v2/pagination_helper.rb -------------------------------------------------------------------------------- /app/helpers/api/v2/people_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/helpers/api/v2/people_helper.rb -------------------------------------------------------------------------------- /app/helpers/api/v2/people_trackers_helper.rb: -------------------------------------------------------------------------------- 1 | module Api::V2::PeopleTrackersHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/api/v2/pledges_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/helpers/api/v2/pledges_helper.rb -------------------------------------------------------------------------------- /app/helpers/api/v2/plugins_helper.rb: -------------------------------------------------------------------------------- 1 | module Api::V2::PluginsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/api/v2/solutions_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/helpers/api/v2/solutions_helper.rb -------------------------------------------------------------------------------- /app/helpers/api/v2/timeline_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/helpers/api/v2/timeline_helper.rb -------------------------------------------------------------------------------- /app/helpers/api/v2/trackers_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/helpers/api/v2/trackers_helper.rb -------------------------------------------------------------------------------- /app/helpers/bounty_source_helper.rb: -------------------------------------------------------------------------------- 1 | module BountySourceHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/issue_link_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/helpers/issue_link_helper.rb -------------------------------------------------------------------------------- /app/helpers/issue_meta_tags_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/helpers/issue_meta_tags_helper.rb -------------------------------------------------------------------------------- /app/helpers/number_to_dollars_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/helpers/number_to_dollars_helper.rb -------------------------------------------------------------------------------- /app/helpers/owner_link_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/helpers/owner_link_helper.rb -------------------------------------------------------------------------------- /app/helpers/pacts_helper.rb: -------------------------------------------------------------------------------- 1 | module PactsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/team_link_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/helpers/team_link_helper.rb -------------------------------------------------------------------------------- /app/helpers/tracker_link_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/helpers/tracker_link_helper.rb -------------------------------------------------------------------------------- /app/mailers/mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/mailers/mailer.rb -------------------------------------------------------------------------------- /app/mailers/mailer_scheduler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/mailers/mailer_scheduler.rb -------------------------------------------------------------------------------- /app/models/ability.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/ability.rb -------------------------------------------------------------------------------- /app/models/access_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/access_token.rb -------------------------------------------------------------------------------- /app/models/account.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/account.rb -------------------------------------------------------------------------------- /app/models/account/amazon.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/account/amazon.rb -------------------------------------------------------------------------------- /app/models/account/apache.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/account/apache.rb -------------------------------------------------------------------------------- /app/models/account/bof_a.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/account/bof_a.rb -------------------------------------------------------------------------------- /app/models/account/bounty_source_merch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/account/bounty_source_merch.rb -------------------------------------------------------------------------------- /app/models/account/cash_out_hold.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/account/cash_out_hold.rb -------------------------------------------------------------------------------- /app/models/account/coinbase.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/account/coinbase.rb -------------------------------------------------------------------------------- /app/models/account/fundraiser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/account/fundraiser.rb -------------------------------------------------------------------------------- /app/models/account/google_wallet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/account/google_wallet.rb -------------------------------------------------------------------------------- /app/models/account/inactivity_fee.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/account/inactivity_fee.rb -------------------------------------------------------------------------------- /app/models/account/issue_account.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/account/issue_account.rb -------------------------------------------------------------------------------- /app/models/account/liability.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/account/liability.rb -------------------------------------------------------------------------------- /app/models/account/payment_method.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/account/payment_method.rb -------------------------------------------------------------------------------- /app/models/account/paypal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/account/paypal.rb -------------------------------------------------------------------------------- /app/models/account/personal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/account/personal.rb -------------------------------------------------------------------------------- /app/models/account/repository.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/account/repository.rb -------------------------------------------------------------------------------- /app/models/account/request_for_proposal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/account/request_for_proposal.rb -------------------------------------------------------------------------------- /app/models/account/team.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/account/team.rb -------------------------------------------------------------------------------- /app/models/activity_log.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/activity_log.rb -------------------------------------------------------------------------------- /app/models/ad_space.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/ad_space.rb -------------------------------------------------------------------------------- /app/models/address.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/address.rb -------------------------------------------------------------------------------- /app/models/admin_stat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/admin_stat.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/badge.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/badge.rb -------------------------------------------------------------------------------- /app/models/badge/issue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/badge/issue.rb -------------------------------------------------------------------------------- /app/models/badge/team.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/badge/team.rb -------------------------------------------------------------------------------- /app/models/badge/team/bounties_posted.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/badge/team/bounties_posted.rb -------------------------------------------------------------------------------- /app/models/badge/team/bounties_received.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/badge/team/bounties_received.rb -------------------------------------------------------------------------------- /app/models/badge/team/raised.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/badge/team/raised.rb -------------------------------------------------------------------------------- /app/models/badge/tracker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/badge/tracker.rb -------------------------------------------------------------------------------- /app/models/badge_cache.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/badge_cache.rb -------------------------------------------------------------------------------- /app/models/badge_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/badge_factory.rb -------------------------------------------------------------------------------- /app/models/bitbucket/api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/bitbucket/api.rb -------------------------------------------------------------------------------- /app/models/bitbucket/issue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/bitbucket/issue.rb -------------------------------------------------------------------------------- /app/models/bitbucket/tracker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/bitbucket/tracker.rb -------------------------------------------------------------------------------- /app/models/bounty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/bounty.rb -------------------------------------------------------------------------------- /app/models/bounty_claim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/bounty_claim.rb -------------------------------------------------------------------------------- /app/models/bounty_claim_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/bounty_claim_event.rb -------------------------------------------------------------------------------- /app/models/bounty_claim_event/collected.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/bounty_claim_event/collected.rb -------------------------------------------------------------------------------- /app/models/bounty_claim_event/rejected.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/bounty_claim_event/rejected.rb -------------------------------------------------------------------------------- /app/models/bounty_claim_response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/bounty_claim_response.rb -------------------------------------------------------------------------------- /app/models/bugzilla/api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/bugzilla/api.rb -------------------------------------------------------------------------------- /app/models/bugzilla/issue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/bugzilla/issue.rb -------------------------------------------------------------------------------- /app/models/bugzilla/tracker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/bugzilla/tracker.rb -------------------------------------------------------------------------------- /app/models/cash_out.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/cash_out.rb -------------------------------------------------------------------------------- /app/models/cash_out/bitcoin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/cash_out/bitcoin.rb -------------------------------------------------------------------------------- /app/models/cash_out/check.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/cash_out/check.rb -------------------------------------------------------------------------------- /app/models/cash_out/mastercoin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/cash_out/mastercoin.rb -------------------------------------------------------------------------------- /app/models/cash_out/paypal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/cash_out/paypal.rb -------------------------------------------------------------------------------- /app/models/cash_out/ripple.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/cash_out/ripple.rb -------------------------------------------------------------------------------- /app/models/coinbase_api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/coinbase_api.rb -------------------------------------------------------------------------------- /app/models/comment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/comment.rb -------------------------------------------------------------------------------- /app/models/concerns/email_verification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/concerns/email_verification.rb -------------------------------------------------------------------------------- /app/models/concerns/has_account.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/concerns/has_account.rb -------------------------------------------------------------------------------- /app/models/concerns/has_cloudinary.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/concerns/has_cloudinary.rb -------------------------------------------------------------------------------- /app/models/concerns/has_owner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/concerns/has_owner.rb -------------------------------------------------------------------------------- /app/models/concerns/password_resetable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/concerns/password_resetable.rb -------------------------------------------------------------------------------- /app/models/crontab.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/crontab.rb -------------------------------------------------------------------------------- /app/models/crypto_admin_address.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/crypto_admin_address.rb -------------------------------------------------------------------------------- /app/models/crypto_bounty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/crypto_bounty.rb -------------------------------------------------------------------------------- /app/models/crypto_pay_out.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/crypto_pay_out.rb -------------------------------------------------------------------------------- /app/models/crypto_pay_out_claim_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/crypto_pay_out_claim_event.rb -------------------------------------------------------------------------------- /app/models/crypto_pay_out_txn.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/crypto_pay_out_txn.rb -------------------------------------------------------------------------------- /app/models/currency.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/currency.rb -------------------------------------------------------------------------------- /app/models/currency/bitcoin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/currency/bitcoin.rb -------------------------------------------------------------------------------- /app/models/currency/erc20.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/currency/erc20.rb -------------------------------------------------------------------------------- /app/models/currency/ethereum.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/currency/ethereum.rb -------------------------------------------------------------------------------- /app/models/developer_goal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/developer_goal.rb -------------------------------------------------------------------------------- /app/models/event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/event.rb -------------------------------------------------------------------------------- /app/models/follow_relation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/follow_relation.rb -------------------------------------------------------------------------------- /app/models/fundraiser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/fundraiser.rb -------------------------------------------------------------------------------- /app/models/fundraiser_tracker_relation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/fundraiser_tracker_relation.rb -------------------------------------------------------------------------------- /app/models/github/api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/github/api.rb -------------------------------------------------------------------------------- /app/models/github/event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/github/event.rb -------------------------------------------------------------------------------- /app/models/github/issue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/github/issue.rb -------------------------------------------------------------------------------- /app/models/github/repository.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/github/repository.rb -------------------------------------------------------------------------------- /app/models/github_stargazer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/github_stargazer.rb -------------------------------------------------------------------------------- /app/models/gitlab/api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/gitlab/api.rb -------------------------------------------------------------------------------- /app/models/gitlab/issue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/gitlab/issue.rb -------------------------------------------------------------------------------- /app/models/gitlab/tracker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/gitlab/tracker.rb -------------------------------------------------------------------------------- /app/models/google_code/api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/google_code/api.rb -------------------------------------------------------------------------------- /app/models/google_code/issue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/google_code/issue.rb -------------------------------------------------------------------------------- /app/models/google_code/tracker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/google_code/tracker.rb -------------------------------------------------------------------------------- /app/models/google_wallet_item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/google_wallet_item.rb -------------------------------------------------------------------------------- /app/models/issue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/issue.rb -------------------------------------------------------------------------------- /app/models/issue_address.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/issue_address.rb -------------------------------------------------------------------------------- /app/models/issue_rank.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/issue_rank.rb -------------------------------------------------------------------------------- /app/models/issue_rank/person.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/issue_rank/person.rb -------------------------------------------------------------------------------- /app/models/issue_rank/team_rank.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/issue_rank/team_rank.rb -------------------------------------------------------------------------------- /app/models/issue_rank_cache.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/issue_rank_cache.rb -------------------------------------------------------------------------------- /app/models/issue_suggestion.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/issue_suggestion.rb -------------------------------------------------------------------------------- /app/models/issue_suggestion_reward.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/issue_suggestion_reward.rb -------------------------------------------------------------------------------- /app/models/jira/api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/jira/api.rb -------------------------------------------------------------------------------- /app/models/jira/issue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/jira/issue.rb -------------------------------------------------------------------------------- /app/models/jira/tracker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/jira/tracker.rb -------------------------------------------------------------------------------- /app/models/language.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/language.rb -------------------------------------------------------------------------------- /app/models/language_person_relation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/language_person_relation.rb -------------------------------------------------------------------------------- /app/models/launchpad/api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/launchpad/api.rb -------------------------------------------------------------------------------- /app/models/launchpad/issue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/launchpad/issue.rb -------------------------------------------------------------------------------- /app/models/launchpad/tracker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/launchpad/tracker.rb -------------------------------------------------------------------------------- /app/models/linked_account/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/linked_account/base.rb -------------------------------------------------------------------------------- /app/models/linked_account/bitbucket.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/linked_account/bitbucket.rb -------------------------------------------------------------------------------- /app/models/linked_account/facebook.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/linked_account/facebook.rb -------------------------------------------------------------------------------- /app/models/linked_account/github.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/linked_account/github.rb -------------------------------------------------------------------------------- /app/models/linked_account/github/bot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/linked_account/github/bot.rb -------------------------------------------------------------------------------- /app/models/linked_account/github/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/linked_account/github/user.rb -------------------------------------------------------------------------------- /app/models/linked_account/gitlab.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/linked_account/gitlab.rb -------------------------------------------------------------------------------- /app/models/linked_account/twitter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/linked_account/twitter.rb -------------------------------------------------------------------------------- /app/models/lurker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/lurker.rb -------------------------------------------------------------------------------- /app/models/mantis/api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/mantis/api.rb -------------------------------------------------------------------------------- /app/models/mantis/issue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/mantis/issue.rb -------------------------------------------------------------------------------- /app/models/mantis/tracker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/mantis/tracker.rb -------------------------------------------------------------------------------- /app/models/merged_model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/merged_model.rb -------------------------------------------------------------------------------- /app/models/milestone.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/milestone.rb -------------------------------------------------------------------------------- /app/models/mixpanel_alias.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/mixpanel_alias.rb -------------------------------------------------------------------------------- /app/models/mixpanel_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/mixpanel_event.rb -------------------------------------------------------------------------------- /app/models/pact.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/pact.rb -------------------------------------------------------------------------------- /app/models/pact_application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/pact_application.rb -------------------------------------------------------------------------------- /app/models/payment_method.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/payment_method.rb -------------------------------------------------------------------------------- /app/models/payment_method_temporary.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/payment_method_temporary.rb -------------------------------------------------------------------------------- /app/models/payment_notification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/payment_notification.rb -------------------------------------------------------------------------------- /app/models/payment_notification/paypal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/payment_notification/paypal.rb -------------------------------------------------------------------------------- /app/models/payment_notification_log.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/payment_notification_log.rb -------------------------------------------------------------------------------- /app/models/paypal_ipn.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/paypal_ipn.rb -------------------------------------------------------------------------------- /app/models/person.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/person.rb -------------------------------------------------------------------------------- /app/models/person_relation/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/person_relation/base.rb -------------------------------------------------------------------------------- /app/models/person_relation/facebook.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/person_relation/facebook.rb -------------------------------------------------------------------------------- /app/models/person_relation/github.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/person_relation/github.rb -------------------------------------------------------------------------------- /app/models/person_relation/twitter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/person_relation/twitter.rb -------------------------------------------------------------------------------- /app/models/php_tracker/api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/php_tracker/api.rb -------------------------------------------------------------------------------- /app/models/php_tracker/issue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/php_tracker/issue.rb -------------------------------------------------------------------------------- /app/models/php_tracker/tracker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/php_tracker/tracker.rb -------------------------------------------------------------------------------- /app/models/pivotal/api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/pivotal/api.rb -------------------------------------------------------------------------------- /app/models/pivotal/issue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/pivotal/issue.rb -------------------------------------------------------------------------------- /app/models/pivotal/tracker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/pivotal/tracker.rb -------------------------------------------------------------------------------- /app/models/pledge.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/pledge.rb -------------------------------------------------------------------------------- /app/models/pledge_survey_response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/pledge_survey_response.rb -------------------------------------------------------------------------------- /app/models/postback.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/postback.rb -------------------------------------------------------------------------------- /app/models/proposal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/proposal.rb -------------------------------------------------------------------------------- /app/models/public_stat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/public_stat.rb -------------------------------------------------------------------------------- /app/models/quickbooks_base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/quickbooks_base.rb -------------------------------------------------------------------------------- /app/models/quickbooks_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/quickbooks_token.rb -------------------------------------------------------------------------------- /app/models/quickbooks_transaction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/quickbooks_transaction.rb -------------------------------------------------------------------------------- /app/models/quickbooks_vendor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/quickbooks_vendor.rb -------------------------------------------------------------------------------- /app/models/recommendation_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/recommendation_event.rb -------------------------------------------------------------------------------- /app/models/request_for_proposal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/request_for_proposal.rb -------------------------------------------------------------------------------- /app/models/reward.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/reward.rb -------------------------------------------------------------------------------- /app/models/savannah/api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/savannah/api.rb -------------------------------------------------------------------------------- /app/models/savannah/issue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/savannah/issue.rb -------------------------------------------------------------------------------- /app/models/savannah/tracker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/savannah/tracker.rb -------------------------------------------------------------------------------- /app/models/saved_search_tab.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/saved_search_tab.rb -------------------------------------------------------------------------------- /app/models/search.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/search.rb -------------------------------------------------------------------------------- /app/models/sendgrid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/sendgrid.rb -------------------------------------------------------------------------------- /app/models/sent_email.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/sent_email.rb -------------------------------------------------------------------------------- /app/models/shopping_cart.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/shopping_cart.rb -------------------------------------------------------------------------------- /app/models/short.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/short.rb -------------------------------------------------------------------------------- /app/models/solution.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/solution.rb -------------------------------------------------------------------------------- /app/models/solution_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/solution_event.rb -------------------------------------------------------------------------------- /app/models/solution_event/checked_in.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/solution_event/checked_in.rb -------------------------------------------------------------------------------- /app/models/solution_event/completed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/solution_event/completed.rb -------------------------------------------------------------------------------- /app/models/solution_event/started.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/solution_event/started.rb -------------------------------------------------------------------------------- /app/models/solution_event/stopped.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/solution_event/stopped.rb -------------------------------------------------------------------------------- /app/models/source_forge/api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/source_forge/api.rb -------------------------------------------------------------------------------- /app/models/source_forge/issue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/source_forge/issue.rb -------------------------------------------------------------------------------- /app/models/source_forge/tracker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/source_forge/tracker.rb -------------------------------------------------------------------------------- /app/models/source_forge_native/api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/source_forge_native/api.rb -------------------------------------------------------------------------------- /app/models/source_forge_native/issue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/source_forge_native/issue.rb -------------------------------------------------------------------------------- /app/models/source_forge_native/tracker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/source_forge_native/tracker.rb -------------------------------------------------------------------------------- /app/models/split.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/split.rb -------------------------------------------------------------------------------- /app/models/support_level.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/support_level.rb -------------------------------------------------------------------------------- /app/models/support_level_payment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/support_level_payment.rb -------------------------------------------------------------------------------- /app/models/support_offering.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/support_offering.rb -------------------------------------------------------------------------------- /app/models/support_offering_reward.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/support_offering_reward.rb -------------------------------------------------------------------------------- /app/models/tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/tag.rb -------------------------------------------------------------------------------- /app/models/tag_relation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/tag_relation.rb -------------------------------------------------------------------------------- /app/models/tag_vote.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/tag_vote.rb -------------------------------------------------------------------------------- /app/models/takedown.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/takedown.rb -------------------------------------------------------------------------------- /app/models/team.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/team.rb -------------------------------------------------------------------------------- /app/models/team_activity_inclusion.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/team_activity_inclusion.rb -------------------------------------------------------------------------------- /app/models/team_bounty_hunter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/team_bounty_hunter.rb -------------------------------------------------------------------------------- /app/models/team_claim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/team_claim.rb -------------------------------------------------------------------------------- /app/models/team_invite.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/team_invite.rb -------------------------------------------------------------------------------- /app/models/team_member_relation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/team_member_relation.rb -------------------------------------------------------------------------------- /app/models/team_payin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/team_payin.rb -------------------------------------------------------------------------------- /app/models/team_tracker_relation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/team_tracker_relation.rb -------------------------------------------------------------------------------- /app/models/team_update.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/team_update.rb -------------------------------------------------------------------------------- /app/models/thumb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/thumb.rb -------------------------------------------------------------------------------- /app/models/trac/api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/trac/api.rb -------------------------------------------------------------------------------- /app/models/trac/issue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/trac/issue.rb -------------------------------------------------------------------------------- /app/models/trac/tracker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/trac/tracker.rb -------------------------------------------------------------------------------- /app/models/tracker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/tracker.rb -------------------------------------------------------------------------------- /app/models/tracker_donation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/tracker_donation.rb -------------------------------------------------------------------------------- /app/models/tracker_language_relation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/tracker_language_relation.rb -------------------------------------------------------------------------------- /app/models/tracker_person_relation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/tracker_person_relation.rb -------------------------------------------------------------------------------- /app/models/tracker_plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/tracker_plugin.rb -------------------------------------------------------------------------------- /app/models/tracker_plugin/gh.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/tracker_plugin/gh.rb -------------------------------------------------------------------------------- /app/models/tracker_plugin_backup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/tracker_plugin_backup.rb -------------------------------------------------------------------------------- /app/models/tracker_rank_cache.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/tracker_rank_cache.rb -------------------------------------------------------------------------------- /app/models/tracker_relation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/tracker_relation.rb -------------------------------------------------------------------------------- /app/models/tracker_relation/committer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/tracker_relation/committer.rb -------------------------------------------------------------------------------- /app/models/tracker_relation/owner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/tracker_relation/owner.rb -------------------------------------------------------------------------------- /app/models/tracker_unknown.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/tracker_unknown.rb -------------------------------------------------------------------------------- /app/models/transaction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/transaction.rb -------------------------------------------------------------------------------- /app/models/transaction/bank_transfer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/transaction/bank_transfer.rb -------------------------------------------------------------------------------- /app/models/transaction/cash_out.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/transaction/cash_out.rb -------------------------------------------------------------------------------- /app/models/transaction/cash_out/paypal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/transaction/cash_out/paypal.rb -------------------------------------------------------------------------------- /app/models/transaction/order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/transaction/order.rb -------------------------------------------------------------------------------- /app/models/transaction/order/coinbase.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/transaction/order/coinbase.rb -------------------------------------------------------------------------------- /app/models/transaction/order/internal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/transaction/order/internal.rb -------------------------------------------------------------------------------- /app/models/transaction/order/paypal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/transaction/order/paypal.rb -------------------------------------------------------------------------------- /app/models/transaction/payment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/transaction/payment.rb -------------------------------------------------------------------------------- /app/models/transaction/refund.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/transaction/refund.rb -------------------------------------------------------------------------------- /app/models/transaction/refund/paypal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/transaction/refund/paypal.rb -------------------------------------------------------------------------------- /app/models/unsubscribe.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/unsubscribe.rb -------------------------------------------------------------------------------- /app/models/wallet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/models/wallet.rb -------------------------------------------------------------------------------- /app/queries/crypto_pay_outs_query.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/queries/crypto_pay_outs_query.rb -------------------------------------------------------------------------------- /app/queries/people_query.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/queries/people_query.rb -------------------------------------------------------------------------------- /app/services/charge_user_inactivity_fee.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/services/charge_user_inactivity_fee.rb -------------------------------------------------------------------------------- /app/services/crypto_api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/services/crypto_api.rb -------------------------------------------------------------------------------- /app/validators/url_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/validators/url_validator.rb -------------------------------------------------------------------------------- /app/views/api/v0/access_tokens.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v0/access_tokens.rabl -------------------------------------------------------------------------------- /app/views/api/v0/activity_logs/index.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v0/activity_logs/index.rabl -------------------------------------------------------------------------------- /app/views/api/v0/ad_spaces/index.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v0/ad_spaces/index.rabl -------------------------------------------------------------------------------- /app/views/api/v0/ad_spaces/show.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v0/ad_spaces/show.rabl -------------------------------------------------------------------------------- /app/views/api/v0/bounties/csv.json.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v0/bounties/csv.json.rb -------------------------------------------------------------------------------- /app/views/api/v0/bounties/index.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v0/bounties/index.rabl -------------------------------------------------------------------------------- /app/views/api/v0/bounties/partials/person.rabl: -------------------------------------------------------------------------------- 1 | child(:person) { extends "api/v1/people/partials/base" } 2 | -------------------------------------------------------------------------------- /app/views/api/v0/bounties/show.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v0/bounties/show.rabl -------------------------------------------------------------------------------- /app/views/api/v0/crypto_pay_outs/show.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v0/crypto_pay_outs/show.rabl -------------------------------------------------------------------------------- /app/views/api/v0/delayed_jobs/index.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v0/delayed_jobs/index.rabl -------------------------------------------------------------------------------- /app/views/api/v0/delayed_jobs/show.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v0/delayed_jobs/show.rabl -------------------------------------------------------------------------------- /app/views/api/v0/events/index.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.array! @collection, partial: 'api/v0/events/base', as: :item 2 | -------------------------------------------------------------------------------- /app/views/api/v0/issue_addresses/show.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v0/issue_addresses/show.rabl -------------------------------------------------------------------------------- /app/views/api/v0/issues/counts.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v0/issues/counts.rabl -------------------------------------------------------------------------------- /app/views/api/v0/issues/index.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v0/issues/index.rabl -------------------------------------------------------------------------------- /app/views/api/v0/issues/partials/base.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v0/issues/partials/base.rabl -------------------------------------------------------------------------------- /app/views/api/v0/issues/show.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v0/issues/show.rabl -------------------------------------------------------------------------------- /app/views/api/v0/pledges/index.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v0/pledges/index.rabl -------------------------------------------------------------------------------- /app/views/api/v0/pledges/partials/person.rabl: -------------------------------------------------------------------------------- 1 | child(:person) { extends "api/v1/people/partials/base" } 2 | -------------------------------------------------------------------------------- /app/views/api/v0/pledges/show.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v0/pledges/show.rabl -------------------------------------------------------------------------------- /app/views/api/v0/report/escrow_report.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v0/report/escrow_report.rabl -------------------------------------------------------------------------------- /app/views/api/v0/report/transactions.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v0/report/transactions.rabl -------------------------------------------------------------------------------- /app/views/api/v0/request_for_proposals/index.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.array! @collection, partial: 'base', as: :item 2 | -------------------------------------------------------------------------------- /app/views/api/v0/searches/index.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v0/searches/index.rabl -------------------------------------------------------------------------------- /app/views/api/v0/shorts/_base.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v0/shorts/_base.jbuilder -------------------------------------------------------------------------------- /app/views/api/v0/shorts/index.jbuilder: -------------------------------------------------------------------------------- 1 | json.array! @items, partial: 'api/v0/shorts/base', as: :item -------------------------------------------------------------------------------- /app/views/api/v0/shorts/show.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v0/shorts/show.jbuilder -------------------------------------------------------------------------------- /app/views/api/v0/solutions/index.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v0/solutions/index.rabl -------------------------------------------------------------------------------- /app/views/api/v0/splits/index.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v0/splits/index.rabl -------------------------------------------------------------------------------- /app/views/api/v0/tag_votes/index.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.array! @collection, partial: 'api/v0/tag_votes/base', as: :item 2 | -------------------------------------------------------------------------------- /app/views/api/v0/tags/_base.json.jbuilder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/api/v0/tags/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v0/tags/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/v0/takedowns/index.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v0/takedowns/index.rabl -------------------------------------------------------------------------------- /app/views/api/v0/team_claims/index.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v0/team_claims/index.rabl -------------------------------------------------------------------------------- /app/views/api/v0/team_payins/base.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v0/team_payins/base.rabl -------------------------------------------------------------------------------- /app/views/api/v0/team_payins/index.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v0/team_payins/index.rabl -------------------------------------------------------------------------------- /app/views/api/v0/team_payins/show.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v0/team_payins/show.rabl -------------------------------------------------------------------------------- /app/views/api/v0/teams/index.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v0/teams/index.rabl -------------------------------------------------------------------------------- /app/views/api/v0/teams/show.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v0/teams/show.rabl -------------------------------------------------------------------------------- /app/views/api/v0/trackers/index.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v0/trackers/index.rabl -------------------------------------------------------------------------------- /app/views/api/v0/trackers/show.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v0/trackers/show.rabl -------------------------------------------------------------------------------- /app/views/api/v0/transactions/index.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v0/transactions/index.rabl -------------------------------------------------------------------------------- /app/views/api/v0/transactions/partials/admin.rabl: -------------------------------------------------------------------------------- 1 | attribute :audited -------------------------------------------------------------------------------- /app/views/api/v0/transactions/show.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v0/transactions/show.rabl -------------------------------------------------------------------------------- /app/views/api/v1/accounts/admin.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/accounts/admin.rabl -------------------------------------------------------------------------------- /app/views/api/v1/accounts/show.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/accounts/show.rabl -------------------------------------------------------------------------------- /app/views/api/v1/ad_spaces/index.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/ad_spaces/index.rabl -------------------------------------------------------------------------------- /app/views/api/v1/bounties/index.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/bounties/index.rabl -------------------------------------------------------------------------------- /app/views/api/v1/bounties/show.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/bounties/show.rabl -------------------------------------------------------------------------------- /app/views/api/v1/bounty_claim_responses/partials/person.rabl: -------------------------------------------------------------------------------- 1 | child(:person) { extends "api/v1/people/partials/base" } -------------------------------------------------------------------------------- /app/views/api/v1/bounty_claims/index.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/bounty_claims/index.rabl -------------------------------------------------------------------------------- /app/views/api/v1/bounty_claims/partials/person.rabl: -------------------------------------------------------------------------------- 1 | child(:person) { extends "api/v1/people/partials/base" } -------------------------------------------------------------------------------- /app/views/api/v1/bounty_claims/show.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/bounty_claims/show.rabl -------------------------------------------------------------------------------- /app/views/api/v1/bulk/issues.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/bulk/issues.rabl -------------------------------------------------------------------------------- /app/views/api/v1/cards/index.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/cards/index.rabl -------------------------------------------------------------------------------- /app/views/api/v1/developer_goals/partials/person.rabl: -------------------------------------------------------------------------------- 1 | child(:person) { extends "api/v1/people/partials/base" } 2 | -------------------------------------------------------------------------------- /app/views/api/v1/developer_goals/show.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/developer_goals/show.rabl -------------------------------------------------------------------------------- /app/views/api/v1/doge_issues/index.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/doge_issues/index.rabl -------------------------------------------------------------------------------- /app/views/api/v1/follow_relations/partials/person.rabl: -------------------------------------------------------------------------------- 1 | child(:person) { extends "api/v1/people/partials/base" } -------------------------------------------------------------------------------- /app/views/api/v1/fundraisers/admin.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/fundraisers/admin.rabl -------------------------------------------------------------------------------- /app/views/api/v1/fundraisers/cards.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/fundraisers/cards.rabl -------------------------------------------------------------------------------- /app/views/api/v1/fundraisers/index.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/fundraisers/index.rabl -------------------------------------------------------------------------------- /app/views/api/v1/fundraisers/info.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/fundraisers/info.rabl -------------------------------------------------------------------------------- /app/views/api/v1/fundraisers/show.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/fundraisers/show.rabl -------------------------------------------------------------------------------- /app/views/api/v1/fundraisers/updates/partials/extended.rabl: -------------------------------------------------------------------------------- 1 | attribute :body -------------------------------------------------------------------------------- /app/views/api/v1/issues/activity.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/issues/activity.rabl -------------------------------------------------------------------------------- /app/views/api/v1/issues/authored.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/issues/authored.rabl -------------------------------------------------------------------------------- /app/views/api/v1/issues/bounties.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/issues/bounties.rabl -------------------------------------------------------------------------------- /app/views/api/v1/issues/featured.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/issues/featured.rabl -------------------------------------------------------------------------------- /app/views/api/v1/issues/index.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/issues/index.rabl -------------------------------------------------------------------------------- /app/views/api/v1/issues/overview.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/issues/overview.rabl -------------------------------------------------------------------------------- /app/views/api/v1/issues/partials/base.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/issues/partials/base.rabl -------------------------------------------------------------------------------- /app/views/api/v1/issues/partials/card.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/issues/partials/card.rabl -------------------------------------------------------------------------------- /app/views/api/v1/issues/show.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/issues/show.rabl -------------------------------------------------------------------------------- /app/views/api/v1/languages/index.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/languages/index.rabl -------------------------------------------------------------------------------- /app/views/api/v1/linked_accounts/show.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/linked_accounts/show.rabl -------------------------------------------------------------------------------- /app/views/api/v1/owners/partials/base.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/owners/partials/base.rabl -------------------------------------------------------------------------------- /app/views/api/v1/pacts/partials/base.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/pacts/partials/base.rabl -------------------------------------------------------------------------------- /app/views/api/v1/paypal_ipns/index.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/paypal_ipns/index.rabl -------------------------------------------------------------------------------- /app/views/api/v1/people/activity.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/people/activity.rabl -------------------------------------------------------------------------------- /app/views/api/v1/people/bounties.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/people/bounties.rabl -------------------------------------------------------------------------------- /app/views/api/v1/people/bounty_total.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/people/bounty_total.rabl -------------------------------------------------------------------------------- /app/views/api/v1/people/contributions.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/people/contributions.rabl -------------------------------------------------------------------------------- /app/views/api/v1/people/create.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/people/create.rabl -------------------------------------------------------------------------------- /app/views/api/v1/people/index.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/people/index.rabl -------------------------------------------------------------------------------- /app/views/api/v1/people/index_admin.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/people/index_admin.rabl -------------------------------------------------------------------------------- /app/views/api/v1/people/interesting.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/people/interesting.rabl -------------------------------------------------------------------------------- /app/views/api/v1/people/languages.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/people/languages.rabl -------------------------------------------------------------------------------- /app/views/api/v1/people/login.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/people/login.rabl -------------------------------------------------------------------------------- /app/views/api/v1/people/pacts.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/people/pacts.rabl -------------------------------------------------------------------------------- /app/views/api/v1/people/partials/base.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/people/partials/base.rabl -------------------------------------------------------------------------------- /app/views/api/v1/people/pledges.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/people/pledges.rabl -------------------------------------------------------------------------------- /app/views/api/v1/people/profile.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/people/profile.rabl -------------------------------------------------------------------------------- /app/views/api/v1/people/projects.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/people/projects.rabl -------------------------------------------------------------------------------- /app/views/api/v1/people/recent.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/people/recent.rabl -------------------------------------------------------------------------------- /app/views/api/v1/people/show.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/people/show.rabl -------------------------------------------------------------------------------- /app/views/api/v1/people/show_admin.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/people/show_admin.rabl -------------------------------------------------------------------------------- /app/views/api/v1/people/teams.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/people/teams.rabl -------------------------------------------------------------------------------- /app/views/api/v1/pledges/admin.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/pledges/admin.rabl -------------------------------------------------------------------------------- /app/views/api/v1/pledges/index.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/pledges/index.rabl -------------------------------------------------------------------------------- /app/views/api/v1/pledges/recent.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/pledges/recent.rabl -------------------------------------------------------------------------------- /app/views/api/v1/pledges/show.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/pledges/show.rabl -------------------------------------------------------------------------------- /app/views/api/v1/pledges/top_backers.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/pledges/top_backers.rabl -------------------------------------------------------------------------------- /app/views/api/v1/projects/issues.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/projects/issues.rabl -------------------------------------------------------------------------------- /app/views/api/v1/rewards/index.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/rewards/index.rabl -------------------------------------------------------------------------------- /app/views/api/v1/rewards/show.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/rewards/show.rabl -------------------------------------------------------------------------------- /app/views/api/v1/searches/index.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/searches/index.rabl -------------------------------------------------------------------------------- /app/views/api/v1/searches/show.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/searches/show.rabl -------------------------------------------------------------------------------- /app/views/api/v1/searches/typeahead.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/searches/typeahead.rabl -------------------------------------------------------------------------------- /app/views/api/v1/shopping_cart/show.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/shopping_cart/show.rabl -------------------------------------------------------------------------------- /app/views/api/v1/solutions/index.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/solutions/index.rabl -------------------------------------------------------------------------------- /app/views/api/v1/solutions/show.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/solutions/show.rabl -------------------------------------------------------------------------------- /app/views/api/v1/splits/index.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/splits/index.rabl -------------------------------------------------------------------------------- /app/views/api/v1/splits/partials/base.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/splits/partials/base.rabl -------------------------------------------------------------------------------- /app/views/api/v1/splits/show.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/splits/show.rabl -------------------------------------------------------------------------------- /app/views/api/v1/team_invites/create.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/team_invites/create.rabl -------------------------------------------------------------------------------- /app/views/api/v1/team_invites/index.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/team_invites/index.rabl -------------------------------------------------------------------------------- /app/views/api/v1/team_payins/partials/person.rabl: -------------------------------------------------------------------------------- 1 | child(:person) { 2 | extends "api/v1/people/partials/base" 3 | } -------------------------------------------------------------------------------- /app/views/api/v1/teams/activity.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/teams/activity.rabl -------------------------------------------------------------------------------- /app/views/api/v1/teams/bounties.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/teams/bounties.rabl -------------------------------------------------------------------------------- /app/views/api/v1/teams/index.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/teams/index.rabl -------------------------------------------------------------------------------- /app/views/api/v1/teams/issues.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/teams/issues.rabl -------------------------------------------------------------------------------- /app/views/api/v1/teams/members.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/teams/members.rabl -------------------------------------------------------------------------------- /app/views/api/v1/teams/partials/base.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/teams/partials/base.rabl -------------------------------------------------------------------------------- /app/views/api/v1/teams/show.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/teams/show.rabl -------------------------------------------------------------------------------- /app/views/api/v1/teams/trackers.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/teams/trackers.rabl -------------------------------------------------------------------------------- /app/views/api/v1/tracker_plugins/partials/person.rabl: -------------------------------------------------------------------------------- 1 | child(:person) { extends "api/v1/people/partials/base" } -------------------------------------------------------------------------------- /app/views/api/v1/tracker_plugins/show.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/tracker_plugins/show.rabl -------------------------------------------------------------------------------- /app/views/api/v1/tracker_relations/partials/extended.rabl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/api/v1/trackers/activity.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/trackers/activity.rabl -------------------------------------------------------------------------------- /app/views/api/v1/trackers/cards.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/trackers/cards.rabl -------------------------------------------------------------------------------- /app/views/api/v1/trackers/followed.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/trackers/followed.rabl -------------------------------------------------------------------------------- /app/views/api/v1/trackers/index.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/trackers/index.rabl -------------------------------------------------------------------------------- /app/views/api/v1/trackers/partials/owner.rabl: -------------------------------------------------------------------------------- 1 | child(:team) do 2 | extends "api/v1/owners/partials/base" 3 | end 4 | -------------------------------------------------------------------------------- /app/views/api/v1/trackers/show.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/trackers/show.rabl -------------------------------------------------------------------------------- /app/views/api/v1/trackers/top_backers.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/trackers/top_backers.rabl -------------------------------------------------------------------------------- /app/views/api/v1/transactions/index.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/transactions/index.rabl -------------------------------------------------------------------------------- /app/views/api/v1/transactions/show.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v1/transactions/show.rabl -------------------------------------------------------------------------------- /app/views/api/v2/_image_urls.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v2/_image_urls.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/v2/addresses/index.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.array! @collection, partial: 'base', as: :item -------------------------------------------------------------------------------- /app/views/api/v2/backers/index.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.array! @collection, partial: 'base', as: :item -------------------------------------------------------------------------------- /app/views/api/v2/bounties/index.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.array! @collection, partial: 'base', as: :item 2 | -------------------------------------------------------------------------------- /app/views/api/v2/bounties/summary.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.array! @collection, partial: 'summary', as: :item 2 | -------------------------------------------------------------------------------- /app/views/api/v2/bounty_claims/index.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.array! @collection, partial: 'base', as: :item 2 | -------------------------------------------------------------------------------- /app/views/api/v2/cart/_base.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v2/cart/_base.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/v2/cart/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v2/cart/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/v2/cash_outs/csv.json.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v2/cash_outs/csv.json.rb -------------------------------------------------------------------------------- /app/views/api/v2/cash_outs/index.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.array! @collection, partial: 'api/v2/cash_outs/base', as: :item -------------------------------------------------------------------------------- /app/views/api/v2/comments/index.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.array! @collection, partial: 'base', as: :item 2 | -------------------------------------------------------------------------------- /app/views/api/v2/developer_goals/index.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.array! @collection, partial: 'base', as: :item 2 | -------------------------------------------------------------------------------- /app/views/api/v2/events/index.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.array! @collection, template: 'base', as: :item -------------------------------------------------------------------------------- /app/views/api/v2/events/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v2/events/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/v2/fundraiser_rewards/index.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.array! @collection, partial: 'base', as: :item -------------------------------------------------------------------------------- /app/views/api/v2/fundraisers/index.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.array! @collection, partial: 'base', as: :item -------------------------------------------------------------------------------- /app/views/api/v2/issue_suggestions/index.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.array! @collection, partial: 'base', as: :item 2 | -------------------------------------------------------------------------------- /app/views/api/v2/issues/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v2/issues/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/v2/pacts/_base.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v2/pacts/_base.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/v2/pacts/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v2/pacts/index.html.erb -------------------------------------------------------------------------------- /app/views/api/v2/pacts/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v2/pacts/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/v2/pacts/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v2/pacts/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/v2/payment_methods/index.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.array! @collection, partial: 'base', as: :item 2 | -------------------------------------------------------------------------------- /app/views/api/v2/people/index.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.array! @collection, partial: 'base', as: :item -------------------------------------------------------------------------------- /app/views/api/v2/people/me.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v2/people/me.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/v2/people/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v2/people/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/v2/people_trackers/index.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.array! @collection, partial: 'api/v2/trackers/base', as: :item -------------------------------------------------------------------------------- /app/views/api/v2/pledges/index.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.array! @collection, partial: 'base', as: :item -------------------------------------------------------------------------------- /app/views/api/v2/plugins/index.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.array! @collection, partial: 'base', as: :item -------------------------------------------------------------------------------- /app/views/api/v2/proposals/index.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.array! @collection, partial: 'base', as: :item -------------------------------------------------------------------------------- /app/views/api/v2/redirect.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v2/redirect.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/v2/solutions/index.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.array! @collection, partial: 'base', as: :item 2 | -------------------------------------------------------------------------------- /app/views/api/v2/support_levels/index.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.array! @collection, partial: 'base', as: :item 2 | -------------------------------------------------------------------------------- /app/views/api/v2/supporters/index.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.array! @collection, partial: 'base', as: :item 2 | -------------------------------------------------------------------------------- /app/views/api/v2/tags/_base.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v2/tags/_base.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/v2/tags/index.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.array! @collection, partial: 'base', as: :item -------------------------------------------------------------------------------- /app/views/api/v2/team_updates/index.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.array! @collection, partial: 'base', as: :item -------------------------------------------------------------------------------- /app/views/api/v2/teams/_base.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v2/teams/_base.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/v2/teams/index.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.array! @collection, partial: 'base', as: :item -------------------------------------------------------------------------------- /app/views/api/v2/teams/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/api/v2/teams/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/v2/trackers/index.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.array! @collection, partial: 'base', as: :item 2 | -------------------------------------------------------------------------------- /app/views/api/v2/wallets/index.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.array! @collection, partial: 'api/v2/wallets/base', as: :item -------------------------------------------------------------------------------- /app/views/api/v2/wallets/show.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.partial! 'base', item: @wallet 2 | -------------------------------------------------------------------------------- /app/views/bounty_source/api_docs.html.erb: -------------------------------------------------------------------------------- 1 | API docs are coming soon! -------------------------------------------------------------------------------- /app/views/bounty_source/issue.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/bounty_source/issue.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_env.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/layouts/_env.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_footer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/layouts/_footer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_footer.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/layouts/_footer.text.erb -------------------------------------------------------------------------------- /app/views/layouts/_thank_you.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/layouts/_thank_you.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_thank_you.text.erb: -------------------------------------------------------------------------------- 1 | Thanks, 2 | The Bountysource Team -------------------------------------------------------------------------------- /app/views/layouts/admin.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/layouts/admin.html.erb -------------------------------------------------------------------------------- /app/views/layouts/bounty_source.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/layouts/bounty_source.html.erb -------------------------------------------------------------------------------- /app/views/layouts/email.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/layouts/email.html.erb -------------------------------------------------------------------------------- /app/views/layouts/email.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/layouts/email.md.erb -------------------------------------------------------------------------------- /app/views/layouts/email.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/layouts/email.text.erb -------------------------------------------------------------------------------- /app/views/layouts/salt.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/layouts/salt.html.erb -------------------------------------------------------------------------------- /app/views/mailer/account_created.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/mailer/account_created.html.erb -------------------------------------------------------------------------------- /app/views/mailer/account_created.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/mailer/account_created.text.erb -------------------------------------------------------------------------------- /app/views/mailer/added_to_team.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/mailer/added_to_team.html.erb -------------------------------------------------------------------------------- /app/views/mailer/added_to_team.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/mailer/added_to_team.text.erb -------------------------------------------------------------------------------- /app/views/mailer/bounty_created.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/mailer/bounty_created.html.erb -------------------------------------------------------------------------------- /app/views/mailer/bounty_created.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/mailer/bounty_created.text.erb -------------------------------------------------------------------------------- /app/views/mailer/bounty_increased.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/mailer/bounty_increased.md.erb -------------------------------------------------------------------------------- /app/views/mailer/bounty_placed.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/mailer/bounty_placed.md.erb -------------------------------------------------------------------------------- /app/views/mailer/bounty_refunded.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/mailer/bounty_refunded.html.erb -------------------------------------------------------------------------------- /app/views/mailer/bounty_refunded.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/mailer/bounty_refunded.text.erb -------------------------------------------------------------------------------- /app/views/mailer/change_email.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/mailer/change_email.html.erb -------------------------------------------------------------------------------- /app/views/mailer/change_email.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/mailer/change_email.text.erb -------------------------------------------------------------------------------- /app/views/mailer/claim_team.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/mailer/claim_team.md.erb -------------------------------------------------------------------------------- /app/views/mailer/invited_to_team.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/mailer/invited_to_team.html.erb -------------------------------------------------------------------------------- /app/views/mailer/invited_to_team.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/mailer/invited_to_team.text.erb -------------------------------------------------------------------------------- /app/views/mailer/order_created.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/mailer/order_created.html.erb -------------------------------------------------------------------------------- /app/views/mailer/order_created.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/mailer/order_created.text.erb -------------------------------------------------------------------------------- /app/views/mailer/order_failed.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/mailer/order_failed.html.erb -------------------------------------------------------------------------------- /app/views/mailer/order_failed.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/mailer/order_failed.text.erb -------------------------------------------------------------------------------- /app/views/mailer/proposal_appointed_to_team.text.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/mailer/proposal_rejected_to_team.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/mailer/proposal_rejected_to_team.text.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/mailer/reset_password.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/mailer/reset_password.html.erb -------------------------------------------------------------------------------- /app/views/mailer/reset_password.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/mailer/reset_password.text.erb -------------------------------------------------------------------------------- /app/views/mailer/team_update_created.md.erb: -------------------------------------------------------------------------------- 1 | <%= @update.body %> 2 | -------------------------------------------------------------------------------- /app/views/mailer/unsubscribed.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/mailer/unsubscribed.html.erb -------------------------------------------------------------------------------- /app/views/mailer/unsubscribed.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/mailer/unsubscribed.text.erb -------------------------------------------------------------------------------- /app/views/mailer/welcome_back.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/mailer/welcome_back.html.erb -------------------------------------------------------------------------------- /app/views/mailer/welcome_back.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/mailer/welcome_back.text.erb -------------------------------------------------------------------------------- /app/views/proposals/partials/base.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/app/views/proposals/partials/base.rabl -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/bin/rake -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/active_record_merge.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/bitcoin_money.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/config/initializers/bitcoin_money.rb -------------------------------------------------------------------------------- /config/initializers/crontab.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/config/initializers/crontab.rb -------------------------------------------------------------------------------- /config/initializers/database_connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/config/initializers/database_connection.rb -------------------------------------------------------------------------------- /config/initializers/debugger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/config/initializers/debugger.rb -------------------------------------------------------------------------------- /config/initializers/delayed_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/config/initializers/delayed_job.rb -------------------------------------------------------------------------------- /config/initializers/delayed_job_fix.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/config/initializers/delayed_job_fix.rb -------------------------------------------------------------------------------- /config/initializers/elasticsearch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/config/initializers/elasticsearch.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/log_level.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/config/initializers/log_level.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/new_relic_unicorn.rb: -------------------------------------------------------------------------------- 1 | NewRelic::Agent.after_fork(:force_reconnect => true) if defined? Unicorn 2 | -------------------------------------------------------------------------------- /config/initializers/nokogiri.rb: -------------------------------------------------------------------------------- 1 | #CVE-2015-3227 2 | ActiveSupport::XmlMini.backend = 'Nokogiri' 3 | -------------------------------------------------------------------------------- /config/initializers/payments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/config/initializers/payments.rb -------------------------------------------------------------------------------- /config/initializers/rabl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/config/initializers/rabl.rb -------------------------------------------------------------------------------- /config/initializers/secure_headers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/config/initializers/secure_headers.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/string_to_bool.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/config/initializers/string_to_bool.rb -------------------------------------------------------------------------------- /config/initializers/stripe.rb: -------------------------------------------------------------------------------- 1 | Stripe.api_key = ENV['STRIPE_API_KEY'] 2 | -------------------------------------------------------------------------------- /config/initializers/timeout.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/config/initializers/timeout.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/jshint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/config/jshint.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/unicorn.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/config/unicorn.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /dump.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/dump.rdb -------------------------------------------------------------------------------- /lib/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/display_money.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/lib/display_money.rb -------------------------------------------------------------------------------- /lib/heroku_timeout.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/lib/heroku_timeout.rb -------------------------------------------------------------------------------- /lib/middleware/force_accept_header.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/lib/middleware/force_accept_header.rb -------------------------------------------------------------------------------- /lib/tasks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/auto_annotate_models.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/lib/tasks/auto_annotate_models.rake -------------------------------------------------------------------------------- /lib/tasks/cache.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/lib/tasks/cache.rake -------------------------------------------------------------------------------- /lib/tasks/delayed_job_multi.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/lib/tasks/delayed_job_multi.rake -------------------------------------------------------------------------------- /lib/tasks/reindex_elasticsearch.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/lib/tasks/reindex_elasticsearch.rake -------------------------------------------------------------------------------- /lib/tasks/replace_avatar.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/lib/tasks/replace_avatar.rake -------------------------------------------------------------------------------- /lib/tasks/replace_old_avatar.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/lib/tasks/replace_old_avatar.rake -------------------------------------------------------------------------------- /log/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/public/500.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | # robotstxt.org 2 | 3 | User-agent: * 4 | -------------------------------------------------------------------------------- /spec/controllers/admin_controller_spec.rb: -------------------------------------------------------------------------------- 1 | require 'spec_helper' 2 | 3 | describe AdminController do 4 | 5 | end 6 | -------------------------------------------------------------------------------- /spec/controllers/api/v1/home_controller_spec.rb: -------------------------------------------------------------------------------- 1 | require 'spec_helper' 2 | 3 | describe Api::V1::HomeController do 4 | 5 | end 6 | -------------------------------------------------------------------------------- /spec/controllers/api/v2/cart_controller_spec.rb: -------------------------------------------------------------------------------- 1 | require 'spec_helper' 2 | 3 | describe Api::V2::CartController do 4 | 5 | end 6 | -------------------------------------------------------------------------------- /spec/controllers/api/v2/trackers_conrtoller_spec.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/factories/accounts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/factories/accounts.rb -------------------------------------------------------------------------------- /spec/factories/activity_logs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/factories/activity_logs.rb -------------------------------------------------------------------------------- /spec/factories/ad_spaces.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/factories/ad_spaces.rb -------------------------------------------------------------------------------- /spec/factories/addresses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/factories/addresses.rb -------------------------------------------------------------------------------- /spec/factories/bounties.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/factories/bounties.rb -------------------------------------------------------------------------------- /spec/factories/bounty_claims.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/factories/bounty_claims.rb -------------------------------------------------------------------------------- /spec/factories/cash_outs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/factories/cash_outs.rb -------------------------------------------------------------------------------- /spec/factories/coinbase_orders.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/factories/coinbase_orders.rb -------------------------------------------------------------------------------- /spec/factories/coinbases.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/factories/coinbases.rb -------------------------------------------------------------------------------- /spec/factories/comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/factories/comments.rb -------------------------------------------------------------------------------- /spec/factories/developer_goals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/factories/developer_goals.rb -------------------------------------------------------------------------------- /spec/factories/factories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/factories/factories.rb -------------------------------------------------------------------------------- /spec/factories/follow_relations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/factories/follow_relations.rb -------------------------------------------------------------------------------- /spec/factories/fundraisers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/factories/fundraisers.rb -------------------------------------------------------------------------------- /spec/factories/github_commits.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/factories/github_commits.rb -------------------------------------------------------------------------------- /spec/factories/issue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/factories/issue.rb -------------------------------------------------------------------------------- /spec/factories/issue_rank.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/factories/issue_rank.rb -------------------------------------------------------------------------------- /spec/factories/issue_rank_caches.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/factories/issue_rank_caches.rb -------------------------------------------------------------------------------- /spec/factories/languages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/factories/languages.rb -------------------------------------------------------------------------------- /spec/factories/linked_accounts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/factories/linked_accounts.rb -------------------------------------------------------------------------------- /spec/factories/lurkers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/factories/lurkers.rb -------------------------------------------------------------------------------- /spec/factories/payment_methods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/factories/payment_methods.rb -------------------------------------------------------------------------------- /spec/factories/payment_notifications.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/factories/payment_notifications.rb -------------------------------------------------------------------------------- /spec/factories/people.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/factories/people.rb -------------------------------------------------------------------------------- /spec/factories/person_relations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/factories/person_relations.rb -------------------------------------------------------------------------------- /spec/factories/pledges.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/factories/pledges.rb -------------------------------------------------------------------------------- /spec/factories/proposals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/factories/proposals.rb -------------------------------------------------------------------------------- /spec/factories/request_for_proposals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/factories/request_for_proposals.rb -------------------------------------------------------------------------------- /spec/factories/rewards.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/factories/rewards.rb -------------------------------------------------------------------------------- /spec/factories/searches.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/factories/searches.rb -------------------------------------------------------------------------------- /spec/factories/shopping_carts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/factories/shopping_carts.rb -------------------------------------------------------------------------------- /spec/factories/solution_events.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/factories/solution_events.rb -------------------------------------------------------------------------------- /spec/factories/solutions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/factories/solutions.rb -------------------------------------------------------------------------------- /spec/factories/support_levels.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/factories/support_levels.rb -------------------------------------------------------------------------------- /spec/factories/tag_relations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/factories/tag_relations.rb -------------------------------------------------------------------------------- /spec/factories/tag_votes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/factories/tag_votes.rb -------------------------------------------------------------------------------- /spec/factories/tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/factories/tags.rb -------------------------------------------------------------------------------- /spec/factories/team_invites.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/factories/team_invites.rb -------------------------------------------------------------------------------- /spec/factories/team_member_relations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/factories/team_member_relations.rb -------------------------------------------------------------------------------- /spec/factories/team_payin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/factories/team_payin.rb -------------------------------------------------------------------------------- /spec/factories/team_tracker_relations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/factories/team_tracker_relations.rb -------------------------------------------------------------------------------- /spec/factories/team_updates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/factories/team_updates.rb -------------------------------------------------------------------------------- /spec/factories/teams.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/factories/teams.rb -------------------------------------------------------------------------------- /spec/factories/tracker_languages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/factories/tracker_languages.rb -------------------------------------------------------------------------------- /spec/factories/tracker_plugins.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/factories/tracker_plugins.rb -------------------------------------------------------------------------------- /spec/factories/tracker_rank_caches.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/factories/tracker_rank_caches.rb -------------------------------------------------------------------------------- /spec/factories/tracker_relations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/factories/tracker_relations.rb -------------------------------------------------------------------------------- /spec/factories/trackers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/factories/trackers.rb -------------------------------------------------------------------------------- /spec/factories/transactions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/factories/transactions.rb -------------------------------------------------------------------------------- /spec/features/issues_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/features/issues_spec.rb -------------------------------------------------------------------------------- /spec/mailers/mailer_scheduler_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/mailers/mailer_scheduler_spec.rb -------------------------------------------------------------------------------- /spec/mailers/mailer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/mailers/mailer_spec.rb -------------------------------------------------------------------------------- /spec/models/account_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/account_spec.rb -------------------------------------------------------------------------------- /spec/models/activity_log_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/activity_log_spec.rb -------------------------------------------------------------------------------- /spec/models/ad_space_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/ad_space_spec.rb -------------------------------------------------------------------------------- /spec/models/badge_cache_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/badge_cache_spec.rb -------------------------------------------------------------------------------- /spec/models/badge_factory_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/badge_factory_spec.rb -------------------------------------------------------------------------------- /spec/models/badge_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/badge_spec.rb -------------------------------------------------------------------------------- /spec/models/bitbucket/issue_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/bitbucket/issue_spec.rb -------------------------------------------------------------------------------- /spec/models/bitbucket/tracker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/bitbucket/tracker_spec.rb -------------------------------------------------------------------------------- /spec/models/bounty_claim_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/bounty_claim_spec.rb -------------------------------------------------------------------------------- /spec/models/bounty_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/bounty_spec.rb -------------------------------------------------------------------------------- /spec/models/bugzilla/issue_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/bugzilla/issue_spec.rb -------------------------------------------------------------------------------- /spec/models/bugzilla/tracker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/bugzilla/tracker_spec.rb -------------------------------------------------------------------------------- /spec/models/cash_out/mastercoin_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/cash_out/mastercoin_spec.rb -------------------------------------------------------------------------------- /spec/models/cash_out/ripple_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/cash_out/ripple_spec.rb -------------------------------------------------------------------------------- /spec/models/cash_out_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/cash_out_spec.rb -------------------------------------------------------------------------------- /spec/models/currency_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/currency_spec.rb -------------------------------------------------------------------------------- /spec/models/developer_goal_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/developer_goal_spec.rb -------------------------------------------------------------------------------- /spec/models/follow_relation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/follow_relation_spec.rb -------------------------------------------------------------------------------- /spec/models/fundraiser_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/fundraiser_spec.rb -------------------------------------------------------------------------------- /spec/models/github/event_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/github/event_spec.rb -------------------------------------------------------------------------------- /spec/models/github/issue_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/github/issue_spec.rb -------------------------------------------------------------------------------- /spec/models/github/repository_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/github/repository_spec.rb -------------------------------------------------------------------------------- /spec/models/github_stargazer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/github_stargazer_spec.rb -------------------------------------------------------------------------------- /spec/models/gitlab/issue_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/gitlab/issue_spec.rb -------------------------------------------------------------------------------- /spec/models/gitlab/tracker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/gitlab/tracker_spec.rb -------------------------------------------------------------------------------- /spec/models/google_code/issue_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/google_code/issue_spec.rb -------------------------------------------------------------------------------- /spec/models/google_code/tracker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/google_code/tracker_spec.rb -------------------------------------------------------------------------------- /spec/models/issue_rank_cache_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/issue_rank_cache_spec.rb -------------------------------------------------------------------------------- /spec/models/issue_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/issue_spec.rb -------------------------------------------------------------------------------- /spec/models/issue_suggestion_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/issue_suggestion_spec.rb -------------------------------------------------------------------------------- /spec/models/jira/issue_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/jira/issue_spec.rb -------------------------------------------------------------------------------- /spec/models/jira/tracker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/jira/tracker_spec.rb -------------------------------------------------------------------------------- /spec/models/launchpad/issue_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/launchpad/issue_spec.rb -------------------------------------------------------------------------------- /spec/models/launchpad/tracker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/launchpad/tracker_spec.rb -------------------------------------------------------------------------------- /spec/models/merged_model_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/merged_model_spec.rb -------------------------------------------------------------------------------- /spec/models/pact.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/models/payment_helpers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/payment_helpers_spec.rb -------------------------------------------------------------------------------- /spec/models/payment_method_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/payment_method_spec.rb -------------------------------------------------------------------------------- /spec/models/person_relation/person_relation_spec.rb: -------------------------------------------------------------------------------- 1 | require 'spec_helper' 2 | 3 | describe PersonRelation::Base do 4 | end 5 | -------------------------------------------------------------------------------- /spec/models/person_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/person_spec.rb -------------------------------------------------------------------------------- /spec/models/pivotal/issue_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/pivotal/issue_spec.rb -------------------------------------------------------------------------------- /spec/models/pivotal/tracker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/pivotal/tracker_spec.rb -------------------------------------------------------------------------------- /spec/models/pledge_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/pledge_spec.rb -------------------------------------------------------------------------------- /spec/models/proposal_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/proposal_spec.rb -------------------------------------------------------------------------------- /spec/models/request_for_proposal_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/request_for_proposal_spec.rb -------------------------------------------------------------------------------- /spec/models/shopping_cart_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/shopping_cart_spec.rb -------------------------------------------------------------------------------- /spec/models/solution_event_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/solution_event_spec.rb -------------------------------------------------------------------------------- /spec/models/solution_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/solution_spec.rb -------------------------------------------------------------------------------- /spec/models/source_forge/issue_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/source_forge/issue_spec.rb -------------------------------------------------------------------------------- /spec/models/source_forge/tracker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/source_forge/tracker_spec.rb -------------------------------------------------------------------------------- /spec/models/split_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/split_spec.rb -------------------------------------------------------------------------------- /spec/models/support_level_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/support_level_spec.rb -------------------------------------------------------------------------------- /spec/models/support_offering_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/support_offering_spec.rb -------------------------------------------------------------------------------- /spec/models/tag_relation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/tag_relation_spec.rb -------------------------------------------------------------------------------- /spec/models/tag_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/tag_spec.rb -------------------------------------------------------------------------------- /spec/models/tag_vote_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/tag_vote_spec.rb -------------------------------------------------------------------------------- /spec/models/team_bounty_hunter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/team_bounty_hunter_spec.rb -------------------------------------------------------------------------------- /spec/models/team_claim_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/team_claim_spec.rb -------------------------------------------------------------------------------- /spec/models/team_invite_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/team_invite_spec.rb -------------------------------------------------------------------------------- /spec/models/team_member_relation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/team_member_relation_spec.rb -------------------------------------------------------------------------------- /spec/models/team_payin_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/team_payin_spec.rb -------------------------------------------------------------------------------- /spec/models/team_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/team_spec.rb -------------------------------------------------------------------------------- /spec/models/team_update_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/team_update_spec.rb -------------------------------------------------------------------------------- /spec/models/thumb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/thumb_spec.rb -------------------------------------------------------------------------------- /spec/models/trac/issue_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/trac/issue_spec.rb -------------------------------------------------------------------------------- /spec/models/trac/tracker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/trac/tracker_spec.rb -------------------------------------------------------------------------------- /spec/models/tracker_plugin/gh_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/tracker_plugin/gh_spec.rb -------------------------------------------------------------------------------- /spec/models/tracker_plugin_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/tracker_plugin_spec.rb -------------------------------------------------------------------------------- /spec/models/tracker_rank_cache_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/tracker_rank_cache_spec.rb -------------------------------------------------------------------------------- /spec/models/tracker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/tracker_spec.rb -------------------------------------------------------------------------------- /spec/models/transaction/order_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/transaction/order_spec.rb -------------------------------------------------------------------------------- /spec/models/transaction_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/transaction_spec.rb -------------------------------------------------------------------------------- /spec/models/unsubscribe_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/models/unsubscribe_spec.rb -------------------------------------------------------------------------------- /spec/queries/people_query_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/queries/people_query_spec.rb -------------------------------------------------------------------------------- /spec/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/rails_helper.rb -------------------------------------------------------------------------------- /spec/requests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/routing/badges_route_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/routing/badges_route_spec.rb -------------------------------------------------------------------------------- /spec/routing/coinbase_routes_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/routing/coinbase_routes_spec.rb -------------------------------------------------------------------------------- /spec/routing/paypal_routes_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/routing/paypal_routes_spec.rb -------------------------------------------------------------------------------- /spec/routing/teams_routes_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/routing/teams_routes_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/capybara.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/support/capybara.rb -------------------------------------------------------------------------------- /spec/support/database_cleaner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/support/database_cleaner.rb -------------------------------------------------------------------------------- /spec/support/default_vendor_params.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/support/default_vendor_params.rb -------------------------------------------------------------------------------- /spec/support/features/session_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/support/features/session_helpers.rb -------------------------------------------------------------------------------- /spec/support/mock_github_api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/support/mock_github_api.rb -------------------------------------------------------------------------------- /spec/support/payment_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/support/payment_helpers.rb -------------------------------------------------------------------------------- /spec/support/request_tracking.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/support/request_tracking.rb -------------------------------------------------------------------------------- /spec/support/response_status_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/support/response_status_helper.rb -------------------------------------------------------------------------------- /spec/support/vcr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/support/vcr.rb -------------------------------------------------------------------------------- /spec/trackers/all_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/spec/trackers/all_spec.rb -------------------------------------------------------------------------------- /tasks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/tasks.yml -------------------------------------------------------------------------------- /test/fixtures/pact_applications.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/test/fixtures/pact_applications.yml -------------------------------------------------------------------------------- /test/fixtures/pacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/test/fixtures/pacts.yml -------------------------------------------------------------------------------- /test/models/pact_application_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/test/models/pact_application_test.rb -------------------------------------------------------------------------------- /test/models/pact_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bountysource/core/HEAD/test/models/pact_test.rb --------------------------------------------------------------------------------