This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@mixin gradient($color-start, $color-stop, $direction: top) { | |
background-color: $color-stop; | |
@include background-image(linear-gradient($direction, $color-start, $color-stop)); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Exception] | |
DateTime::__construct(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() functi | |
on. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, bu | |
t please set date.timezone to select your timezone. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = function(grunt) { | |
grunt.initConfig({ | |
coffee: { | |
compile: { | |
files: { | |
'assets/js/main.js': 'assets/js/coffee/main.coffee', | |
} | |
} | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ git deploy | |
Counting objects: 41, done. | |
Delta compression using up to 2 threads. | |
Compressing objects: 100% (24/24), done. | |
Writing objects: 100% (25/25), 5.39 KiB, done. | |
Total 25 (delta 12), reused 0 (delta 0) | |
remote: Loading composer repositories with package information | |
Updating dependencies | |
remote: Generating autoload files | |
remote: Generating optimized class loader... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Arquivo de configuração do Compass para o EscapeWork (a partir de versão 1.3, que contém o sass) | |
# Versões anteriores vão precisar criar e cofigurar os diretórios do sass e css | |
# Author: Luís Dalmolin <[email protected]> | |
# Require any additional compass plugins here. | |
# Set this to the root of your project when deployed: | |
http_path = "" | |
css_dir = "assets/css" | |
sass_dir = "assets/css/scss" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php namespace Commerce\Client\Facades; | |
class ClientAuth | |
{ | |
/** | |
* @var Illuminate\Auth\Guard | |
*/ | |
static $guard; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class Slug | |
{ | |
/** | |
* Create a URI friendly slug from a string. | |
* | |
* @param string $uri | |
* @return string | |
*/ | |
public static function make($uri) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
App::bind('product', function($value, $route) | |
{ | |
var_dump( $value ); die; | |
}); | |
Route::get('produtos/{product}/skus', array('as' => 'produtos.skus.index', 'uses' => 'ProductSkuController@index')); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class SkuValueController extends BaseController | |
{ | |
public function update( SkuRepositoryInterface $sku, $id ) | |
{ | |
} | |
} |