LoginSignup
1
1

More than 5 years have passed since last update.

PictRubyの0.5を申請

Last updated at Posted at 2016-03-24

iTunes Connect にROMを提出。順調に行けば2週間位だろうか。

Bump 0.5 · ongaeshi/PictRuby@dd603ca

更新履歴

  • スクリプト
    • チャットボットを作成可能に
    • Chatクラスを定義してください
    • mruby-eval の追加
    • sample/10_irb.rb の追加
  • その他
    • "Application supports iTunes file sharing" を有効に
    • アイコン、起動画面の更新

チャットボット作るの楽しい。チャットボットを利用してirbも作れた。

pictruby-irb-02.png

ソースも20行位で書けます。

class Chat
  def welcome
    <<EOS
irb - Interactive Ruby Shell
EOS
  end

  def call(input)
    begin
      eval(input)
    rescue Exception => e
      e.message
    end
  end
end
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1