diff --git a/README.md b/README.md index 1225405..0cbf7f7 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# ProMotion ![Build Status](https://travis-ci.org/clearsightstudio/ProMotion.png) +# ProMotion [![Build Status](https://travis-ci.org/clearsightstudio/ProMotion.png)](https://travis-ci.org/clearsightstudio/ProMotion) ## A new way to easily build RubyMotion apps. @@ -727,6 +727,7 @@ end # Code to start the refresh end

And after you're done with your asyncronous process, call end_refreshing to collapse the refresh view and update the last refreshed time and then update_table_data.

+ diff --git a/spec/helpers/test_delegate.rb b/spec/helpers/test_delegate.rb index 8be9d61..989783b 100644 --- a/spec/helpers/test_delegate.rb +++ b/spec/helpers/test_delegate.rb @@ -1,4 +1,9 @@ class TestDelegate < ProMotion::Delegate def on_load(app, options) end -end \ No newline at end of file + + # Hack to make RM 2.0 work. + # Ref: http://hipbyte.myjetbrains.com/youtrack/issue/RM-136 + def dealloc + end +end