- willing to hit the network
- causes:
Definition#resolve_remotely!
- invoked by
bundle outdated
based on no --local - invoked by
Installer#run
based on no --local and novendor/cache
- source.remote!
- rubygems: query rubygems.org
- git: clone/fetch
- causes:
- willing to do local work
- source.cached!
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
# This is the code from my 'There is No Such Thing as Metaprogramming' talk, | |
# which premiered at the Arlington, VA Ruby Users Group on Feb 22nd. | |
# Without the deliver and walk-through to the solution below this example | |
# will be missing quite an important bit of content (mainly the tracking of | |
# 'self' while developing the solution, but it still a useful read. | |
# Here is the Toddler with no metajuju. Note that the developer, as well as | |
# the code, is completely unuaware of the interpreter. A developer with a | |
# background in compiled languages would be comfortable looking at this. |
- willing to hit the network
** causes:
***
Definition#resolve_remotely!
*** invoked bybundle outdated
based on no --local *** invoked byInstaller#run
based on no --local and novendor/cache
** source.remote! ** rubygems: query rubygems.org ** git: clone/fetch - willing to do local work
- source.cached!
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
require 'thor' | |
require 'pathname' | |
module Canhaz | |
class CLI | |
class Recipes < Thor | |
desc "apply", "apply" | |
def apply | |
puts "applying" |
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
// The JSON | |
array = [ | |
{ | |
created_at: "2011-10-19T16:22:30Z", | |
id: 1, | |
link: "http://abcnews.go.com/Business/video/job-search-social-media-ditch-resume-hunt-nontraditional-ways-internet-professional-contacts-business-13581468", | |
title: "ABC News: Job Search Through Social Media", | |
updated_at: "2011-10-19T16:22:30Z" | |
}, |
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/kernel/common/marshal.rb b/kernel/common/marshal.rb | |
index 5b0dc71..f0d1dab 100644 | |
--- a/kernel/common/marshal.rb | |
+++ b/kernel/common/marshal.rb | |
@@ -970,7 +970,7 @@ module Marshal | |
ms.construct | |
rescue NameError => e | |
- raise ArgumentError, e.message | |
+ raise ArgumentError, e.message, e |
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
{{view App.ToolbarField valueBinding="Sheduler.toolbarController.selectedDate"}} | |
DATE = | |
from: (controllerDate) -> | |
new Date(controllerDate) | |
to: (viewDate) -> | |
viewDate.toString() | |
App.ToolbarField = SC.TextField.extend |
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
<!-- | |
I'm sure there's a better syntax for naming subtemplates | |
--> | |
<h3>This is a list</h3> | |
<ul> | |
{{#each items}} | |
{{@cell}} | |
<li> | |
{{..}} |
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
arr = [1,2,3] | |
{{#each }} | |
{{this}}, | |
{{/each}} | |
produces: | |
1,2,3, |
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
arr = [1,2,3] | |
{{#each }} | |
{{this}}, | |
{{/each}} | |
produces: | |
1,2,3, |