├── .gitignore ├── .rvmrc ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Rakefile ├── app ├── app_delegate.rb └── location_tracker_controller.rb ├── doc └── screen_shot.png ├── push-notification-server.rb └── spec └── main_spec.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantino/post_location/HEAD/.gitignore -------------------------------------------------------------------------------- /.rvmrc: -------------------------------------------------------------------------------- 1 | rvm use 1.9.3-p286@post_location --create 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantino/post_location/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantino/post_location/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantino/post_location/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantino/post_location/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantino/post_location/HEAD/Rakefile -------------------------------------------------------------------------------- /app/app_delegate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantino/post_location/HEAD/app/app_delegate.rb -------------------------------------------------------------------------------- /app/location_tracker_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantino/post_location/HEAD/app/location_tracker_controller.rb -------------------------------------------------------------------------------- /doc/screen_shot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantino/post_location/HEAD/doc/screen_shot.png -------------------------------------------------------------------------------- /push-notification-server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantino/post_location/HEAD/push-notification-server.rb -------------------------------------------------------------------------------- /spec/main_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantino/post_location/HEAD/spec/main_spec.rb --------------------------------------------------------------------------------