diff --git a/app/assets/images/readme.txt b/app/assets/images/readme.txt deleted file mode 100644 index 488a6a2079..0000000000 --- a/app/assets/images/readme.txt +++ /dev/null @@ -1 +0,0 @@ -If you place an image here called foobar.png then you can access that image by going to http:///assets/foobar.png \ No newline at end of file diff --git a/app/config/app.php b/app/config/app.php index a9e48e8259..098631cf02 100644 --- a/app/config/app.php +++ b/app/config/app.php @@ -42,7 +42,6 @@ return [ 'Firefly\Storage\StorageServiceProvider', 'Firefly\Helper\HelperServiceProvider', 'Firefly\Validation\ValidationServiceProvider', - 'Codesleeve\AssetPipeline\AssetPipelineServiceProvider', ], 'manifest' => storage_path() . '/meta', 'aliases' => [ diff --git a/app/config/packages/codesleeve/asset-pipeline/config.php b/app/config/packages/codesleeve/asset-pipeline/config.php deleted file mode 100644 index a23f1faae5..0000000000 --- a/app/config/packages/codesleeve/asset-pipeline/config.php +++ /dev/null @@ -1,331 +0,0 @@ - array( - 'prefix' => '/assets' - ), - - /* - |-------------------------------------------------------------------------- - | paths - |-------------------------------------------------------------------------- - | - | These are the directories we search for files in. - | - | NOTE that the '.' in require_tree . is relative to where the manifest file - | (i.e. app/assets/javascripts/application.js) is located - | - */ - 'paths' => array( - 'app/assets/javascripts', - 'app/assets/stylesheets', - 'app/assets/images', - 'lib/assets/javascripts', - 'lib/assets/stylesheets', - 'lib/assets/images', - 'provider/assets/javascripts', - 'provider/assets/stylesheets', - 'provider/assets/images' - ), - - /* - |-------------------------------------------------------------------------- - | mimes - |-------------------------------------------------------------------------- - | - | In order to know which mime type to send back to the server - | we need to know if it is a javascript or stylesheet type. If - | the extension is not found below then we just return a regular - | download. - | - */ - 'mimes' => array( - 'javascripts' => array('.js', '.js.coffee', '.coffee', '.html', '.min.js'), - 'stylesheets' => array('.css', '.css.less', '.css.sass', '.css.scss', '.less', '.sass', '.scss', '.min.css'), - ), - - /* - |-------------------------------------------------------------------------- - | filters - |-------------------------------------------------------------------------- - | - | In order for a file to be included with sprockets, it needs to be listed - | here and we can also do any preprocessing on files with the extension if - | we choose to. - | - */ - 'filters' => array( - '.min.js' => array( - - ), - '.min.css' => array( - new Codesleeve\AssetPipeline\Filters\URLRewrite(App::make('url')->to('/')), - ), - '.js' => array( - new EnvironmentFilter(new Codesleeve\AssetPipeline\Filters\JSMinPlusFilter, App::environment()), - ), - '.js.coffee' => array( - new Codesleeve\AssetPipeline\Filters\CoffeeScript, - new EnvironmentFilter(new Codesleeve\AssetPipeline\Filters\JSMinPlusFilter, App::environment()), - ), - '.coffee' => array( - new Codesleeve\AssetPipeline\Filters\CoffeeScript, - new EnvironmentFilter(new Codesleeve\AssetPipeline\Filters\JSMinPlusFilter, App::environment()), - ), - '.css' => array( - new Codesleeve\AssetPipeline\Filters\URLRewrite(App::make('url')->to('/')), - new EnvironmentFilter(new Codesleeve\AssetPipeline\Filters\CssMinFilter, App::environment()), - ), - '.css.less' => array( - new Codesleeve\AssetPipeline\Filters\LessphpFilter, - new Codesleeve\AssetPipeline\Filters\URLRewrite(App::make('url')->to('/')), - new EnvironmentFilter(new Codesleeve\AssetPipeline\Filters\CssMinFilter, App::environment()), - ), - '.css.sass' => array( - new Codesleeve\AssetPipeline\Filters\SassFilter, - new Codesleeve\AssetPipeline\Filters\URLRewrite(App::make('url')->to('/')), - new EnvironmentFilter(new Codesleeve\AssetPipeline\Filters\CssMinFilter, App::environment()), - ), - '.css.scss' => array( - new Assetic\Filter\ScssphpFilter, - new Codesleeve\AssetPipeline\Filters\URLRewrite(App::make('url')->to('/')), - new EnvironmentFilter(new Codesleeve\AssetPipeline\Filters\CssMinFilter, App::environment()), - ), - '.less' => array( - new Codesleeve\AssetPipeline\Filters\LessphpFilter, - new Codesleeve\AssetPipeline\Filters\URLRewrite(App::make('url')->to('/')), - new EnvironmentFilter(new Codesleeve\AssetPipeline\Filters\CssMinFilter, App::environment()), - ), - '.sass' => array( - new Codesleeve\AssetPipeline\Filters\SassFilter, - new Codesleeve\AssetPipeline\Filters\URLRewrite(App::make('url')->to('/')), - new EnvironmentFilter(new Codesleeve\AssetPipeline\Filters\CssMinFilter, App::environment()), - ), - '.scss' => array( - new Assetic\Filter\ScssphpFilter, - new Codesleeve\AssetPipeline\Filters\URLRewrite(App::make('url')->to('/')), - new EnvironmentFilter(new Codesleeve\AssetPipeline\Filters\CssMinFilter, App::environment()), - ), - '.html' => array( - new Codesleeve\AssetPipeline\Filters\JST, - new EnvironmentFilter(new Codesleeve\AssetPipeline\Filters\JSMinPlusFilter, App::environment()), - ) - ), - - /* - |-------------------------------------------------------------------------- - | cache - |-------------------------------------------------------------------------- - | - | By default we cache assets on production environment permanently. We also cache - | all files using the `cache_server` driver below but the cache is busted anytime - | those files are modified. On production we will cache and the only way to bust - | the cache is to delete files from app/storage/cache/asset-pipeline or run a - | command php artisan assets:clean -f somefilename.js -f application.css ... - | - */ - 'cache' => array('production'), - - /* - |-------------------------------------------------------------------------- - | cache_server - |-------------------------------------------------------------------------- - | - | You can create your own CacheInterface if the filesystem cache is not up to - | your standards. This is for caching asset files on the server-side. - | - | Please note that caching is used on **ALL** environments always. This is done - | to increase performance of the pipeline. Cached files will be busted when the - | file changes. - | - | However, manifest files are regenerated (not cached) when the environment is - | not found within the 'cache' array. This lets you develop on local and still - | utilize caching, so you don't have to regenerate all precompiled files while - | developing on your assets. - | - | See more in CacheInterface.php at - | - | https://github.com/kriswallsmith/assetic/blob/master/src/Assetic/Cache - | - | - */ - 'cache_server' => new Assetic\Cache\FilesystemCache(App::make('path.storage') . '/cache/asset-pipeline'), - - /* - |-------------------------------------------------------------------------- - | cache_client - |-------------------------------------------------------------------------- - | - | If you want to handle 304's and what not, to keep users from refetching - | your assets and saving your bandwidth you can use a cache_client driver - | that handles this. This doesn't handle assets on the server-side, use - | cache_server for that. This only works when the current environment is - | listed within `cache` - | - | Note that this needs to implement the interface - | - | Codesleeve\Sprockets\Interfaces\ClientCacheInterface - | - | or this won't work correctly. It is a wrapper class around your cache_server - | driver and also uses the AssetCache class to help access files. - | - */ - 'cache_client' => new Codesleeve\AssetPipeline\Filters\ClientCacheFilter, - - /* - |-------------------------------------------------------------------------- - | concat - |-------------------------------------------------------------------------- - | - | This allows us to turn on the asset concatenation for specific - | environments listed below. You can turn off local environment if - | you are trying to troubleshoot, but you will likely have better - | performance if you leave concat on (except if you are doing a lot - | of minification stuff on each page refresh) - | - */ - 'concat' => array('production', 'local'), - - /* - |-------------------------------------------------------------------------- - | directives - |-------------------------------------------------------------------------- - | - | This allows us to turn completely control which directives are used - | for the sprockets parser that asset pipeline uses to parse manifest files. - | - | It is probably safe just to leave this alone unless you are familar with - | what is actually going on here. - | - */ - 'directives' => array( - 'require ' => new Codesleeve\Sprockets\Directives\RequireFile, - 'require_directory ' => new Codesleeve\Sprockets\Directives\RequireDirectory, - 'require_tree ' => new Codesleeve\Sprockets\Directives\RequireTree, - 'require_tree_df ' => new Codesleeve\Sprockets\Directives\RequireTreeDf, - 'require_self' => new Codesleeve\Sprockets\Directives\RequireSelf, - 'include ' => new Codesleeve\Sprockets\Directives\IncludeFile, - 'include_directory ' => new Codesleeve\Sprockets\Directives\IncludeDirectory, - 'include_tree ' => new Codesleeve\Sprockets\Directives\IncludeTree, - 'stub ' => new Codesleeve\Sprockets\Directives\Stub, - 'depend_on ' => new Codesleeve\Sprockets\Directives\DependOn, - ), - - /* - |-------------------------------------------------------------------------- - | javascript_include_tag - |-------------------------------------------------------------------------- - | - | This allows us to completely control how the javascript_include_tag function - | works for asset pipeline. - | - | It is probably safe just to leave this alone unless you are familar with - | what is actually going on here. - | - */ - 'javascript_include_tag' => new Codesleeve\AssetPipeline\Composers\JavascriptComposer, - - /* - |-------------------------------------------------------------------------- - | stylesheet_link_tag - |-------------------------------------------------------------------------- - | - | This allows us to completely control how the stylesheet_link_tag function - | works for asset pipeline. - | - | It is probably safe just to leave this alone unless you are familar with - | what is actually going on here. - | - */ - 'stylesheet_link_tag' => new Codesleeve\AssetPipeline\Composers\StylesheetComposer, - - /* - |-------------------------------------------------------------------------- - | image_tag - |-------------------------------------------------------------------------- - | - | This allows us to completely control how the image_tag function - | works for asset pipeline. - | - | It is probably safe just to leave this alone unless you are familar with - | what is actually going on here. - | - */ - 'image_tag' => new Codesleeve\AssetPipeline\Composers\ImageComposer, - - /* - |-------------------------------------------------------------------------- - | controller_action - |-------------------------------------------------------------------------- - | - | Asset pipeline will route all requests through the controller action - | listed here. This allows us to completely control how the controller - | should behave for incoming requests for assets. - | - | It is probably safe just to leave this alone unless you are familar with - | what is actually going on here. - | - */ - 'controller_action' => '\Codesleeve\AssetPipeline\AssetPipelineController@file', - - /* - |-------------------------------------------------------------------------- - | sprockets_filter - |-------------------------------------------------------------------------- - | - | When concatenation is turned on, when an asset is fetched from the sprockets - | generator it is filtered through this filter class named below. This allows us - | to modify the sprockets filter if we need to behave differently. - | - | It is probably safe just to leave this alone unless you are familar with - | what is actually going on here. - | - */ - 'sprockets_filter' => '\Codesleeve\Sprockets\SprocketsFilter', - - /* - |-------------------------------------------------------------------------- - | sprockets_filter - |-------------------------------------------------------------------------- - | - | When concatenation is turned on, assets are filtered via SprocketsFilter - | and we can do global filters on the resulting dump file. This would be - | useful if you wanted to apply a filter to all javascript or stylesheet files - | like minification. Out of the box we don't have any filters here. Add at - | your own risk. I don't put minification filters here because the minify - | doesn't always work perfectly and can bjork your entire concatenated - | javascript or stylesheet file if it messes up. - | - | It is probably safe just to leave this alone unless you are familar with - | what is actually going on here. - | - */ - 'sprockets_filters' => array( - 'javascripts' => array(), - 'stylesheets' => array(), - ), - -); diff --git a/app/views/accounts/show.blade.php b/app/views/accounts/show.blade.php index 1eba856f36..85fce4b3dc 100644 --- a/app/views/accounts/show.blade.php +++ b/app/views/accounts/show.blade.php @@ -98,12 +98,12 @@ @stop @section('styles') - + @stop @section('scripts') - + @stop \ No newline at end of file diff --git a/app/views/budgets/show.blade.php b/app/views/budgets/show.blade.php index 03460312b7..9ebaf9a28f 100644 --- a/app/views/budgets/show.blade.php +++ b/app/views/budgets/show.blade.php @@ -101,18 +101,18 @@ @stop @section('scripts') @if($view == 1) - + @endif @if($view == 2) - + @endif @if($view == 3) - + @endif @if($view == 4) - + @endif @stop \ No newline at end of file diff --git a/app/views/categories/show.blade.php b/app/views/categories/show.blade.php index 14a4b5f4db..bce67dc43f 100644 --- a/app/views/categories/show.blade.php +++ b/app/views/categories/show.blade.php @@ -40,5 +40,5 @@ - + @stop \ No newline at end of file diff --git a/app/views/index.blade.php b/app/views/index.blade.php index 39258437ca..aada3b3d9f 100644 --- a/app/views/index.blade.php +++ b/app/views/index.blade.php @@ -94,8 +94,8 @@ @stop @section('scripts') - + @stop @section('styles') - + @stop \ No newline at end of file diff --git a/app/views/layouts/default.blade.php b/app/views/layouts/default.blade.php index 13ba63d6d1..ba0f6af2ed 100644 --- a/app/views/layouts/default.blade.php +++ b/app/views/layouts/default.blade.php @@ -14,7 +14,7 @@ @endif - + @yield('styles') - + @yield('scripts') \ No newline at end of file diff --git a/app/views/layouts/guest.blade.php b/app/views/layouts/guest.blade.php index a7cb3bc69e..9519c5d23a 100644 --- a/app/views/layouts/guest.blade.php +++ b/app/views/layouts/guest.blade.php @@ -7,7 +7,7 @@ Firefly - + diff --git a/app/views/piggybanks/create-piggybank.blade.php b/app/views/piggybanks/create-piggybank.blade.php index b73c2e78ff..6cb22bd9f6 100644 --- a/app/views/piggybanks/create-piggybank.blade.php +++ b/app/views/piggybanks/create-piggybank.blade.php @@ -122,5 +122,5 @@ {{Form::close()}} @stop @section('scripts') - + @stop diff --git a/app/views/piggybanks/create-repeated.blade.php b/app/views/piggybanks/create-repeated.blade.php index 68e89bc94c..b765f5c7cf 100644 --- a/app/views/piggybanks/create-repeated.blade.php +++ b/app/views/piggybanks/create-repeated.blade.php @@ -165,5 +165,5 @@ {{Form::close()}} @stop @section('scripts') - + @stop diff --git a/app/views/piggybanks/edit-piggybank.blade.php b/app/views/piggybanks/edit-piggybank.blade.php index 5646d599d0..336d4b8607 100644 --- a/app/views/piggybanks/edit-piggybank.blade.php +++ b/app/views/piggybanks/edit-piggybank.blade.php @@ -136,5 +136,5 @@ {{Form::close()}} @stop @section('scripts') - + @stop diff --git a/app/views/piggybanks/edit-repeated.blade.php b/app/views/piggybanks/edit-repeated.blade.php index 76efa56153..3b906f1ee0 100644 --- a/app/views/piggybanks/edit-repeated.blade.php +++ b/app/views/piggybanks/edit-repeated.blade.php @@ -159,5 +159,5 @@ {{Form::close()}} @stop @section('scripts') - + @stop diff --git a/app/views/piggybanks/index.blade.php b/app/views/piggybanks/index.blade.php index 36639fd03c..8c80981311 100644 --- a/app/views/piggybanks/index.blade.php +++ b/app/views/piggybanks/index.blade.php @@ -188,5 +188,5 @@ @stop @section('scripts') - + @stop \ No newline at end of file diff --git a/app/views/recurring/create.blade.php b/app/views/recurring/create.blade.php index fca054015d..8633c59db2 100644 --- a/app/views/recurring/create.blade.php +++ b/app/views/recurring/create.blade.php @@ -185,8 +185,8 @@ @stop @section('styles') - + @stop @section('scripts') - + @stop \ No newline at end of file diff --git a/app/views/recurring/edit.blade.php b/app/views/recurring/edit.blade.php index a181d3711f..0cbea4cd18 100644 --- a/app/views/recurring/edit.blade.php +++ b/app/views/recurring/edit.blade.php @@ -183,9 +183,9 @@ @stop @section('styles') - + @stop @section('scripts') - + @stop \ No newline at end of file diff --git a/app/views/transactions/create.blade.php b/app/views/transactions/create.blade.php index e4edda3fdc..f285dfc075 100644 --- a/app/views/transactions/create.blade.php +++ b/app/views/transactions/create.blade.php @@ -273,5 +273,5 @@ @stop @section('scripts') - + @stop \ No newline at end of file diff --git a/app/views/transactions/edit.blade.php b/app/views/transactions/edit.blade.php index 6630784735..cacf785aa9 100644 --- a/app/views/transactions/edit.blade.php +++ b/app/views/transactions/edit.blade.php @@ -224,5 +224,5 @@ @stop @section('scripts') - + @stop \ No newline at end of file diff --git a/app/views/transactions/list.blade.php b/app/views/transactions/list.blade.php index 89ab98a253..6bd011ff13 100644 --- a/app/views/transactions/list.blade.php +++ b/app/views/transactions/list.blade.php @@ -31,8 +31,8 @@ var URL = '{{route('json.'.$what)}}'; var display = '{{{$what}}}'; - + @stop @section('styles') - + @stop \ No newline at end of file diff --git a/composer.json b/composer.json index 61ae9ea5e6..c2749cb5f5 100644 --- a/composer.json +++ b/composer.json @@ -22,8 +22,7 @@ }, "require": { "laravel/framework": "4.2.*", - "laravelbook/ardent": "~2.4", - "codesleeve/asset-pipeline": "dev-master" + "laravelbook/ardent": "~2.4" }, "require-dev": { "barryvdh/laravel-debugbar": "@stable", diff --git a/app/assets/javascripts/accounts.js b/public/assets/javascript/accounts.js similarity index 100% rename from app/assets/javascripts/accounts.js rename to public/assets/javascript/accounts.js diff --git a/app/assets/javascripts/application.js b/public/assets/javascript/application.js similarity index 100% rename from app/assets/javascripts/application.js rename to public/assets/javascript/application.js diff --git a/app/assets/javascripts/bootstrap/bootstrap.min.js b/public/assets/javascript/bootstrap/bootstrap.min.js similarity index 100% rename from app/assets/javascripts/bootstrap/bootstrap.min.js rename to public/assets/javascript/bootstrap/bootstrap.min.js diff --git a/app/assets/javascripts/budgets-default.js b/public/assets/javascript/budgets-default.js similarity index 100% rename from app/assets/javascripts/budgets-default.js rename to public/assets/javascript/budgets-default.js diff --git a/app/assets/javascripts/budgets-limit.js b/public/assets/javascript/budgets-limit.js similarity index 100% rename from app/assets/javascripts/budgets-limit.js rename to public/assets/javascript/budgets-limit.js diff --git a/app/assets/javascripts/budgets-nolimit.js b/public/assets/javascript/budgets-nolimit.js similarity index 100% rename from app/assets/javascripts/budgets-nolimit.js rename to public/assets/javascript/budgets-nolimit.js diff --git a/app/assets/javascripts/budgets-session.js b/public/assets/javascript/budgets-session.js similarity index 100% rename from app/assets/javascripts/budgets-session.js rename to public/assets/javascript/budgets-session.js diff --git a/app/assets/javascripts/budgets.js b/public/assets/javascript/budgets.js similarity index 100% rename from app/assets/javascripts/budgets.js rename to public/assets/javascript/budgets.js diff --git a/app/assets/javascripts/categories.js b/public/assets/javascript/categories.js similarity index 100% rename from app/assets/javascripts/categories.js rename to public/assets/javascript/categories.js diff --git a/app/assets/javascripts/datatables/dataTables.bootstrap.js b/public/assets/javascript/datatables/dataTables.bootstrap.js similarity index 100% rename from app/assets/javascripts/datatables/dataTables.bootstrap.js rename to public/assets/javascript/datatables/dataTables.bootstrap.js diff --git a/app/assets/javascripts/datatables/jquery.dataTables.min.js b/public/assets/javascript/datatables/jquery.dataTables.min.js similarity index 100% rename from app/assets/javascripts/datatables/jquery.dataTables.min.js rename to public/assets/javascript/datatables/jquery.dataTables.min.js diff --git a/app/assets/javascripts/firefly/accounts.js b/public/assets/javascript/firefly/accounts.js similarity index 100% rename from app/assets/javascripts/firefly/accounts.js rename to public/assets/javascript/firefly/accounts.js diff --git a/app/assets/javascripts/firefly/budgets/default.js b/public/assets/javascript/firefly/budgets/default.js similarity index 100% rename from app/assets/javascripts/firefly/budgets/default.js rename to public/assets/javascript/firefly/budgets/default.js diff --git a/app/assets/javascripts/firefly/budgets/limit.js b/public/assets/javascript/firefly/budgets/limit.js similarity index 100% rename from app/assets/javascripts/firefly/budgets/limit.js rename to public/assets/javascript/firefly/budgets/limit.js diff --git a/app/assets/javascripts/firefly/budgets/nolimit.js b/public/assets/javascript/firefly/budgets/nolimit.js similarity index 100% rename from app/assets/javascripts/firefly/budgets/nolimit.js rename to public/assets/javascript/firefly/budgets/nolimit.js diff --git a/app/assets/javascripts/firefly/budgets/session.js b/public/assets/javascript/firefly/budgets/session.js similarity index 100% rename from app/assets/javascripts/firefly/budgets/session.js rename to public/assets/javascript/firefly/budgets/session.js diff --git a/app/assets/javascripts/firefly/categories.js b/public/assets/javascript/firefly/categories.js similarity index 100% rename from app/assets/javascripts/firefly/categories.js rename to public/assets/javascript/firefly/categories.js diff --git a/app/assets/javascripts/firefly/index.js b/public/assets/javascript/firefly/index.js similarity index 100% rename from app/assets/javascripts/firefly/index.js rename to public/assets/javascript/firefly/index.js diff --git a/app/assets/javascripts/firefly/piggybanks-create.js b/public/assets/javascript/firefly/piggybanks-create.js similarity index 100% rename from app/assets/javascripts/firefly/piggybanks-create.js rename to public/assets/javascript/firefly/piggybanks-create.js diff --git a/app/assets/javascripts/firefly/piggybanks.js b/public/assets/javascript/firefly/piggybanks.js similarity index 100% rename from app/assets/javascripts/firefly/piggybanks.js rename to public/assets/javascript/firefly/piggybanks.js diff --git a/app/assets/javascripts/firefly/recurring.js b/public/assets/javascript/firefly/recurring.js similarity index 100% rename from app/assets/javascripts/firefly/recurring.js rename to public/assets/javascript/firefly/recurring.js diff --git a/app/assets/javascripts/firefly/reminders.js b/public/assets/javascript/firefly/reminders.js similarity index 100% rename from app/assets/javascripts/firefly/reminders.js rename to public/assets/javascript/firefly/reminders.js diff --git a/app/assets/javascripts/firefly/transactions.js b/public/assets/javascript/firefly/transactions.js similarity index 100% rename from app/assets/javascripts/firefly/transactions.js rename to public/assets/javascript/firefly/transactions.js diff --git a/app/assets/javascripts/flot/jquery.flot.min.js b/public/assets/javascript/flot/jquery.flot.min.js similarity index 100% rename from app/assets/javascripts/flot/jquery.flot.min.js rename to public/assets/javascript/flot/jquery.flot.min.js diff --git a/app/assets/javascripts/highcharts/highcharts.js b/public/assets/javascript/highcharts/highcharts.js similarity index 100% rename from app/assets/javascripts/highcharts/highcharts.js rename to public/assets/javascript/highcharts/highcharts.js diff --git a/app/assets/javascripts/index.js b/public/assets/javascript/index.js similarity index 100% rename from app/assets/javascripts/index.js rename to public/assets/javascript/index.js diff --git a/app/assets/javascripts/metisMenu/jquery.metisMenu.min.js b/public/assets/javascript/metisMenu/jquery.metisMenu.min.js similarity index 100% rename from app/assets/javascripts/metisMenu/jquery.metisMenu.min.js rename to public/assets/javascript/metisMenu/jquery.metisMenu.min.js diff --git a/app/assets/javascripts/piggybanks-create.js b/public/assets/javascript/piggybanks-create.js similarity index 100% rename from app/assets/javascripts/piggybanks-create.js rename to public/assets/javascript/piggybanks-create.js diff --git a/app/assets/javascripts/piggybanks.js b/public/assets/javascript/piggybanks.js similarity index 100% rename from app/assets/javascripts/piggybanks.js rename to public/assets/javascript/piggybanks.js diff --git a/app/assets/javascripts/recurring.js b/public/assets/javascript/recurring.js similarity index 100% rename from app/assets/javascripts/recurring.js rename to public/assets/javascript/recurring.js diff --git a/app/assets/javascripts/sb-admin/sb-admin-2.js b/public/assets/javascript/sb-admin/sb-admin-2.js similarity index 100% rename from app/assets/javascripts/sb-admin/sb-admin-2.js rename to public/assets/javascript/sb-admin/sb-admin-2.js diff --git a/app/assets/javascripts/tagsinput/bootstrap-tagsinput.min.js b/public/assets/javascript/tagsinput/bootstrap-tagsinput.min.js similarity index 100% rename from app/assets/javascripts/tagsinput/bootstrap-tagsinput.min.js rename to public/assets/javascript/tagsinput/bootstrap-tagsinput.min.js diff --git a/app/assets/javascripts/transactions.js b/public/assets/javascript/transactions.js similarity index 100% rename from app/assets/javascripts/transactions.js rename to public/assets/javascript/transactions.js diff --git a/app/assets/javascripts/typeahead/bootstrap3-typeahead.min.js b/public/assets/javascript/typeahead/bootstrap3-typeahead.min.js similarity index 100% rename from app/assets/javascripts/typeahead/bootstrap3-typeahead.min.js rename to public/assets/javascript/typeahead/bootstrap3-typeahead.min.js diff --git a/app/assets/javascripts/typeahead/typeahead.jquery.js b/public/assets/javascript/typeahead/typeahead.jquery.js similarity index 100% rename from app/assets/javascripts/typeahead/typeahead.jquery.js rename to public/assets/javascript/typeahead/typeahead.jquery.js diff --git a/app/assets/stylesheets/accounts.css b/public/assets/stylesheets/accounts.css similarity index 100% rename from app/assets/stylesheets/accounts.css rename to public/assets/stylesheets/accounts.css diff --git a/app/assets/stylesheets/application.css b/public/assets/stylesheets/application.css similarity index 100% rename from app/assets/stylesheets/application.css rename to public/assets/stylesheets/application.css diff --git a/app/assets/stylesheets/bootstrap/bootstrap.min.css b/public/assets/stylesheets/bootstrap/bootstrap.min.css similarity index 100% rename from app/assets/stylesheets/bootstrap/bootstrap.min.css rename to public/assets/stylesheets/bootstrap/bootstrap.min.css diff --git a/app/assets/stylesheets/datatables/dataTables.bootstrap.css b/public/assets/stylesheets/datatables/dataTables.bootstrap.css similarity index 100% rename from app/assets/stylesheets/datatables/dataTables.bootstrap.css rename to public/assets/stylesheets/datatables/dataTables.bootstrap.css diff --git a/app/assets/stylesheets/datatables/jquery.dataTables.min.css b/public/assets/stylesheets/datatables/jquery.dataTables.min.css similarity index 100% rename from app/assets/stylesheets/datatables/jquery.dataTables.min.css rename to public/assets/stylesheets/datatables/jquery.dataTables.min.css diff --git a/app/assets/stylesheets/fa/css/font-awesome.css b/public/assets/stylesheets/fa/css/font-awesome.css similarity index 100% rename from app/assets/stylesheets/fa/css/font-awesome.css rename to public/assets/stylesheets/fa/css/font-awesome.css diff --git a/app/assets/stylesheets/fa/css/font-awesome.min.css b/public/assets/stylesheets/fa/css/font-awesome.min.css similarity index 100% rename from app/assets/stylesheets/fa/css/font-awesome.min.css rename to public/assets/stylesheets/fa/css/font-awesome.min.css diff --git a/app/assets/stylesheets/fa/fonts/FontAwesome.otf b/public/assets/stylesheets/fa/fonts/FontAwesome.otf similarity index 100% rename from app/assets/stylesheets/fa/fonts/FontAwesome.otf rename to public/assets/stylesheets/fa/fonts/FontAwesome.otf diff --git a/app/assets/stylesheets/fa/fonts/fontawesome-webfont.eot b/public/assets/stylesheets/fa/fonts/fontawesome-webfont.eot similarity index 100% rename from app/assets/stylesheets/fa/fonts/fontawesome-webfont.eot rename to public/assets/stylesheets/fa/fonts/fontawesome-webfont.eot diff --git a/app/assets/stylesheets/fa/fonts/fontawesome-webfont.svg b/public/assets/stylesheets/fa/fonts/fontawesome-webfont.svg similarity index 100% rename from app/assets/stylesheets/fa/fonts/fontawesome-webfont.svg rename to public/assets/stylesheets/fa/fonts/fontawesome-webfont.svg diff --git a/app/assets/stylesheets/fa/fonts/fontawesome-webfont.ttf b/public/assets/stylesheets/fa/fonts/fontawesome-webfont.ttf similarity index 100% rename from app/assets/stylesheets/fa/fonts/fontawesome-webfont.ttf rename to public/assets/stylesheets/fa/fonts/fontawesome-webfont.ttf diff --git a/app/assets/stylesheets/fa/fonts/fontawesome-webfont.woff b/public/assets/stylesheets/fa/fonts/fontawesome-webfont.woff similarity index 100% rename from app/assets/stylesheets/fa/fonts/fontawesome-webfont.woff rename to public/assets/stylesheets/fa/fonts/fontawesome-webfont.woff diff --git a/app/assets/stylesheets/highslide/highslide.css b/public/assets/stylesheets/highslide/highslide.css similarity index 100% rename from app/assets/stylesheets/highslide/highslide.css rename to public/assets/stylesheets/highslide/highslide.css diff --git a/app/assets/stylesheets/index.css b/public/assets/stylesheets/index.css similarity index 100% rename from app/assets/stylesheets/index.css rename to public/assets/stylesheets/index.css diff --git a/app/assets/stylesheets/metisMenu/metisMenu.min.css b/public/assets/stylesheets/metisMenu/metisMenu.min.css similarity index 100% rename from app/assets/stylesheets/metisMenu/metisMenu.min.css rename to public/assets/stylesheets/metisMenu/metisMenu.min.css diff --git a/app/assets/stylesheets/recurring.css b/public/assets/stylesheets/recurring.css similarity index 100% rename from app/assets/stylesheets/recurring.css rename to public/assets/stylesheets/recurring.css diff --git a/app/assets/stylesheets/sbadmin/sb.css b/public/assets/stylesheets/sbadmin/sb.css similarity index 100% rename from app/assets/stylesheets/sbadmin/sb.css rename to public/assets/stylesheets/sbadmin/sb.css diff --git a/app/assets/stylesheets/tagsinput/bootstrap-tagsinput.css b/public/assets/stylesheets/tagsinput/bootstrap-tagsinput.css similarity index 100% rename from app/assets/stylesheets/tagsinput/bootstrap-tagsinput.css rename to public/assets/stylesheets/tagsinput/bootstrap-tagsinput.css diff --git a/app/assets/stylesheets/transactions.css b/public/assets/stylesheets/transactions.css similarity index 100% rename from app/assets/stylesheets/transactions.css rename to public/assets/stylesheets/transactions.css