I hereby claim:
- I am jeremyjh on github.
- I am jeremyjh (https://keybase.io/jeremyjh) on keybase.
- I have a public key ASAPnvEfl1PGGYJVJ6pUh9nzgVMdDGKcdPDQ3C0vAqj9nQo
To claim this, I am signing this object:
def view(opts) do | |
quote do | |
use Phoenix.View, unquote(opts) | |
# Import convenience functions from controllers | |
... |
def view(opts \\ | |
[root: "lib/bigapp_web/templates", | |
namespace: BigappWeb]) do | |
quote do | |
use Phoenix.View, unquote(opts) |
I hereby claim:
To claim this, I am signing this object:
... | |
defp deps do | |
[ | |
{:phoenix, "~> 1.3.0"}, | |
{:phoenix_pubsub, "~> 1.0"}, | |
{:phoenix_ecto, "~> 3.2"}, | |
{:postgrex, ">= 0.0.0"}, | |
{:phoenix_html, "~> 2.10"}, | |
{:phoenix_live_reload, "~> 1.0", only: :dev}, | |
{:gettext, "~> 0.11"}, |
cmake_minimum_required(VERSION 3.5) | |
project(godot) | |
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11") | |
include_directories(./godot | |
./godot/core/ | |
./godot/core/math/) | |
file (GLOB CPP_FILES godot/**/*.cpp) |