Move to a temporary or downloads folder then run
git clone https://github.com/dwt/guard-less.gitcd guard-lessgem build guard-less.gemspecgem install ./guard-less-0.1.3.gem
You may need to run some of these as su
| ./configure \ | |
| --prefix=/usr \ | |
| --mandir=/usr/share/man \ | |
| --infodir=/usr/share/info \ | |
| --sysconfdir=/private/etc \ | |
| --with-apxs2=/usr/sbin/apxs \ | |
| --enable-cli \ | |
| --with-config-file-path=/etc \ | |
| --with-libxml-dir=/usr \ | |
| --with-openssl=/usr \ |
| app/ | |
| |-assets/ | |
| | |-coffee/ | |
| | | |-main.coffe | |
| | |-less/ | |
| | | |-main.less | |
| public/ | |
| |-assets | |
| | |-css |
| guard :coffeescript, :input => "app/assets/coffee", :output => "public/src/js" | |
| guard :less, :all_on_start => true, :all_on_start => false, :output => 'public/src/css' do | |
| watch(%r[^app/assets/less/(.+\.less)$]) | |
| end | |
| guard :concat, :type => "css", :files => %w[], :input_dir => "public/src/css", :output => "public/assets/css/hello" | |
| guard :concat, :type => "js", :files => %w[], :input_dir => "public/src/js", :output => "public/src/js/hello" | |
| # Refresh the browser on save | |
| guard 'livereload' do | |
| watch(%r{.+(?<!\.min)\.(css|html|js|blade\.php)$}) |
| { | |
| "serviceProviders": [ | |
| "Vendor\Namespace\ServiceProvider" | |
| ], | |
| "facades": [ | |
| { | |
| "alias": "Alias", | |
| "facade": "Path\To\Facade" | |
| } | |
| ] |
| { | |
| "providers": [ | |
| "Illuminate\Html\HtmlServiceProvider" | |
| ], | |
| "aliases": [ | |
| { | |
| "alias": "HTML", | |
| "facade": "Illuminate\Support\Facades\HTML" | |
| } | |
| ] |
Move to a temporary or downloads folder then run
git clone https://github.com/dwt/guard-less.gitcd guard-lessgem build guard-less.gemspecgem install ./guard-less-0.1.3.gemYou may need to run some of these as su
| <?php | |
| return array( | |
| /* | |
| |-------------------------------------------------------------------------- | |
| | Application Debug Mode | |
| |-------------------------------------------------------------------------- | |
| | | |
| | When your application is in debug mode, detailed error messages with |
| <?php namespace Gateways; | |
| use Illuminate\Support\ServiceProvider; | |
| class GatewaysServiceProvider extends ServiceProvider { | |
| /** | |
| * Indicates if loading of the provider is deferred. |
| <snippet> | |
| <content><![CDATA[ | |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>${1:title}</title> | |
| </head> |