Skip to content

Commit

Permalink
Initial import of benchmarking app
Browse files Browse the repository at this point in the history
  • Loading branch information
blakewatters committed Apr 24, 2013
0 parents commit 250732a
Show file tree
Hide file tree
Showing 34 changed files with 1,892 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Build
Pods
xcuserdata
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "RestKit"]
path = RestKit
url = git://github.com/RestKit/RestKit.git
7 changes: 7 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
source "http://rubygems.org"

gem "rake", "~> 10.0.0"
gem "bundler", "~> 1.3.0"
gem 'cocoapods', "~> 0.18.1"
gem 'forgery', '~> 0.5.0'
gem 'oj', '~> 2.0.0'
63 changes: 63 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
GEM
remote: http://rubygems.org/
specs:
activesupport (3.2.13)
i18n (= 0.6.1)
multi_json (~> 1.0)
addressable (2.3.4)
claide (0.2.0)
cocoapods (0.18.1)
activesupport (~> 3.2.13)
claide (~> 0.2.0)
cocoapods-core (= 0.18.1)
cocoapods-downloader (~> 0.1.0)
colored (~> 1.2)
escape (~> 0.0.4)
faraday (~> 0.8.1)
json (~> 1.7.3)
octokit (~> 1.7)
open4 (~> 1.3.0)
rake (~> 10.0.0)
xcodeproj (~> 0.5.5)
cocoapods-core (0.18.1)
activesupport (~> 3.2.13)
faraday (~> 0.8.1)
octokit (~> 1.7)
rake (~> 10.0.0)
cocoapods-downloader (0.1.0)
colored (1.2)
escape (0.0.4)
faraday (0.8.7)
multipart-post (~> 1.1)
faraday_middleware (0.9.0)
faraday (>= 0.7.4, < 0.9)
forgery (0.5.0)
hashie (2.0.4)
i18n (0.6.1)
json (1.7.7)
multi_json (1.7.2)
multipart-post (1.2.0)
netrc (0.7.7)
octokit (1.24.0)
addressable (~> 2.2)
faraday (~> 0.8)
faraday_middleware (~> 0.9)
hashie (~> 2.0)
multi_json (~> 1.3)
netrc (~> 0.7.7)
oj (2.0.11)
open4 (1.3.0)
rake (10.0.4)
xcodeproj (0.5.5)
activesupport (~> 3.2.13)
colored (~> 1.2)

PLATFORMS
ruby

DEPENDENCIES
bundler (~> 1.3.0)
cocoapods (~> 0.18.1)
forgery (~> 0.5.0)
oj (~> 2.0.0)
rake (~> 10.0.0)
1 change: 1 addition & 0 deletions JSON/employees.json

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions Podfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
platform :ios, '6.0'

pod 'RestKit/Core', :local => 'RestKit'
pod 'RestKit/Testing', :local => 'RestKit'
34 changes: 34 additions & 0 deletions Podfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
PODS:
- AFNetworking (1.2.1)
- RestKit/Core (0.20.1dev):
- RestKit/CoreData
- RestKit/Network
- RestKit/ObjectMapping
- RestKit/CoreData (0.20.1dev)
- RestKit/Network (0.20.1dev):
- AFNetworking (~> 1.2.0)
- RestKit/ObjectMapping
- RestKit/Support
- SOCKit
- RestKit/ObjectMapping (0.20.1dev)
- RestKit/Support (0.20.1dev):
- TransitionKit (= 1.1.0)
- RestKit/Testing (0.20.1dev)
- SOCKit (1.1)
- TransitionKit (1.1.0)

DEPENDENCIES:
- RestKit/Core (from `RestKit`)
- RestKit/Testing (from `RestKit`)

EXTERNAL SOURCES:
RestKit:
:local: RestKit

SPEC CHECKSUMS:
AFNetworking: 616da0028916ce296f5c3cef74e5552eb4e10e13
RestKit: 1ecd173c7cc8ea2b37c22b9909d5dde225331378
SOCKit: ed67aeeca4a697b63a933229e53f4670d5b9300f
TransitionKit: 1624e84f252d5cd26900be28ccb73c69fbe63f8a

COCOAPODS: 0.18.1
Loading

0 comments on commit 250732a

Please sign in to comment.