ryanlntn/medic

View on GitHub
app/controllers/find_sources_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class FindSourcesController < BaseController

  def viewDidLoad
    super

    self.view.backgroundColor = UIColor.blueColor
    self.title = "FindSources"
  end

  def viewDidAppear(animated)
    Medic.find_sources :step_count do |sources|
      sources.each do |source|
        NSLog source
      end
    end
  end

end