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
[?25hRegistering hook -> configure[build] | |
[?25hRegistering hook -> build[build] | |
[?25hRegistering hook -> configure[scp] | |
[?25hRegistering hook -> willBuild[scp] | |
[?25hRegistering hook -> build[scp] | |
[?25hRegistering hook -> willUpload[scp] | |
[?25hRegistering hook -> upload[scp] | |
[?25hExecuting pipeline | |
[?25h| | |
[?25h+- configure |
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
[ | |
{ | |
"type": "title", | |
"content": "Extraordinary User Experiences. Expert Software Engineering - DockYard", | |
"tagId": "title" | |
}, | |
{ | |
"type": "meta", | |
"attrs": { | |
"content": "Extraordinary User Experiences. Expert Software Engineering - DockYard", |
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
server { | |
server_name production.example.com; | |
return 301 https://example.com/$request_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
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
appName: 'Ember Twiddle' | |
}); |
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
test('handleURL for storefront-less URLs', function(assert) { | |
let router = this.subject(); | |
router.startRouting(); | |
let transition = router.handleURL('/foo/bar/baz'); | |
assert.equal(transition.targetName, 'foobar.index'); | |
}); | |
test('handleURL for URLs with storefront segment', function(assert) { |
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
➜ dockyard-api git:(releases/v5.0) mix edeliver build release --to=v5.0.1 | |
warning: variable "deps" does not exist and is being expanded to "deps()", please use parentheses to remove the ambiguity or change the variable name | |
/Users/bcardarella/Dropbox/projects/dockyard-api/deps/courier/mix.exs:13 | |
BUILDING RELEASE OF DOCKYARD APP ON BUILD HOST | |
-----> Authorizing hosts | |
-----> Ensuring hosts are ready to accept git pushes | |
-----> Pushing new commits with git to: [email protected] |
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
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
appName: 'Ember Twiddle' | |
}); |
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
(stdlib) :lists.keysearch(:version, 1, [{:timeout, 300000} | {:error, :missing_cacertfile}]) | |
(inets) httpc.erl:685: :httpc.http_options/3 | |
(inets) httpc.erl:543: :httpc.handle_request/9 | |
(oidcc) /Users/bcardarella/Dropbox/projects/dockyard-api/deps/oidcc/src/oidcc_http_util.erl:78: :oidcc_http_util.perform_http_request/4 | |
(oidcc) /Users/bcardarella/Dropbox/projects/dockyard-api/deps/oidcc/src/oidcc_openid_provider.erl:203: :oidcc_openid_provider.http_async_get/4 | |
(oidcc) /Users/bcardarella/Dropbox/projects/dockyard-api/deps/oidcc/src/oidcc_openid_provider.erl:146: :oidcc_openid_provider.handle_cast/2 | |
(stdlib) gen_server.erl:601: :gen_server.try_dispatch/4 | |
(stdlib) gen_server.erl:667: :gen_server.handle_msg/5 |
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
** (UndefinedFunctionError) function Foobar.__before_compile__/1 is undefined or private. Did you mean one of: | |
* __before__compile__/1 |
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
defmodule Bar do | |
use Foo | |
end |