This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| it "should select all cells and go back" do | |
| wait 0.5 do #Wait for the view to load | |
| ips = [] | |
| (1..@screen.table_view.numberOfSections-1).to_a.each do |section| # (skip the first section) | |
| rows = @screen.table_view.numberOfRowsInSection(section) | |
| (0..rows-1).to_a.each do |row| | |
| ips << NSIndexPath.indexPathForRow(row, inSection:section) | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class CreateStates < ActiveRecord::Migration | |
| def change | |
| create_table :states do |t| | |
| t.string :name | |
| t.string :abbrev | |
| t.timestamps | |
| end | |
| end | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class StatesScreen < PM::TableScreen | |
| title "States" | |
| def will_appear | |
| view.backgroundView = nil | |
| view.backgroundColor = UIColor.redColor | |
| end | |
| def table_style |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env ruby | |
| # fix-xcode | |
| # Mark Rickert <mjar81@gmail.com> | |
| # Symlinks all your old SDKs to Xcode.app every time it is updated. | |
| # Create a directory called /SDKs and run this script. | |
| # | |
| # Each time you upgrade Xcode, run fix-xcode. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # wo = work on | |
| wo() { | |
| code_dir=~/Dropbox # replace it with your development directory | |
| cd $(find $code_dir -type d -maxdepth 3 | grep -i $* | grep -Ev Pods --max-count=1) | |
| } |
OlderNewer