This file contains 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
@import "../../../../bower_components/neat/app/assets/stylesheets/neat-helpers"; | |
// Neat Overrides | |
$column: em(100); | |
$gutter: em(20); | |
$grid-columns: 12; | |
$max-width: em(1400); | |
// Neat Breakpoints | |
$mobile-screen: em(480); |
This file contains 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
$(document).ready(function() { | |
gitHubContributors(); | |
}); | |
function gitHubContributors() { | |
var | |
howMany = 70, | |
baseUrl = 'https://api.github.com/repos/hechoendrupal/DrupalConsole/contributors?per_page=' + howMany + '&callback=?', | |
$contributorsOutput = $("#contributors-list"), |
This file contains 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
#!/usr/bin/env ruby | |
# Usage | |
# $ docker-machine create my-machine123 -d virtualbox | |
# $ ruby <(curl -L https://git.io/vvvco) my-machine123 | |
# https://gist.github.com/mattes/4d7f435d759ca2581347 | |
require 'erb' | |
bootlocalsh = %Q(#/bin/bash |
This file contains 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
dsads |
This file contains 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
diff --git a/src/Command/GeneratorModuleCommand.php b/src/Command/GeneratorModuleCommand.php | |
index 48000a7..a7cda17 100644 | |
--- a/src/Command/GeneratorModuleCommand.php | |
+++ b/src/Command/GeneratorModuleCommand.php | |
@@ -49,6 +49,11 @@ class GeneratorModuleCommand extends GeneratorCommand | |
} | |
} | |
+ $module_path = $input->getOption('module-path'); | |
+ if(!is_dir($module_path)){ |
NewerOlder