Benjamin Michotte

Results 33 comments of Benjamin Michotte

@markrickert fix also correct my issue

This is something I had to do. I wanted a `PM::TableScreen` inside a `PM::Screen`. It's quite easy to do ``` ruby class MyTableScreen < PM::Screen include PM::Table include PM::GroupedTable def...

In addition to this, and referring this [question](http://community.rubymotion.com/t/scroll-callback-for-pm-tablescreen/922)... why not implement this way ? ``` ruby def scrollViewDidScroll(scroll_view) current_y = scroll_view.contentOffset.y @previous_y ||= 0 if self.respond_to?(:on_scroll) try :on_scroll elsif current_y...

:+1: It will be an awesome feature in [ProMotion-XLForm](https://github.com/bmichotte/ProMotion-XLForm)

Same thing after a newclear (yes i have this awesome gem @GantMan :p) Logcat give me this (not sure everything is related) ``` --------- beginning of main D/AndroidRuntime( 7251): D/AndroidRuntime(...

I'm on OxygenOs, not Cyanogen. But, I can run some RM Android app (really basic btw)

for the repo, it's easy git clone bluepotion, rake device :) I don't know if my java version can be the cause ? java version "1.8.0_25" Java(TM) SE Runtime Environment...

Hi @SeparateRecords here you are ```bash # post for fish if test -z "$FIG_DOTFILES_SOURCED" alias 'grm' 'git rm' alias 'grep' 'grep --color=auto --exclude-dir={.bzr,CVS,.git,.hg,.svn,.idea,.tox}' alias 'gpv' 'git push -v' alias 'gpu'...