rubymotion-community / BubbleWrap

Cocoa wrappers and helpers for RubyMotion (Ruby for iOS and OS X) - Making Cocoa APIs more Ruby like, one API at a time. Fork away and send your pull requests
Other
1.18k stars 208 forks source link

BW::App.alert broken #488

Closed spnkr closed 7 years ago

spnkr commented 7 years ago

BW::App.alert stopped working:

BW::App.alert("Hello") 
=> #<NSException:0x11bea1130>

gemfile

gem 'bubble-wrap', '1.9.5'

rakefile

require 'motion/project/template/ios'

begin
  require 'bundler'
  Bundler.require
rescue LoadError
end
require 'bubble-wrap/all'

Motion::Project::App.setup do |app|
  # Use `rake config' to see complete project settings.
  app.name = '...'
  app.sdk_version = "9.3"
  app.deployment_target = "9.3"
end