├── app ├── Listeners │ ├── .gitkeep │ ├── NotifyUserOfRelease.php │ └── DeleteRelease.php ├── Events │ ├── Event.php │ ├── ReleaseWasDeleted.php │ ├── RepositoryWasReleased.php │ ├── ReleaseWasDownloaded.php │ ├── ReleaseWasExtracted.php │ ├── ReleaseWasUploaded.php │ └── ReleaseCommandsWereExecuted.php ├── Http │ ├── Requests │ │ └── Request.php │ ├── Middleware │ │ ├── EncryptCookies.php │ │ ├── VerifyCsrfToken.php │ │ ├── RedirectIfAuthenticated.php │ │ └── Authenticate.php │ ├── Controllers │ │ ├── FrontController.php │ │ ├── Back │ │ │ └── HomeController.php │ │ └── Controller.php │ └── Kernel.php ├── Providers │ ├── AppServiceProvider.php │ ├── RouteServiceProvider.php │ └── EventServiceProvider.php ├── Jobs │ └── Job.php ├── Console │ ├── Commands │ │ └── Inspire.php │ └── Kernel.php ├── Exceptions │ └── Handler.php └── Services │ └── GitHub │ └── Releases.php ├── database ├── seeds │ ├── .gitkeep │ └── DatabaseSeeder.php ├── migrations │ ├── .gitkeep │ ├── 2015_07_21_083916_create_organisations_table.php │ ├── 2015_06_19_151537_create_failed_jobs_table.php │ ├── 2014_10_12_000000_create_users_table.php │ └── 2015_07_21_084100_create_organisation_members_table.php ├── .gitignore └── factories │ └── ModelFactory.php ├── src ├── static │ ├── fonts │ │ ├── .gitkeep │ │ ├── icomoon.eot │ │ ├── icomoon.ttf │ │ └── icomoon.woff │ ├── images │ │ └── .gitkeep │ ├── scripts │ │ └── .gitkeep │ └── styles │ │ └── .gitkeep ├── styles │ ├── pages │ │ └── _home.scss │ ├── base │ │ ├── _lists.scss │ │ ├── _icons.scss │ │ ├── _reset.scss │ │ ├── _blockquotes.scss │ │ ├── _links.scss │ │ ├── _shared.scss │ │ ├── _images.scss │ │ ├── _type.scss │ │ └── _base.scss │ ├── components │ │ ├── _list-bare.scss │ │ ├── _list-inline.scss │ │ ├── _flash-message.scss │ │ ├── _release-group.scss │ │ ├── _forms.scss │ │ └── _tables.scss │ ├── utils │ │ ├── functions │ │ │ ├── _strip-units.scss │ │ │ ├── _maths.scss │ │ │ ├── _palette.scss │ │ │ └── _spacing.scss │ │ ├── helpers │ │ │ ├── _layout.scss │ │ │ ├── _colors.scss │ │ │ ├── _display.scss │ │ │ ├── _type.scss │ │ │ └── _grid-classes.scss │ │ ├── mixins │ │ │ ├── _omega-reset.scss │ │ │ ├── _gutter-width.scss │ │ │ ├── _grid-width.scss │ │ │ ├── _on-event.scss │ │ │ ├── _headings.scss │ │ │ └── _rem-calc.scss │ │ └── variables │ │ │ ├── _breakpoints.scss │ │ │ ├── _grid-settings.scss │ │ │ └── _colors.scss │ ├── layout │ │ ├── _section.scss │ │ ├── _page-hero.scss │ │ ├── _page-foot.scss │ │ ├── _page-nav.scss │ │ └── _page-head.scss │ └── vendor │ │ └── _icomoon.scss ├── favicons │ └── favicon.png └── scripts │ └── app │ ├── modules │ ├── attribution.js │ ├── enhancements.js │ └── enhancements │ │ └── dismissable.js │ └── app.js ├── .paddle.sh ├── resources ├── views │ ├── vendor │ │ └── .gitkeep │ ├── emails │ │ └── notice │ │ │ ├── failure │ │ │ ├── text.blade.php │ │ │ └── html.blade.php │ │ │ └── success │ │ │ ├── text.blade.php │ │ │ └── html.blade.php │ ├── errors │ │ └── 503.blade.php │ ├── oauth │ │ └── get.blade.php │ ├── back │ │ └── organisation │ │ │ └── get.blade.php │ ├── _partials │ │ ├── footer.blade.php │ │ └── repository │ │ │ └── list.blade.php │ └── _layouts │ │ ├── front.blade.php │ │ └── back.blade.php ├── assets │ └── less │ │ └── app.less └── lang │ └── en │ ├── pagination.php │ └── passwords.php ├── storage ├── app │ └── .gitignore ├── logs │ └── .gitignore ├── framework │ ├── cache │ │ └── .gitignore │ ├── views │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ └── .gitignore └── releases │ └── .gitignore ├── bootstrap ├── cache │ └── .gitignore └── autoload.php ├── bower_components ├── jquery │ ├── src │ │ ├── outro.js │ │ ├── selector.js │ │ ├── var │ │ │ ├── arr.js │ │ │ ├── rnotwhite.js │ │ │ ├── strundefined.js │ │ │ ├── push.js │ │ │ ├── slice.js │ │ │ ├── class2type.js │ │ │ ├── concat.js │ │ │ ├── indexOf.js │ │ │ ├── pnum.js │ │ │ ├── hasOwn.js │ │ │ ├── toString.js │ │ │ └── support.js │ │ ├── ajax │ │ │ ├── var │ │ │ │ ├── rquery.js │ │ │ │ └── nonce.js │ │ │ ├── parseJSON.js │ │ │ ├── parseXML.js │ │ │ └── script.js │ │ ├── css │ │ │ ├── var │ │ │ │ ├── rmargin.js │ │ │ │ ├── cssExpand.js │ │ │ │ ├── rnumnonpx.js │ │ │ │ ├── isHidden.js │ │ │ │ └── getStyles.js │ │ │ ├── hiddenVisibleSelectors.js │ │ │ ├── addGetHookIf.js │ │ │ └── swap.js │ │ ├── manipulation │ │ │ ├── var │ │ │ │ └── rcheckableType.js │ │ │ ├── _evalUrl.js │ │ │ └── support.js │ │ ├── data │ │ │ ├── var │ │ │ │ ├── data_priv.js │ │ │ │ └── data_user.js │ │ │ └── accepts.js │ │ ├── core │ │ │ ├── var │ │ │ │ └── rsingleTag.js │ │ │ ├── parseHTML.js │ │ │ └── access.js │ │ ├── traversing │ │ │ └── var │ │ │ │ └── rneedsContext.js │ │ ├── event │ │ │ ├── support.js │ │ │ ├── ajax.js │ │ │ └── alias.js │ │ ├── attributes.js │ │ ├── deprecated.js │ │ ├── effects │ │ │ └── animatedSelector.js │ │ ├── selector-sizzle.js │ │ ├── queue │ │ │ └── delay.js │ │ ├── jquery.js │ │ ├── exports │ │ │ ├── global.js │ │ │ └── amd.js │ │ ├── attributes │ │ │ └── support.js │ │ └── intro.js │ ├── bower.json │ ├── .bower.json │ └── MIT-LICENSE.txt ├── bourbon │ ├── app │ │ └── assets │ │ │ └── stylesheets │ │ │ ├── settings │ │ │ ├── _px-to-em.scss │ │ │ ├── _asset-pipeline.scss │ │ │ └── _prefixer.scss │ │ │ ├── css3 │ │ │ ├── _appearance.scss │ │ │ ├── _user-select.scss │ │ │ ├── _calc.scss │ │ │ ├── _backface-visibility.scss │ │ │ ├── _hyphens.scss │ │ │ ├── _filter.scss │ │ │ ├── _font-feature-settings.scss │ │ │ ├── _placeholder.scss │ │ │ ├── _perspective.scss │ │ │ ├── _image-rendering.scss │ │ │ ├── _hidpi-media-query.scss │ │ │ ├── _transform.scss │ │ │ ├── _font-face.scss │ │ │ ├── _text-decoration.scss │ │ │ ├── _selection.scss │ │ │ ├── _keyframes.scss │ │ │ ├── _columns.scss │ │ │ ├── _linear-gradient.scss │ │ │ ├── _background-image.scss │ │ │ └── _radial-gradient.scss │ │ │ ├── functions │ │ │ ├── _is-number.scss │ │ │ ├── _assign-inputs.scss │ │ │ ├── _is-size.scss │ │ │ ├── _is-length.scss │ │ │ ├── _contains-falsy.scss │ │ │ ├── _px-to-rem.scss │ │ │ ├── _strip-units.scss │ │ │ ├── _px-to-em.scss │ │ │ ├── _tint.scss │ │ │ ├── _shade.scss │ │ │ ├── _contains.scss │ │ │ ├── _is-light.scss │ │ │ ├── _transition-property-name.scss │ │ │ └── _unpack.scss │ │ │ ├── helpers │ │ │ ├── _shape-size-stripper.scss │ │ │ ├── _gradient-positions-parser.scss │ │ │ ├── _radial-positions-parser.scss │ │ │ ├── _linear-angle-parser.scss │ │ │ ├── _convert-units.scss │ │ │ ├── _render-gradients.scss │ │ │ ├── _linear-side-corner-parser.scss │ │ │ ├── _font-source-declaration.scss │ │ │ ├── _linear-gradient-parser.scss │ │ │ ├── _str-to-num.scss │ │ │ └── _radial-gradient-parser.scss │ │ │ └── addons │ │ │ ├── _clearfix.scss │ │ │ ├── _margin.scss │ │ │ ├── _border-width.scss │ │ │ ├── _padding.scss │ │ │ ├── _border-style.scss │ │ │ ├── _word-wrap.scss │ │ │ ├── _font-stacks.scss │ │ │ ├── _border-color.scss │ │ │ ├── _ellipsis.scss │ │ │ ├── _hide-text.scss │ │ │ ├── _retina-image.scss │ │ │ ├── _border-radius.scss │ │ │ ├── _size.scss │ │ │ └── _position.scss │ ├── bower.json │ ├── .bower.json │ └── LICENSE.md └── neat │ ├── app │ └── assets │ │ └── stylesheets │ │ ├── _neat-helpers.scss │ │ ├── grid │ │ ├── _box-sizing.scss │ │ ├── _fill-parent.scss │ │ ├── _pad.scss │ │ ├── _display-context.scss │ │ ├── _direction-context.scss │ │ ├── _outer-container.scss │ │ ├── _visual-grid.scss │ │ └── _private.scss │ │ ├── settings │ │ ├── _disable-warnings.scss │ │ └── _visual-grid.scss │ │ └── _neat.scss │ ├── package.json │ ├── bower.json │ ├── LICENSE.md │ └── .bower.json ├── .gitignore ├── public ├── robots.txt ├── assets │ ├── images │ │ ├── logo.png │ │ └── logo-secondary.png │ ├── fonts │ │ ├── icomoon.eot │ │ ├── icomoon.ttf │ │ └── icomoon.woff │ └── favicons │ │ ├── favicon.ico │ │ ├── mstile-70x70.png │ │ ├── open-graph.png │ │ ├── coast-228x228.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon-96x96.png │ │ ├── mstile-144x144.png │ │ ├── mstile-150x150.png │ │ ├── mstile-310x150.png │ │ ├── mstile-310x310.png │ │ ├── apple-touch-icon.png │ │ ├── favicon-230x230.png │ │ ├── firefox_app_60x60.png │ │ ├── firefox_app_128x128.png │ │ ├── firefox_app_512x512.png │ │ ├── android-chrome-144x144.png │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-36x36.png │ │ ├── android-chrome-48x48.png │ │ ├── android-chrome-72x72.png │ │ ├── android-chrome-96x96.png │ │ ├── apple-touch-icon-57x57.png │ │ ├── apple-touch-icon-60x60.png │ │ ├── apple-touch-icon-72x72.png │ │ ├── apple-touch-icon-76x76.png │ │ ├── yandex-browser-50x50.png │ │ ├── apple-touch-icon-114x114.png │ │ ├── apple-touch-icon-120x120.png │ │ ├── apple-touch-icon-144x144.png │ │ ├── apple-touch-icon-152x152.png │ │ ├── apple-touch-icon-180x180.png │ │ ├── apple-touch-icon-precomposed.png │ │ ├── yandex-browser-manifest.json │ │ ├── manifest.webapp │ │ ├── browserconfig.xml │ │ └── manifest.json └── .htaccess ├── .gitattributes ├── phpspec.yml ├── config ├── bugsnag.php ├── services.php ├── compile.php ├── view.php └── broadcasting.php ├── gulp ├── tasks │ ├── clean.js │ ├── bower.js │ ├── sassdoc.js │ ├── docs.js │ ├── js-unit.js │ ├── serve.js │ ├── svg2png.js │ ├── browser-sync.js │ ├── favicons.js │ ├── static.js │ ├── watch.js │ ├── styles.js │ └── images.js └── boot.js ├── .editorconfig ├── deploy.json ├── .env.example ├── tests ├── ExampleTest.php └── TestCase.php ├── gulpfile.js ├── bower.json ├── server.php └── phpunit.xml /app/Listeners/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/seeds/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/static/fonts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/static/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/static/scripts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/static/styles/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/styles/pages/_home.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.paddle.sh: -------------------------------------------------------------------------------- 1 | composer install 2 | -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /resources/views/vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/assets/less/app.less: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /bower_components/jquery/src/outro.js: -------------------------------------------------------------------------------- 1 | })); 2 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /node_modules 3 | .env 4 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /storage/releases/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /bower_components/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define([ "./selector-sizzle" ]); 2 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | *.css linguist-vendored 3 | *.less linguist-vendored 4 | -------------------------------------------------------------------------------- /bower_components/jquery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return []; 3 | }); 4 | -------------------------------------------------------------------------------- /resources/views/emails/notice/failure/text.blade.php: -------------------------------------------------------------------------------- 1 | Failure 2 | 3 | {!! $output !!} 4 | -------------------------------------------------------------------------------- /resources/views/emails/notice/success/text.blade.php: -------------------------------------------------------------------------------- 1 | Success 2 | 3 | {!! $output !!} 4 | -------------------------------------------------------------------------------- /bower_components/jquery/src/ajax/var/rquery.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/\?/); 3 | }); 4 | -------------------------------------------------------------------------------- /bower_components/jquery/src/var/rnotwhite.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/\S+/g); 3 | }); 4 | -------------------------------------------------------------------------------- /src/favicons/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbite/paddle/HEAD/src/favicons/favicon.png -------------------------------------------------------------------------------- /bower_components/bourbon/app/assets/stylesheets/settings/_px-to-em.scss: -------------------------------------------------------------------------------- 1 | $em-base: 16px !default; 2 | -------------------------------------------------------------------------------- /bower_components/jquery/src/css/var/rmargin.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/^margin/); 3 | }); 4 | -------------------------------------------------------------------------------- /public/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbite/paddle/HEAD/public/assets/images/logo.png -------------------------------------------------------------------------------- /resources/views/errors/503.blade.php: -------------------------------------------------------------------------------- 1 | @extends('_layouts.front') 2 | 3 | @section('body') 4 | 5 | @stop 6 | -------------------------------------------------------------------------------- /src/static/fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbite/paddle/HEAD/src/static/fonts/icomoon.eot -------------------------------------------------------------------------------- /src/static/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbite/paddle/HEAD/src/static/fonts/icomoon.ttf -------------------------------------------------------------------------------- /src/static/fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbite/paddle/HEAD/src/static/fonts/icomoon.woff -------------------------------------------------------------------------------- /bower_components/jquery/src/var/strundefined.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return typeof undefined; 3 | }); 4 | -------------------------------------------------------------------------------- /public/assets/fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbite/paddle/HEAD/public/assets/fonts/icomoon.eot -------------------------------------------------------------------------------- /public/assets/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbite/paddle/HEAD/public/assets/fonts/icomoon.ttf -------------------------------------------------------------------------------- /app/Events/Event.php: -------------------------------------------------------------------------------- 1 | Failure 2 |
{!! $output !!}
3 |
--------------------------------------------------------------------------------
/resources/views/emails/notice/success/html.blade.php:
--------------------------------------------------------------------------------
1 | {!! $output !!}
3 |
--------------------------------------------------------------------------------
/bower_components/jquery/src/var/push.js:
--------------------------------------------------------------------------------
1 | define([
2 | "./arr"
3 | ], function( arr ) {
4 | return arr.push;
5 | });
6 |
--------------------------------------------------------------------------------
/bower_components/jquery/src/var/slice.js:
--------------------------------------------------------------------------------
1 | define([
2 | "./arr"
3 | ], function( arr ) {
4 | return arr.slice;
5 | });
6 |
--------------------------------------------------------------------------------
/bower_components/jquery/src/var/class2type.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | // [[Class]] -> type pairs
3 | return {};
4 | });
5 |
--------------------------------------------------------------------------------
/bower_components/jquery/src/var/concat.js:
--------------------------------------------------------------------------------
1 | define([
2 | "./arr"
3 | ], function( arr ) {
4 | return arr.concat;
5 | });
6 |
--------------------------------------------------------------------------------
/bower_components/jquery/src/var/indexOf.js:
--------------------------------------------------------------------------------
1 | define([
2 | "./arr"
3 | ], function( arr ) {
4 | return arr.indexOf;
5 | });
6 |
--------------------------------------------------------------------------------
/public/assets/favicons/mstile-70x70.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigbite/paddle/HEAD/public/assets/favicons/mstile-70x70.png
--------------------------------------------------------------------------------
/public/assets/favicons/open-graph.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigbite/paddle/HEAD/public/assets/favicons/open-graph.png
--------------------------------------------------------------------------------
/public/assets/images/logo-secondary.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigbite/paddle/HEAD/public/assets/images/logo-secondary.png
--------------------------------------------------------------------------------
/bower_components/jquery/src/css/var/cssExpand.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | return [ "Top", "Right", "Bottom", "Left" ];
3 | });
4 |
--------------------------------------------------------------------------------
/bower_components/jquery/src/manipulation/var/rcheckableType.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | return (/^(?:checkbox|radio)$/i);
3 | });
4 |
--------------------------------------------------------------------------------
/bower_components/jquery/src/var/pnum.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | return (/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/).source;
3 | });
4 |
--------------------------------------------------------------------------------
/public/assets/favicons/coast-228x228.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigbite/paddle/HEAD/public/assets/favicons/coast-228x228.png
--------------------------------------------------------------------------------
/public/assets/favicons/favicon-16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigbite/paddle/HEAD/public/assets/favicons/favicon-16x16.png
--------------------------------------------------------------------------------
/public/assets/favicons/favicon-32x32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigbite/paddle/HEAD/public/assets/favicons/favicon-32x32.png
--------------------------------------------------------------------------------
/public/assets/favicons/favicon-96x96.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigbite/paddle/HEAD/public/assets/favicons/favicon-96x96.png
--------------------------------------------------------------------------------
/public/assets/favicons/mstile-144x144.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigbite/paddle/HEAD/public/assets/favicons/mstile-144x144.png
--------------------------------------------------------------------------------
/public/assets/favicons/mstile-150x150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigbite/paddle/HEAD/public/assets/favicons/mstile-150x150.png
--------------------------------------------------------------------------------
/public/assets/favicons/mstile-310x150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigbite/paddle/HEAD/public/assets/favicons/mstile-310x150.png
--------------------------------------------------------------------------------
/public/assets/favicons/mstile-310x310.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigbite/paddle/HEAD/public/assets/favicons/mstile-310x310.png
--------------------------------------------------------------------------------
/bower_components/jquery/src/ajax/var/nonce.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../../core"
3 | ], function( jQuery ) {
4 | return jQuery.now();
5 | });
6 |
--------------------------------------------------------------------------------
/bower_components/jquery/src/data/var/data_priv.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../Data"
3 | ], function( Data ) {
4 | return new Data();
5 | });
6 |
--------------------------------------------------------------------------------
/bower_components/jquery/src/data/var/data_user.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../Data"
3 | ], function( Data ) {
4 | return new Data();
5 | });
6 |
--------------------------------------------------------------------------------
/public/assets/favicons/apple-touch-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigbite/paddle/HEAD/public/assets/favicons/apple-touch-icon.png
--------------------------------------------------------------------------------
/public/assets/favicons/favicon-230x230.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigbite/paddle/HEAD/public/assets/favicons/favicon-230x230.png
--------------------------------------------------------------------------------
/public/assets/favicons/firefox_app_60x60.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigbite/paddle/HEAD/public/assets/favicons/firefox_app_60x60.png
--------------------------------------------------------------------------------
/public/assets/favicons/firefox_app_128x128.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigbite/paddle/HEAD/public/assets/favicons/firefox_app_128x128.png
--------------------------------------------------------------------------------
/public/assets/favicons/firefox_app_512x512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigbite/paddle/HEAD/public/assets/favicons/firefox_app_512x512.png
--------------------------------------------------------------------------------
/public/assets/favicons/android-chrome-144x144.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigbite/paddle/HEAD/public/assets/favicons/android-chrome-144x144.png
--------------------------------------------------------------------------------
/public/assets/favicons/android-chrome-192x192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigbite/paddle/HEAD/public/assets/favicons/android-chrome-192x192.png
--------------------------------------------------------------------------------
/public/assets/favicons/android-chrome-36x36.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigbite/paddle/HEAD/public/assets/favicons/android-chrome-36x36.png
--------------------------------------------------------------------------------
/public/assets/favicons/android-chrome-48x48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigbite/paddle/HEAD/public/assets/favicons/android-chrome-48x48.png
--------------------------------------------------------------------------------
/public/assets/favicons/android-chrome-72x72.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigbite/paddle/HEAD/public/assets/favicons/android-chrome-72x72.png
--------------------------------------------------------------------------------
/public/assets/favicons/android-chrome-96x96.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigbite/paddle/HEAD/public/assets/favicons/android-chrome-96x96.png
--------------------------------------------------------------------------------
/public/assets/favicons/apple-touch-icon-57x57.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigbite/paddle/HEAD/public/assets/favicons/apple-touch-icon-57x57.png
--------------------------------------------------------------------------------
/public/assets/favicons/apple-touch-icon-60x60.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigbite/paddle/HEAD/public/assets/favicons/apple-touch-icon-60x60.png
--------------------------------------------------------------------------------
/public/assets/favicons/apple-touch-icon-72x72.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigbite/paddle/HEAD/public/assets/favicons/apple-touch-icon-72x72.png
--------------------------------------------------------------------------------
/public/assets/favicons/apple-touch-icon-76x76.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigbite/paddle/HEAD/public/assets/favicons/apple-touch-icon-76x76.png
--------------------------------------------------------------------------------
/public/assets/favicons/yandex-browser-50x50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigbite/paddle/HEAD/public/assets/favicons/yandex-browser-50x50.png
--------------------------------------------------------------------------------
/storage/framework/.gitignore:
--------------------------------------------------------------------------------
1 | config.php
2 | routes.php
3 | compiled.php
4 | services.json
5 | events.scanned.php
6 | routes.scanned.php
7 | down
8 |
--------------------------------------------------------------------------------
/bower_components/jquery/src/var/hasOwn.js:
--------------------------------------------------------------------------------
1 | define([
2 | "./class2type"
3 | ], function( class2type ) {
4 | return class2type.hasOwnProperty;
5 | });
6 |
--------------------------------------------------------------------------------
/bower_components/jquery/src/var/toString.js:
--------------------------------------------------------------------------------
1 | define([
2 | "./class2type"
3 | ], function( class2type ) {
4 | return class2type.toString;
5 | });
6 |
--------------------------------------------------------------------------------
/public/assets/favicons/apple-touch-icon-114x114.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigbite/paddle/HEAD/public/assets/favicons/apple-touch-icon-114x114.png
--------------------------------------------------------------------------------
/public/assets/favicons/apple-touch-icon-120x120.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigbite/paddle/HEAD/public/assets/favicons/apple-touch-icon-120x120.png
--------------------------------------------------------------------------------
/public/assets/favicons/apple-touch-icon-144x144.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigbite/paddle/HEAD/public/assets/favicons/apple-touch-icon-144x144.png
--------------------------------------------------------------------------------
/public/assets/favicons/apple-touch-icon-152x152.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigbite/paddle/HEAD/public/assets/favicons/apple-touch-icon-152x152.png
--------------------------------------------------------------------------------
/public/assets/favicons/apple-touch-icon-180x180.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigbite/paddle/HEAD/public/assets/favicons/apple-touch-icon-180x180.png
--------------------------------------------------------------------------------
/bower_components/jquery/src/core/var/rsingleTag.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | // Match a standalone tag
3 | return (/^<(\w+)\s*\/?>(?:<\/\1>|)$/);
4 | });
5 |
--------------------------------------------------------------------------------
/bower_components/jquery/src/var/support.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | // All support tests are defined in their respective modules.
3 | return {};
4 | });
5 |
--------------------------------------------------------------------------------
/config/bugsnag.php:
--------------------------------------------------------------------------------
1 | env('BUGSNAG_API_KEY'),
5 | 'notify_release_stages' => ['production', 'staging'],
6 | ];
7 |
--------------------------------------------------------------------------------
/public/assets/favicons/apple-touch-icon-precomposed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigbite/paddle/HEAD/public/assets/favicons/apple-touch-icon-precomposed.png
--------------------------------------------------------------------------------
/bower_components/bourbon/app/assets/stylesheets/css3/_appearance.scss:
--------------------------------------------------------------------------------
1 | @mixin appearance($value) {
2 | @include prefixer(appearance, $value, webkit moz ms o spec);
3 | }
4 |
--------------------------------------------------------------------------------
/bower_components/bourbon/app/assets/stylesheets/css3/_user-select.scss:
--------------------------------------------------------------------------------
1 | @mixin user-select($value: none) {
2 | @include prefixer(user-select, $value, webkit moz ms spec);
3 | }
4 |
--------------------------------------------------------------------------------
/bower_components/jquery/src/css/var/rnumnonpx.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../../var/pnum"
3 | ], function( pnum ) {
4 | return new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" );
5 | });
6 |
--------------------------------------------------------------------------------
/bower_components/bourbon/app/assets/stylesheets/css3/_calc.scss:
--------------------------------------------------------------------------------
1 | @mixin calc($property, $value) {
2 | #{$property}: -webkit-calc(#{$value});
3 | #{$property}: calc(#{$value});
4 | }
5 |
--------------------------------------------------------------------------------
/src/styles/base/_lists.scss:
--------------------------------------------------------------------------------
1 | /**
2 | * Remove extra vertical spacing when nesting lists.
3 | */
4 | li {
5 | > ul,
6 | > ol {
7 | margin-bottom: 0;
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/bower_components/jquery/src/traversing/var/rneedsContext.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../../core",
3 | "../../selector"
4 | ], function( jQuery ) {
5 | return jQuery.expr.match.needsContext;
6 | });
7 |
--------------------------------------------------------------------------------
/src/scripts/app/modules/attribution.js:
--------------------------------------------------------------------------------
1 | var attribution = function () {
2 | console.log('Website by Big Bite Creative | Repository | 4 |Deploy | 5 | 6 | 7 | @foreach ($repositories as $repository) 8 |
|---|---|
| {{ $repository->display_name }} | 10 |@if ($repository->rigged) @endif | 11 |
| 17 | Can't see a repo? 18 | Resync 19 | | 20 ||