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
皆様, | |
産総研の江渡です.お世話になっております. | |
第130回SIGHCI研究会の参加募集です. | |
今回は招待講演が3件もあり,充実しています. | |
今回は特に,ニコニコ動画の開発者として有名な戀塚昭彦氏に来ていただける | |
ことになりました.ニコニコ動画の裏側に,どのようなインタラクション上の | |
工夫があるかについてお話ししていただきます. |
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
class MyFilter | |
class << self | |
def method_missing(m_name, *ignore) | |
new(m_name) | |
end | |
end | |
def initialize(bar) | |
@bar = bar | |
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
class A | |
def foo(num) | |
%w[one two three][num - 1] | |
end | |
end | |
describe A do | |
describe "#foo" do | |
RSpec::Matchers.define :do_foo do |args| | |
match do |instance| |