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
% ls ~ ~ | |
Desktop Downloads Library Music Public Sites Tmp test | |
Documents Dropbox Movies Pictures SVN Src Work |
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
require 'thread' | |
class Future | |
def initialize &block | |
@cv = ConditionVariable.new | |
@mutex = Mutex.new | |
Thread.start do | |
@result = block.call | |
@cv.signal |
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
user system total real | |
unpack: 0.000000 0.010000 0.010000 ( 0.003435) | |
isutf8: 0.000000 0.030000 0.030000 ( 0.032497) | |
regexp: 0.000000 0.000000 0.000000 ( 0.000012) |
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
<?xml version="1.0" encoding="UTF-8" ?> | |
<project name="twitty-console" default="run-spec"> | |
<!-- properties --> | |
<property file="build.properties"/> | |
<property name="build" value="build" /> | |
<property name="build.main" value="build/classes" /> | |
<property name="build.spec" value="build/spec-classes" /> | |
<property name="src.main" value="src/main/scala" /> |
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
From f226a2854ec17a67d140796273750a4e341dd163 Mon Sep 17 00:00:00 2001 | |
From: Naoto Takai <[email protected]> | |
Date: Fri, 11 Dec 2009 09:30:05 +0900 | |
Subject: [PATCH] Added examples for Method#parameters | |
--- | |
core/method/parameters_spec.rb | 44 +++++++++++++++++++++++++++++++++++++++- | |
1 files changed, 43 insertions(+), 1 deletions(-) | |
diff --git a/core/method/parameters_spec.rb b/core/method/parameters_spec.rb |
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
日本Ruby会議2010懇親会について | |
============================== | |
■ テーマ | |
Rubyistたちが親交を深め、新たに出会う | |
■ スケジュール | |
日本Ruby会議2010が主催する懇親会は4回です。 | |
8月26日(木)前夜祭(発表者・スタッフ) | |
8月27日(金)コミュニティ・ナイト(参加者) |
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
[ivy:retrieve] :: Ivy 2.2.0 - 20100923230623 :: http://ant.apache.org/ivy/ :: | |
[ivy:retrieve] :: loading settings :: url = jar:file:/Applications/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib/ivy-2.2.0.jar!/org/apache/ivy/core/settings/ivysettings.xml | |
[ivy:retrieve] :: resolving dependencies :: net.recompile#jruby-request-processor;working@borges | |
[ivy:retrieve] confs: [default] | |
[ivy:retrieve] found org.apache.struts#struts-core;1.3.9 in public | |
[ivy:retrieve] found antlr#antlr;2.7.2 in public | |
[ivy:retrieve] found commons-beanutils#commons-beanutils;1.7.0 in public | |
[ivy:retrieve] found commons-chain#commons-chain;1.1 in public | |
[ivy:retrieve] found commons-digester#commons-digester;1.8 in public | |
[ivy:retrieve] found commons-logging#commons-logging;1.0.4 in public |
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
diff --git addons/CMakeLists.txt addons/CMakeLists.txt | |
index 620e3ae..f9dd903 100755 | |
--- addons/CMakeLists.txt | |
+++ addons/CMakeLists.txt | |
@@ -58,7 +58,7 @@ add_subdirectory(EditLine) | |
add_subdirectory(Facebook) | |
add_subdirectory(Flux) | |
add_subdirectory(Fnmatch) | |
-add_subdirectory(Font) | |
+#add_subdirectory(Font) |
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
# coding: utf-8 | |
require 'rspec' | |
describe Array do | |
class << self | |
alias それは it | |
alias なにって subject | |
alias 状況が context | |
end |
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
require 'thread' | |
class Future | |
def initialize &block | |
@cv = ConditionVariable.new | |
@mutex = Mutex.new | |
Thread.start do | |
@result = block.call | |
@cv.signal |