View generate-code-coverage.ps1
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
param ( | |
[string]$format = "opencover", | |
[bool]$nohtml = $false | |
) | |
if (-Not (Get-Command -Name reportgenerator -ErrorAction SilentlyContinue)) | |
{ | |
Write-Output "Installing reportgenerator" | |
Invoke-Expression "dotnet tool install --global dotnet-reportgenerator-globaltool --version 4.0.9" | |
} |
View .deployment
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
[config] | |
command = deploy.cmd |
View generate-code-coverage.ps1
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
if (-Not (Get-Command -Name reportgenerator -ErrorAction SilentlyContinue)) | |
{ | |
Write-Output "Instalando reportgenerator" | |
Invoke-Expression "dotnet tool install --global dotnet-reportgenerator-globaltool --version 4.0.0" | |
} | |
Write-Output "Listando arquivos csproj" | |
$reports = [System.Collections.ArrayList]@() | |
Get-ChildItem -Path .\test -Recurse -Filter *.csproj -File | ForEach-Object { | |
Write-Output "Executando testes para o projeto $($_.BaseName)/$($_.Name)" |
View tasks.json
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
{ | |
"label": "Test", | |
"type": "shell", | |
"command": "dotnet test [caminho do projeto de testes] /p:CollectCoverage=true /p:CoverletOutputFormat=opencover", | |
"group": "test", | |
"presentation": { | |
"reveal": "silent", | |
"panel": "shared" | |
} | |
}, |
View Vagrantfile
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# Check for missing plugins | |
required_plugins = %w(vagrant-winnfsd) | |
plugin_installed = false | |
required_plugins.each do |plugin| | |
unless Vagrant.has_plugin?(plugin) | |
system "vagrant plugin install #{plugin}" | |
plugin_installed = true |
View display.ctp
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
<?php if($nextEvent != null): ?> | |
<div class="black-panel"> | |
<h3><?= $nextEvent->name; ?></h3> | |
<span><?= $nextEvent->date->i18nFormat('d MMMM y'); ?></span> | |
<div class="countdown"> | |
<div class="countdown-timer"> | |
<span class="info-text"><span class="text-icon"></span><?= __("Countdown Till Start"); ?></span> | |
<h4 class="countdown-text" rel="<?= strtotime($nextEvent->date->format('Y-m-d H:i')); ?>"></h4> | |
</div> | |
<p><?= $nextEvent->description; ?></p> |
View NextEventCell.php
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
<?php | |
namespace App\View\Cell; | |
use Cake\View\Cell; | |
class NextEventCell extends Cell | |
{ | |
public function display() | |
{ | |
$this->loadModel("Events"); | |
$nextEvent = $this->Events->find()->where(['date >=' => date("Y-m-d")])->first(); | |
$this->set(compact('nextEvent')); |
View BancosController.cs
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
private readonly IBancoRepository _bancoRepository; | |
public BancosController() | |
{ | |
var repository = Global.container.GetInstance<IBancoRepository>(); | |
_bancoRepository = repository; | |
} |
View BancosController.cs
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
[RemotingService] | |
public class BancosController | |
{ | |
private IBancoRepository _bancoRepository { get; set; } | |
public BancosController(IBancoRepository bancoRepository) | |
{ | |
_bancoRepository = bancoRepository; | |
} | |
} |
View AbstractSeedFromJson.php
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
<?php | |
namespace App\Migrations; | |
use Phinx\Seed\AbstractSeed; | |
use Symfony\Component\Filesystem\Filesystem; | |
use Symfony\Component\Filesystem\Exception\FileNotFoundException; | |
class AbstractSeedFromJson extends AbstractSeed | |
{ |
NewerOlder