Skip to content

Commit

Permalink
Removed motionprint in gem file, it's not required. Fixed bug in samp…
Browse files Browse the repository at this point in the history
…le app
  • Loading branch information
twerth committed Nov 18, 2014
1 parent 6bc15e3 commit 0f3e1d0
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 7 deletions.
2 changes: 0 additions & 2 deletions Gemfile
@@ -1,5 +1,3 @@
source 'https://rubygems.org'

gemspec

gem 'motion_print'
2 changes: 0 additions & 2 deletions Gemfile.lock
Expand Up @@ -7,14 +7,12 @@ GEM
remote: https://rubygems.org/
specs:
bacon (1.2.0)
motion_print (0.0.3)
rake (10.3.2)

PLATFORMS
ruby

DEPENDENCIES
bacon
motion_print
rake
ruby_motion_query!
5 changes: 2 additions & 3 deletions app/controllers/main_controller.rb
Expand Up @@ -88,12 +88,11 @@ def init_buttons
end

rmq.append(UIButton, :collection_button).on(:touch_up) do
controller = CollectionController.new
rmq.view_controller.navigationController.pushViewController(controller, animated: true)
rmq.view_controller.navigationController.pushViewController(CollectionController.new, animated: true)
end

rmq.append(UIButton, :table_button).on(:touch_up) do
rmq.view_controller.navigationController.pushViewController(controller, animated: true)
rmq.view_controller.navigationController.pushViewController(TableController.new, animated: true)
end

rmq.append(UIButton, :present_button).on(:touch_up) do
Expand Down

0 comments on commit 0f3e1d0

Please sign in to comment.