Adds a set of scripts which can be used to generate indexes for CDNs
diff --git a/Scripts/README.md b/Scripts/README.md
new file mode 100644
index 0000000..8a74d97
--- /dev/null
+++ b/Scripts/README.md
@@ -0,0 +1,5 @@
+These scripts are a part of updating CocoaPods to work with a CDN instead of only via
+`git` repos.
+
+- [`add_indexes.sh`](add_indexes.sh) - Adds an index for every Pod, this should probably only need to be used once
+- [`add_incremental_index.sh`](add_incremental_index.sh) - Uses git to update only the last x Pods which have changed
diff --git a/Scripts/add_incremental_index.sh b/Scripts/add_incremental_index.sh
new file mode 100644
index 0000000..3d209d3
--- /dev/null
+++ b/Scripts/add_incremental_index.sh
@@ -0,0 +1,17 @@
+# bash-3.2$ git diff --name-only HEAD HEAD~5 | cut -d / -f 1,2,3,4,5
+#
+# Specs/0/f/b/DateTimePicker
+# Specs/1/9/4/Font
+# Specs/5/2/f/AlivcConan
+# Specs/6/3/5/BugBattle
+# Specs/e/a/1/SliceControl
+
+# Gets the last 5 commits, and passes in the folders that host those podspecs
+# then parse the 
+git diff --name-only HEAD HEAD~5 | cut -d / -f 1,2,3,4,5 | \
+  xargs -0 -I {} bash -c 'cd "{}"; ls -1 | grep -v "index.txt" > index.txt'
+
+# Loops through all known Podspec folders and pipes their name into a single all_pods.txt 
+# in the root.
+find . -mindepth 5 -maxdepth 5 -type d -not -wholename '**/.git/**/*' | \
+  cut -c15- | sort > all_pods.txt
diff --git a/Scripts/add_indexes.sh b/Scripts/add_indexes.sh
new file mode 100644
index 0000000..cd6b3eb
--- /dev/null
+++ b/Scripts/add_indexes.sh
@@ -0,0 +1,9 @@
+# Loops through all known Podspec roots, then creates an index.txt in that folder
+# with the contents of an ls.
+find . -mindepth 5 -maxdepth 5 -type d -not -wholename '**/.git/**/*' -print0 | \
+  xargs -0 -I {} bash -c 'cd "{}"; ls -1 | grep -v "index.txt" > index.txt'
+
+# Loops through all known Podspec folders and pipes their name into a single all_pods.txt 
+# in the root.
+find . -mindepth 5 -maxdepth 5 -type d -not -wholename '**/.git/**/*' | \
+  cut -c15- | sort > all_pods.txt