【9/26 対応方法1を追記しました】
tosik@githubさんありがとうございます!
bubble-wrap (1.1.3)で確認されています。
対応方法1
Gemfileに以下のように追記し、bundle install
すると動くようになります。
Gemfile
gem 'bubble-wrap', '~> 1.1.3', :git => "git://github.com/Watson1978/BubbleWrap.git", :branch => "configs"
##対応方法2
以下のように変更すると動くようになります。
bubble-wrap-1.1.3/lib/bubble-wrap/ext/motion_project_app.rb
- configs.each_value &bw_config
- config.validate
+ config.setup_blocks << bw_config
##原因
RubyMotionの1.24ではconfigsをサポートしなくなったからのようです。
参考:Do not use `configs' which is used by RubyMotion internal