Last active
December 19, 2015 06:19
-
-
Save Akkiesoft/5911030 to your computer and use it in GitHub Desktop.
mikutterコンソールで実行するやつ。
なんかでた(id1がコツらしい)
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
Plugin.create(:test) do | |
tab(:test, 'TEST') do | |
timeline :test | |
end | |
user = User.new({ | |
:id => 1, | |
:idname => "Akkiesoft", | |
:name => "akkiesoft", | |
:profile_image_url => "http://8639.tk/hello.png", | |
:url => "http://kokuda.org" | |
}) | |
time = Time.now | |
timeline(:test) << Message.new({ | |
:id => 1, | |
:message => "oeeeeeeeeee", | |
:user => user, | |
:created => time, | |
:system => false | |
}) | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment