diff --git a/lib/cocoapods-core/github.rb b/lib/cocoapods-core/github.rb index f5555e318..0814e9688 100644 --- a/lib/cocoapods-core/github.rb +++ b/lib/cocoapods-core/github.rb @@ -54,11 +54,34 @@ def self.branches(url) end end - private + # Returns the contents of a file or directory in a repository. + # + # @param [String] url @see #repo + # + # @param [#to_s] path + # The path for which the contents are needed. + # + # @param [String] branch + # The branch for which to fetch the contents of the path. + # + # @return [Array] The list of the files and of the directories if the given + # path is a directory. + # + # @return [Hash] The contents of the file (usually base64 encoded). + # + def self.contents(url, path = nil, branch = nil) + if repo_id = normalized_repo_id(url) + request_url = "https://api.github.com/repos/#{repo_id}/contents" + request_url << "/#{path}" if path + request_url << "?ref=#{branch}" if branch + peform_request(request_url) + end + end - #-------------------------------------------------------------------------# + private # @!group Private helpers + #-------------------------------------------------------------------------# # Returns the repo ID as it is or converting a GitHub URL. # diff --git a/lib/cocoapods-core/source.rb b/lib/cocoapods-core/source.rb index d600d4f46..c7692c85e 100644 --- a/lib/cocoapods-core/source.rb +++ b/lib/cocoapods-core/source.rb @@ -1,6 +1,9 @@ require 'cocoapods-core/source/acceptor' require 'cocoapods-core/source/aggregate' require 'cocoapods-core/source/health_reporter' +require 'cocoapods-core/source/abstract_data_provider' +require 'cocoapods-core/source/file_system_data_provider' +require 'cocoapods-core/source/github_data_provider' module Pod @@ -16,20 +19,31 @@ module Pod # class Source - # @return [Pathname] the location of the repo of the source. + # @return [AbstractDataProvider] the data provider for this source. # - attr_reader :repo + attr_accessor :data_provider # @param [Pathname, String] repo @see #repo. # - def initialize(repo) - @repo = Pathname.new(repo) + def initialize(repo = nil) + # TODO: Temporary solution to aide the transition + if repo.is_a?(String) || repo.is_a?(Pathname) + @data_provider = FileSystemDataProvider.new(repo) + else + @data_provider = repo + end end - # @return [String] the name of the source. + # @return [String] The name of the source. # def name - repo.basename.to_s + data_provider.name + end + + # @return [String] The type of the source. + # + def type + data_provider.type end alias_method :to_s, :name @@ -45,37 +59,27 @@ def <=>(other) name <=> other.name end - #-------------------------------------------------------------------------# + # @return [String] A description suitable for debugging. + # + def inspect + "#<#{self.class} name:#{name} type:#{type}>" + end + + public # @!group Queering the source + #-------------------------------------------------------------------------# # @return [Array] the list of the name of all the Pods. # - # @note Using Pathname#children is sensibly slower. # def pods - specs_dir_as_string = specs_dir.to_s - Dir.entries(specs_dir).select do |entry| - valid_name = !(entry == '.' || entry == '..' || entry == '.git') - valid_name && File.directory?(File.join(specs_dir_as_string, entry)) + pods = data_provider.pods + unless pods + raise Informative, "Unable to find the #{data_provider.type} source " \ + "named: `#{data_provider.name}`" end - end - - # Returns the set for the Pod with the given name. - # - # @param [String] pod_name - # The name of the Pod. - # - # @return [Sets] the set. - # - def set(pod_name) - Specification::Set.new(pod_name, self) - end - - # @return [Array] the sets of all the Pods. - # - def pod_sets - pods.map { |pod_name| set(pod_name) } + pods end # @return [Array] all the available versions for the Pod, sorted @@ -85,12 +89,8 @@ def pod_sets # the name of the Pod. # def versions(name) - pod_dir = specs_dir + name - return unless pod_dir.exist? - pod_dir.children.map do |v| - basename = v.basename.to_s - Version.new(basename) if v.directory? && basename[0, 1] != '.' - end.compact.sort.reverse + versions = data_provider.versions(name) + versions.map { |version| Version.new(version) } if versions end # @return [Specification] the specification for a given version of Pod. @@ -98,30 +98,12 @@ def versions(name) # @param @see specification_path # def specification(name, version) - Specification.from_file(specification_path(name, version)) - end - - # Returns the path of the specification with the given name and version. - # - # @param [String] name - # the name of the Pod. - # - # @param [Version,String] version - # the version for the specification. - # - # @return [Pathname] The path of the specification. - # - def specification_path(name, version) - path = specs_dir + name + version.to_s - specification_path = path + "#{name}.podspec.yaml" - unless specification_path.exist? - specification_path = path + "#{name}.podspec" - end - unless specification_path.exist? - raise StandardError, "Unable to find the specification #{name} " \ - "(#{version}) in the #{name} source." + spec = data_provider.specification(name, version.to_s) + unless spec + raise Informative, "Unable to find the specification for #{name} " \ + "#{version} in the `#{data_provider.name}` source." end - specification_path + spec end # @return [Array] all the specifications contained by the @@ -139,9 +121,43 @@ def all_specs specs.flatten.compact end - #-------------------------------------------------------------------------# + # Returns the set for the Pod with the given name. + # + # @param [String] pod_name + # The name of the Pod. + # + # @return [Sets] the set. + # + def set(pod_name) + Specification::Set.new(pod_name, self) + end + + # @return [Array] the sets of all the Pods. + # + def pod_sets + pods.map { |pod_name| set(pod_name) } + end + + # Returns the path of the specification with the given name and version. + # + # @param [String] name + # the name of the Pod. + # + # @param [Version,String] version + # the version for the specification. + # + # @return [Pathname] The path of the specification. + # + # @todo Remove. + # + def specification_path(name, version) + data_provider.specification_path(name, version) + end + + public # @!group Searching the source + #-------------------------------------------------------------------------# # @return [Set] a set for a given dependency. The set is identified by the # name of the dependency and takes into account subspecs. @@ -171,18 +187,22 @@ def search(query) # @note full text search requires to load the specification for each pod, # hence is considerably slower. # + # @todo Rename to #search + # def search_by_name(query, full_text_search = false) if full_text_search - pod_sets.map do |set| - begin - s = set.specification - text = "#{s.name} #{s.authors} #{s.summary} #{s.description}" - rescue - CoreUI.warn "Skipping `#{set.name}` because the podspec " \ - "contains errors." + if data_provider.is_a?(FileSystemDataProvider) + names = pods.select do |pod| + if spec = load_spec_gracefully(pod) + text = "#{spec.name} #{spec.authors}" + text << " #{spec.summary} #{spec.description}" + text.downcase.include?(query.downcase) + end end - set if text && text.downcase.include?(query.downcase) - end.compact + else + [] + end + names.map { |pod_name| set(pod_name) } else names = pods.select { |name| name.downcase.include?(query.downcase) } names.map { |pod_name| set(pod_name) } @@ -205,9 +225,10 @@ def fuzzy_search(query) end end - #-------------------------------------------------------------------------# + public # @!group Representations + #-------------------------------------------------------------------------# # @return [Hash{String=>{String=>Specification}}] the static representation # of all the specifications grouped first by name and then by @@ -231,29 +252,26 @@ def to_yaml private - #-------------------------------------------------------------------------# - # @group Private Helpers + #-------------------------------------------------------------------------# - # @return [Pathname] The directory where the specs are stored. + # Loads the specification for the given Pod gracefully. # - # @note In previous versions of CocoaPods they used to be stored in - # the root of the repo. This lead to issues, especially with - # the GitHub interface and now the are stored in a dedicated - # folder. + # @param [String] name + # the name of the Pod. # - def specs_dir - unless @specs_dir - specs_sub_dir = repo + 'Specs' - if specs_sub_dir.exist? - @specs_dir = specs_sub_dir - elsif repo.exist? - @specs_dir = repo - else - raise Informative, "Unable to find a source named: `#{name}`" - end - end - @specs_dir + # @return [Specification] The specification for the last version of the + # Pod. + # @return [Nil] If the spec could not be loaded. + # + def load_spec_gracefully(name) + versions = versions(name) + version = versions.sort.last if versions + specification(name, version) if version + rescue Informative + Pod::CoreUI.warn "Skipping `#{name}` because the podspec " \ + "contains errors." + nil end #-------------------------------------------------------------------------# diff --git a/lib/cocoapods-core/source/abstract_data_provider.rb b/lib/cocoapods-core/source/abstract_data_provider.rb new file mode 100644 index 000000000..b4c11c4b3 --- /dev/null +++ b/lib/cocoapods-core/source/abstract_data_provider.rb @@ -0,0 +1,71 @@ +module Pod + class Source + + # Defines the required and the optional methods of a data provider. + # + class AbstractDataProvider + + public + + # @group Required methods + #-----------------------------------------------------------------------# + + # @return [String] The name of the source. + # + def name + raise StandardError, "Abstract method." + end + + # @return [String] The user friendly type of the source. + # + def type + raise StandardError, "Abstract method." + end + + # @return [Array] The list of the name of all the Pods known to + # the Source. + # + def pods + raise StandardError, "Abstract method." + end + + # @return [Array] All the available versions of a given Pod, + # sorted from highest to lowest. + # + # @param [String] name + # The name of the Pod. + # + def versions(name) + raise StandardError, "Abstract method." + end + + # @return [Specification] The specification for a given version of a Pod. + # + # @param [String] name + # The name of the Pod. + # + # @param [String] version + # The version of the Pod. + # + def specification(name, version) + raise StandardError, "Abstract method." + end + + # @return [Specification] The contents of the specification for a given + # version of a Pod. + # + # @param [String] name + # the name of the Pod. + # + # @param [String] version + # the version of the Pod. + # + def specification_contents(name, version) + raise StandardError, "Abstract method." + end + + #-----------------------------------------------------------------------# + + end + end +end diff --git a/lib/cocoapods-core/source/file_system_data_provider.rb b/lib/cocoapods-core/source/file_system_data_provider.rb new file mode 100644 index 000000000..776ef5848 --- /dev/null +++ b/lib/cocoapods-core/source/file_system_data_provider.rb @@ -0,0 +1,150 @@ +module Pod + class Source + + # Data provider for a `Pod::Source` backed by a repository hosted in the + # file system. + # + class FileSystemDataProvider < AbstractDataProvider + + # @return [Pathname] The path where the source is stored. + # + attr_reader :repo + + # @param [Pathname, String] repo @see #repo. + # + def initialize(repo) + @repo = Pathname.new(repo) + end + + public + + # @group Required methods + #-----------------------------------------------------------------------# + + # @return [String] The name of the source. + # + def name + repo.basename.to_s + end + + # @return [String] The user friendly type of the source. + # + def type + "file system" + end + + # @return [Array] The list of the name of all the Pods known to + # the Source. + # + # @note Using Pathname#children is sensibly slower. + # + def pods + return nil unless specs_dir + specs_dir_as_string = specs_dir.to_s + Dir.entries(specs_dir).select do |entry| + valid_name = !(entry == '.' || entry == '..' || entry == '.git') + valid_name && File.directory?(File.join(specs_dir_as_string, entry)) + end.sort + end + + # @return [Array] All the available versions of a given Pod, + # sorted from highest to lowest. + # + # @param [String] name + # The name of the Pod. + # + def versions(name) + return nil unless specs_dir + raise ArgumentError, "No name" unless name + pod_dir = specs_dir + name + return unless pod_dir.exist? + pod_dir.children.map do |v| + basename = v.basename.to_s + basename if v.directory? && basename[0, 1] != '.' + end.compact.sort.reverse + end + + # @return [Specification] The specification for a given version of a Pod. + # + # @param [String] name + # The name of the Pod. + # + # @param [String] version + # The version of the Pod. + # + def specification(name, version) + path = specification_path(name, version) + Pod::Specification.from_file(path) if path && path.exist? + end + + # @return [Specification] The contents of the specification for a given + # version of a Pod. + # + # @param [String] name + # the name of the Pod. + # + # @param [String] version + # the version of the Pod. + # + def specification_contents(name, version) + path = specification_path(name, version) + File.open(path, 'r:utf-8') { |f| f.read } if path && path.exist? + end + + public + + # @group Other methods + #-----------------------------------------------------------------------# + + # Returns the path of the specification with the given name and version. + # + # @param [String] name + # the name of the Pod. + # + # @param [Version,String] version + # the version for the specification. + # + # @return [Pathname] The path of the specification. + # + def specification_path(name, version) + raise ArgumentError, "No name" unless name + raise ArgumentError, "No version" unless version + return nil unless specs_dir + path = specs_dir + name + version.to_s + specification_path = path + "#{name}.podspec.yaml" + specification_path.exist? + unless specification_path.exist? + specification_path = path + "#{name}.podspec" + end + specification_path + end + + private + + # @group Private Helpers + #-----------------------------------------------------------------------# + + # @return [Pathname] The directory where the specs are stored. + # + # @note In previous versions of CocoaPods they used to be stored in + # the root of the repo. This lead to issues, especially with + # the GitHub interface and now the are stored in a dedicated + # folder. + # + def specs_dir + unless @specs_dir + specs_sub_dir = repo + 'Specs' + if specs_sub_dir.exist? + @specs_dir = specs_sub_dir + elsif repo.exist? + @specs_dir = repo + end + end + @specs_dir + end + + #-----------------------------------------------------------------------# + + end + end +end diff --git a/lib/cocoapods-core/source/github_data_provider.rb b/lib/cocoapods-core/source/github_data_provider.rb new file mode 100644 index 000000000..eb0db212f --- /dev/null +++ b/lib/cocoapods-core/source/github_data_provider.rb @@ -0,0 +1,143 @@ +module Pod + class Source + + # Data provider for a `Pod::Source` backed by a repository hosted on GitHub + # and accessed via the HTTP API. Only pure YAML repos using the `Specs` + # subdir to store the specifications are supported. + # + class GitHubDataProvider < AbstractDataProvider + + # @return [String] The identifier of the repository (user name and repo + # name) or the full URL of the repo. + # + attr_reader :repo_id + + # @return [String] The branch of the repo if the default one shouldn't be + # used. + # + attr_reader :branch + + # @param [String] repo_id @see repo_id + # @param [String] branch @see branch + # + def initialize(repo_id, branch = nil) + @repo_id = repo_id + @branch = branch + end + + public + + # @group Data Source + #-----------------------------------------------------------------------# + + # @return [String] The name of the Source. User name and repo. + # + def name + GitHub.normalized_repo_id(repo_id) + end + + # @return [String] The user friendly type of the source. + # + def type + "GitHub API" + end + + # @return [Array] The list of the name of all the Pods known to + # the Source. + # + def pods + root_contents = get_github_contents("Specs") + pods = dir_names(root_contents) + pods.sort if pods + end + + # @return [Array] All the available versions of a given Pod, + # sorted from highest to lowest. + # + # @param [String] name + # The name of the Pod. + # + def versions(name) + raise ArgumentError, "No name" unless name + contents = get_github_contents("Specs/#{name}") + dir_names(contents) + end + + # @return [Specification] The specification for a given version of a Pod. + # + # @param [String] name + # The name of the Pod. + # + # @param [String] version + # The version of the Pod. + # + def specification(name, version) + raise ArgumentError, "No name" unless name + raise ArgumentError, "No version" unless version + spec_content = specification_contents(name, version) + if spec_content + Pod::Specification.from_yaml(spec_content) + end + end + + # @return [Specification] The contents of the specification for a given + # version of a Pod. + # + # @param [String] name + # the name of the Pod. + # + # @param [String] version + # the version of the Pod. + # + def specification_contents(name, version) + raise ArgumentError, "No name" unless name + raise ArgumentError, "No version" unless version + path = "Specs/#{name}/#{version}/#{name}.podspec.yaml" + file_contents = get_github_contents(path) + if file_contents + if file_contents['encoding'] == 'base64' + require "base64" + Base64.decode64(file_contents['content']) + end + end + end + + private + + # @group Private Helpers + #-----------------------------------------------------------------------# + + # Performs a get request with the given URL. + # + # @param [String] url + # The URL of the resource. + # + # @return [Array, Hash] The information of the resource as Ruby objects. + # + def get_github_contents(path = nil) + Pod::GitHub.contents(repo_id, path, branch) + end + + # @param [Array] [Array] The contents of a directory. + # + # @return [Array] Returns the list of the directories given the + # contents returned for the API of a directory. + # + # @return [Nil] If the directory was not found or the contents is not an + # array. + # + def dir_names(contents) + if contents.is_a?(Array) + contents.map do |entry| + if entry['type'] == 'dir' + entry['name'] + end + end.compact + end + end + + #-----------------------------------------------------------------------# + + end + end +end diff --git a/lib/cocoapods-core/source/health_reporter.rb b/lib/cocoapods-core/source/health_reporter.rb index 392f4306d..bf85c056f 100644 --- a/lib/cocoapods-core/source/health_reporter.rb +++ b/lib/cocoapods-core/source/health_reporter.rb @@ -124,7 +124,7 @@ def check_spec_path(name, version, spec) # @return [void] # def check_stray_specs - all_paths = Pathname.glob(source.repo + '**/*.podspec{,.yaml}') + all_paths = Pathname.glob(source.data_provider.repo + '**/*.podspec{,.yaml}') stray_specs = all_paths - report.analyzed_paths stray_specs.each do |path| report.add_message(:error, "Stray spec", path) diff --git a/lib/cocoapods-core/specification/set/statistics.rb b/lib/cocoapods-core/specification/set/statistics.rb index 4c14e469e..0a85af0a2 100644 --- a/lib/cocoapods-core/specification/set/statistics.rb +++ b/lib/cocoapods-core/specification/set/statistics.rb @@ -220,7 +220,7 @@ def save_cache def compute_creation_date(set) date = get_value(set, :creation_date) unless date - Dir.chdir(set.sources.first.repo) do + Dir.chdir(set.sources.first.data_provider.repo) do git_log = `git log --first-parent --format=%ct "#{set.name}"` creation_date = git_log.split("\n").last.to_i date = Time.at(creation_date) diff --git a/spec/fixtures/vcr_cassettes/GitHub.yml b/spec/fixtures/vcr_cassettes/GitHub.yml index a611c873e..ebaf3e762 100644 --- a/spec/fixtures/vcr_cassettes/GitHub.yml +++ b/spec/fixtures/vcr_cassettes/GitHub.yml @@ -21,7 +21,7 @@ http_interactions: Server: - GitHub.com Date: - - Mon, 02 Dec 2013 03:08:04 GMT + - Mon, 02 Dec 2013 03:19:43 GMT Content-Type: - application/json; charset=utf-8 Transfer-Encoding: @@ -31,15 +31,15 @@ http_interactions: X-Ratelimit-Limit: - '60' X-Ratelimit-Remaining: - - '56' + - '47' X-Ratelimit-Reset: - '1385957280' Cache-Control: - public, max-age=60, s-maxage=60 Last-Modified: - - Mon, 02 Dec 2013 03:04:32 GMT + - Mon, 02 Dec 2013 03:19:21 GMT Etag: - - '"7c5326bd9d92429d246d5d8c00dc5aa7"' + - '"d040a6623bb6f261d536d7b096f6425d"' Vary: - Accept - Accept-Encoding @@ -55,12 +55,12 @@ http_interactions: Access-Control-Allow-Origin: - '*' X-Github-Request-Id: - - 4F00B20F:4DED:163085:529BF994 + - 4F00B20F:5406:C3DA37D:529BFC4F body: encoding: UTF-8 - string: '{"login":"CocoaPods","id":1189714,"avatar_url":"https://1.gravatar.com/avatar/8b374a26ac900a5c7b83a8767faff333?d=https%3A%2F%2Fidenticons.github.com%2F1fd372e5b4f8bdd18cd73236213f3abb.png&r=x","gravatar_id":"8b374a26ac900a5c7b83a8767faff333","url":"https://api.github.com/users/CocoaPods","html_url":"https://github.com/CocoaPods","followers_url":"https://api.github.com/users/CocoaPods/followers","following_url":"https://api.github.com/users/CocoaPods/following{/other_user}","gists_url":"https://api.github.com/users/CocoaPods/gists{/gist_id}","starred_url":"https://api.github.com/users/CocoaPods/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/CocoaPods/subscriptions","organizations_url":"https://api.github.com/users/CocoaPods/orgs","repos_url":"https://api.github.com/users/CocoaPods/repos","events_url":"https://api.github.com/users/CocoaPods/events{/privacy}","received_events_url":"https://api.github.com/users/CocoaPods/received_events","type":"Organization","site_admin":false,"name":"","company":null,"blog":"http://twitter.com/CocoaPods","location":"","email":null,"hireable":null,"bio":null,"public_repos":21,"followers":0,"following":0,"created_at":"2011-11-12T01:44:28Z","updated_at":"2013-12-02T03:04:32Z","public_gists":0}' + string: '{"login":"CocoaPods","id":1189714,"avatar_url":"https://0.gravatar.com/avatar/8b374a26ac900a5c7b83a8767faff333?d=https%3A%2F%2Fidenticons.github.com%2F1fd372e5b4f8bdd18cd73236213f3abb.png&r=x","gravatar_id":"8b374a26ac900a5c7b83a8767faff333","url":"https://api.github.com/users/CocoaPods","html_url":"https://github.com/CocoaPods","followers_url":"https://api.github.com/users/CocoaPods/followers","following_url":"https://api.github.com/users/CocoaPods/following{/other_user}","gists_url":"https://api.github.com/users/CocoaPods/gists{/gist_id}","starred_url":"https://api.github.com/users/CocoaPods/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/CocoaPods/subscriptions","organizations_url":"https://api.github.com/users/CocoaPods/orgs","repos_url":"https://api.github.com/users/CocoaPods/repos","events_url":"https://api.github.com/users/CocoaPods/events{/privacy}","received_events_url":"https://api.github.com/users/CocoaPods/received_events","type":"Organization","site_admin":false,"name":"","company":null,"blog":"http://twitter.com/CocoaPods","location":"","email":null,"hireable":null,"bio":null,"public_repos":21,"followers":0,"following":0,"created_at":"2011-11-12T01:44:28Z","updated_at":"2013-12-02T03:19:21Z","public_gists":0}' http_version: - recorded_at: Mon, 02 Dec 2013 03:08:04 GMT + recorded_at: Mon, 02 Dec 2013 03:19:43 GMT - request: method: get uri: https://api.github.com/repos/CocoaPods/CocoaPods @@ -82,7 +82,7 @@ http_interactions: Server: - GitHub.com Date: - - Mon, 02 Dec 2013 03:08:05 GMT + - Mon, 02 Dec 2013 03:19:44 GMT Content-Type: - application/json; charset=utf-8 Transfer-Encoding: @@ -92,7 +92,7 @@ http_interactions: X-Ratelimit-Limit: - '60' X-Ratelimit-Remaining: - - '55' + - '46' X-Ratelimit-Reset: - '1385957280' Cache-Control: @@ -116,13 +116,13 @@ http_interactions: Access-Control-Allow-Origin: - '*' X-Github-Request-Id: - - 4F00B20F:4DF3:48CEC0C:529BF995 + - 4F00B20F:5406:C3DA474:529BFC4F body: encoding: UTF-8 string: '{"id":2203645,"name":"CocoaPods","full_name":"CocoaPods/CocoaPods","owner":{"login":"CocoaPods","id":1189714,"avatar_url":"https://2.gravatar.com/avatar/8b374a26ac900a5c7b83a8767faff333?d=https%3A%2F%2Fidenticons.github.com%2F1fd372e5b4f8bdd18cd73236213f3abb.png&r=x","gravatar_id":"8b374a26ac900a5c7b83a8767faff333","url":"https://api.github.com/users/CocoaPods","html_url":"https://github.com/CocoaPods","followers_url":"https://api.github.com/users/CocoaPods/followers","following_url":"https://api.github.com/users/CocoaPods/following{/other_user}","gists_url":"https://api.github.com/users/CocoaPods/gists{/gist_id}","starred_url":"https://api.github.com/users/CocoaPods/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/CocoaPods/subscriptions","organizations_url":"https://api.github.com/users/CocoaPods/orgs","repos_url":"https://api.github.com/users/CocoaPods/repos","events_url":"https://api.github.com/users/CocoaPods/events{/privacy}","received_events_url":"https://api.github.com/users/CocoaPods/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/CocoaPods/CocoaPods","description":"The Objective-C library dependency manager.","fork":false,"url":"https://api.github.com/repos/CocoaPods/CocoaPods","forks_url":"https://api.github.com/repos/CocoaPods/CocoaPods/forks","keys_url":"https://api.github.com/repos/CocoaPods/CocoaPods/keys{/key_id}","collaborators_url":"https://api.github.com/repos/CocoaPods/CocoaPods/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/CocoaPods/CocoaPods/teams","hooks_url":"https://api.github.com/repos/CocoaPods/CocoaPods/hooks","issue_events_url":"https://api.github.com/repos/CocoaPods/CocoaPods/issues/events{/number}","events_url":"https://api.github.com/repos/CocoaPods/CocoaPods/events","assignees_url":"https://api.github.com/repos/CocoaPods/CocoaPods/assignees{/user}","branches_url":"https://api.github.com/repos/CocoaPods/CocoaPods/branches{/branch}","tags_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tags","blobs_url":"https://api.github.com/repos/CocoaPods/CocoaPods/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/CocoaPods/CocoaPods/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/CocoaPods/CocoaPods/git/refs{/sha}","trees_url":"https://api.github.com/repos/CocoaPods/CocoaPods/git/trees{/sha}","statuses_url":"https://api.github.com/repos/CocoaPods/CocoaPods/statuses/{sha}","languages_url":"https://api.github.com/repos/CocoaPods/CocoaPods/languages","stargazers_url":"https://api.github.com/repos/CocoaPods/CocoaPods/stargazers","contributors_url":"https://api.github.com/repos/CocoaPods/CocoaPods/contributors","subscribers_url":"https://api.github.com/repos/CocoaPods/CocoaPods/subscribers","subscription_url":"https://api.github.com/repos/CocoaPods/CocoaPods/subscription","commits_url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits{/sha}","git_commits_url":"https://api.github.com/repos/CocoaPods/CocoaPods/git/commits{/sha}","comments_url":"https://api.github.com/repos/CocoaPods/CocoaPods/comments{/number}","issue_comment_url":"https://api.github.com/repos/CocoaPods/CocoaPods/issues/comments/{number}","contents_url":"https://api.github.com/repos/CocoaPods/CocoaPods/contents/{+path}","compare_url":"https://api.github.com/repos/CocoaPods/CocoaPods/compare/{base}...{head}","merges_url":"https://api.github.com/repos/CocoaPods/CocoaPods/merges","archive_url":"https://api.github.com/repos/CocoaPods/CocoaPods/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/CocoaPods/CocoaPods/downloads","issues_url":"https://api.github.com/repos/CocoaPods/CocoaPods/issues{/number}","pulls_url":"https://api.github.com/repos/CocoaPods/CocoaPods/pulls{/number}","milestones_url":"https://api.github.com/repos/CocoaPods/CocoaPods/milestones{/number}","notifications_url":"https://api.github.com/repos/CocoaPods/CocoaPods/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/CocoaPods/CocoaPods/labels{/name}","releases_url":"https://api.github.com/repos/CocoaPods/CocoaPods/releases{/id}","created_at":"2011-08-14T00:10:53Z","updated_at":"2013-12-01T22:30:59Z","pushed_at":"2013-11-29T13:12:21Z","git_url":"git://github.com/CocoaPods/CocoaPods.git","ssh_url":"git@github.com:CocoaPods/CocoaPods.git","clone_url":"https://github.com/CocoaPods/CocoaPods.git","svn_url":"https://github.com/CocoaPods/CocoaPods","homepage":"cocoapods.org","size":41271,"stargazers_count":3394,"watchers_count":3394,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":true,"forks_count":486,"mirror_url":null,"open_issues_count":140,"forks":486,"open_issues":140,"watchers":3394,"default_branch":"master","master_branch":"master","organization":{"login":"CocoaPods","id":1189714,"avatar_url":"https://2.gravatar.com/avatar/8b374a26ac900a5c7b83a8767faff333?d=https%3A%2F%2Fidenticons.github.com%2F1fd372e5b4f8bdd18cd73236213f3abb.png&r=x","gravatar_id":"8b374a26ac900a5c7b83a8767faff333","url":"https://api.github.com/users/CocoaPods","html_url":"https://github.com/CocoaPods","followers_url":"https://api.github.com/users/CocoaPods/followers","following_url":"https://api.github.com/users/CocoaPods/following{/other_user}","gists_url":"https://api.github.com/users/CocoaPods/gists{/gist_id}","starred_url":"https://api.github.com/users/CocoaPods/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/CocoaPods/subscriptions","organizations_url":"https://api.github.com/users/CocoaPods/orgs","repos_url":"https://api.github.com/users/CocoaPods/repos","events_url":"https://api.github.com/users/CocoaPods/events{/privacy}","received_events_url":"https://api.github.com/users/CocoaPods/received_events","type":"Organization","site_admin":false},"network_count":486,"subscribers_count":236}' http_version: - recorded_at: Mon, 02 Dec 2013 03:08:05 GMT + recorded_at: Mon, 02 Dec 2013 03:19:44 GMT - request: method: get uri: https://api.github.com/repos/CocoaPods/CocoaPods/tags @@ -144,7 +144,7 @@ http_interactions: Server: - GitHub.com Date: - - Mon, 02 Dec 2013 03:08:05 GMT + - Mon, 02 Dec 2013 03:19:44 GMT Content-Type: - application/json; charset=utf-8 Transfer-Encoding: @@ -154,7 +154,7 @@ http_interactions: X-Ratelimit-Limit: - '60' X-Ratelimit-Remaining: - - '54' + - '45' X-Ratelimit-Reset: - '1385957280' Cache-Control: @@ -178,12 +178,12 @@ http_interactions: Access-Control-Allow-Origin: - '*' X-Github-Request-Id: - - 4F00B20F:4DF2:2F2F539:529BF995 + - 4F00B20F:5406:C3DA576:529BFC50 body: encoding: UTF-8 string: '[{"name":"0.28.0","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.28.0","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.28.0","commit":{"sha":"9f03ab9797ab7219aa7a5e0a85c0094d48ad2faa","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/9f03ab9797ab7219aa7a5e0a85c0094d48ad2faa"}},{"name":"0.27.1","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.27.1","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.27.1","commit":{"sha":"18f71e5310e6418d47cf490357e890b0f71e246f","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/18f71e5310e6418d47cf490357e890b0f71e246f"}},{"name":"0.27.0","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.27.0","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.27.0","commit":{"sha":"9bbfed7406f733fb01fa7f84486355ddfccb89a4","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/9bbfed7406f733fb01fa7f84486355ddfccb89a4"}},{"name":"0.26.2","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.26.2","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.26.2","commit":{"sha":"92fbcc54b6436036ddfd13e9d95bf0bf9e608ecd","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/92fbcc54b6436036ddfd13e9d95bf0bf9e608ecd"}},{"name":"0.26.1","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.26.1","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.26.1","commit":{"sha":"54607a2d59e944b06777466f4cc312f82275e46e","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/54607a2d59e944b06777466f4cc312f82275e46e"}},{"name":"0.26.0","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.26.0","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.26.0","commit":{"sha":"509254050bad7c141bb23455c7f0f2350f0e52b2","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/509254050bad7c141bb23455c7f0f2350f0e52b2"}},{"name":"0.25.0","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.25.0","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.25.0","commit":{"sha":"29012fd4c6434b37127aa86a81895c5a1e9f698e","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/29012fd4c6434b37127aa86a81895c5a1e9f698e"}},{"name":"0.24.0","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.24.0","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.24.0","commit":{"sha":"3c53800b739900c68ef2f47efe2a3c9be0178504","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/3c53800b739900c68ef2f47efe2a3c9be0178504"}},{"name":"0.23.0.rc1","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.23.0.rc1","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.23.0.rc1","commit":{"sha":"e0c97ae709e8762598e14a0650324d37f1bd678b","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/e0c97ae709e8762598e14a0650324d37f1bd678b"}},{"name":"0.23.0","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.23.0","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.23.0","commit":{"sha":"62fa623e948ae170920eb141f572f8b033114304","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/62fa623e948ae170920eb141f572f8b033114304"}},{"name":"0.22.3","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.22.3","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.22.3","commit":{"sha":"d083e9ad8cf637cbabc74145a53e8f695daf071e","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/d083e9ad8cf637cbabc74145a53e8f695daf071e"}},{"name":"0.22.2","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.22.2","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.22.2","commit":{"sha":"c2bb7cb3f38fad4e6117cb8b87fb625e5761f720","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/c2bb7cb3f38fad4e6117cb8b87fb625e5761f720"}},{"name":"0.22.1","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.22.1","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.22.1","commit":{"sha":"86a3c386899844148a53146abddd8aa2bc5c83b4","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/86a3c386899844148a53146abddd8aa2bc5c83b4"}},{"name":"0.22.0","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.22.0","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.22.0","commit":{"sha":"accc87263f5ab1a4d87521a16d01fcea9966232d","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/accc87263f5ab1a4d87521a16d01fcea9966232d"}},{"name":"0.21.0.rc1","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.21.0.rc1","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.21.0.rc1","commit":{"sha":"80555219d726eebf2c55a415c361bd366f99a4c5","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/80555219d726eebf2c55a415c361bd366f99a4c5"}},{"name":"0.21.0","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.21.0","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.21.0","commit":{"sha":"38613d3dbaa914ab9ddcf41d9bc8c46712bd6d32","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/38613d3dbaa914ab9ddcf41d9bc8c46712bd6d32"}},{"name":"0.20.2","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.20.2","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.20.2","commit":{"sha":"6c5687114abf487291c9fac8f6d2198d7b893cf3","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/6c5687114abf487291c9fac8f6d2198d7b893cf3"}},{"name":"0.20.1","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.20.1","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.20.1","commit":{"sha":"b78b48678ddefc0120e821cd61f4b5ab6800e0ef","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/b78b48678ddefc0120e821cd61f4b5ab6800e0ef"}},{"name":"0.20.0","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.20.0","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.20.0","commit":{"sha":"4a84aa3c84c961feb6ccd3dd26683db93618c15d","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/4a84aa3c84c961feb6ccd3dd26683db93618c15d"}},{"name":"0.19.1","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.19.1","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.19.1","commit":{"sha":"11dca2a847826c340943dd814dc0933cad4042b5","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/11dca2a847826c340943dd814dc0933cad4042b5"}},{"name":"0.19.0","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.19.0","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.19.0","commit":{"sha":"1fecb84588f63e112c2c17350e80f00895a32647","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/1fecb84588f63e112c2c17350e80f00895a32647"}},{"name":"0.18.1","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.18.1","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.18.1","commit":{"sha":"fdac8fb97c7140144d04c584d2361088d238e596","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/fdac8fb97c7140144d04c584d2361088d238e596"}},{"name":"0.18.0","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.18.0","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.18.0","commit":{"sha":"c42cbaafe98b8bc9fa81e6991a555b9ed5691140","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/c42cbaafe98b8bc9fa81e6991a555b9ed5691140"}},{"name":"0.17.2","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.17.2","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.17.2","commit":{"sha":"6215ab0d5297cf4f1a00a6df652808a9d9087b4c","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/6215ab0d5297cf4f1a00a6df652808a9d9087b4c"}},{"name":"0.17.1","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.17.1","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.17.1","commit":{"sha":"7f9ef2bac55c934b2ec6b66b3d3e9e360c4b6109","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/7f9ef2bac55c934b2ec6b66b3d3e9e360c4b6109"}},{"name":"0.17.0.rc7","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.17.0.rc7","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.17.0.rc7","commit":{"sha":"80de2e3f5f5982853157612a91fc5207f6beabac","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/80de2e3f5f5982853157612a91fc5207f6beabac"}},{"name":"0.17.0.rc6","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.17.0.rc6","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.17.0.rc6","commit":{"sha":"199d829031f7f08ded1067e3c5df2f2cd033fc7d","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/199d829031f7f08ded1067e3c5df2f2cd033fc7d"}},{"name":"0.17.0.rc5","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.17.0.rc5","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.17.0.rc5","commit":{"sha":"7557a4ec79eb811fcfeabedca7f1abb609a04673","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/7557a4ec79eb811fcfeabedca7f1abb609a04673"}},{"name":"0.17.0.rc4","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.17.0.rc4","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.17.0.rc4","commit":{"sha":"5ac6ea4e22c42c27928b9651c75c32c1b9546d12","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/5ac6ea4e22c42c27928b9651c75c32c1b9546d12"}},{"name":"0.17.0.rc3","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.17.0.rc3","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.17.0.rc3","commit":{"sha":"9e41e52c59a0097f1b3e8c66191ce089ddfe8b4f","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/9e41e52c59a0097f1b3e8c66191ce089ddfe8b4f"}},{"name":"0.17.0.rc2","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.17.0.rc2","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.17.0.rc2","commit":{"sha":"767be7283f34569760bd8bb115da87afd35e0b63","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/767be7283f34569760bd8bb115da87afd35e0b63"}},{"name":"0.17.0.rc1","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.17.0.rc1","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.17.0.rc1","commit":{"sha":"1fac3ce97c27e772842d587d0e94cd91b7a1a861","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/1fac3ce97c27e772842d587d0e94cd91b7a1a861"}},{"name":"0.17","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.17","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.17","commit":{"sha":"f211d33a99165ead8715a8883b73e5a5e50440ea","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/f211d33a99165ead8715a8883b73e5a5e50440ea"}},{"name":"0.16.4","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.16.4","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.16.4","commit":{"sha":"f610a1806f4951bf95801de2ad0d78ac993d787f","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/f610a1806f4951bf95801de2ad0d78ac993d787f"}},{"name":"0.16.3","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.16.3","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.16.3","commit":{"sha":"0e40a6c175aef40dc7e5b2b82cc9a311ad97ad72","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/0e40a6c175aef40dc7e5b2b82cc9a311ad97ad72"}},{"name":"0.16.2","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.16.2","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.16.2","commit":{"sha":"0be241d8dfb496c37b4a4b82cc8cda39748ef998","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/0be241d8dfb496c37b4a4b82cc8cda39748ef998"}},{"name":"0.16.1","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.16.1","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.16.1","commit":{"sha":"fbb58e4fa812da799383e76de6d538007542d7d7","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/fbb58e4fa812da799383e76de6d538007542d7d7"}},{"name":"0.16.0.rc5","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.16.0.rc5","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.16.0.rc5","commit":{"sha":"4948cda5d75060c8d932b1a95ccd399fff8e3112","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/4948cda5d75060c8d932b1a95ccd399fff8e3112"}},{"name":"0.16.0.rc4","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.16.0.rc4","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.16.0.rc4","commit":{"sha":"1ea7946882230556412f1f1d14ce4fc3119740d7","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/1ea7946882230556412f1f1d14ce4fc3119740d7"}},{"name":"0.16.0.rc3","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.16.0.rc3","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.16.0.rc3","commit":{"sha":"ebfaa7aeb66f2e4dcdbdbfdfe98e332f437f6e2e","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/ebfaa7aeb66f2e4dcdbdbfdfe98e332f437f6e2e"}},{"name":"0.16.0.rc2","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.16.0.rc2","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.16.0.rc2","commit":{"sha":"835a0faf69ab495f37307f5ce8926a99c39d4589","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/835a0faf69ab495f37307f5ce8926a99c39d4589"}},{"name":"0.16.0.rc1","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.16.0.rc1","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.16.0.rc1","commit":{"sha":"6ad31dd47c392995b80d396d23d07491527719a0","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/6ad31dd47c392995b80d396d23d07491527719a0"}},{"name":"0.16.0","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.16.0","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.16.0","commit":{"sha":"dc84ad04ec814c1b73c08de0b6f21afd381c0464","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/dc84ad04ec814c1b73c08de0b6f21afd381c0464"}},{"name":"0.15.2","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.15.2","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.15.2","commit":{"sha":"7ea1d46c11bbad971e484770ec130e226757b91c","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/7ea1d46c11bbad971e484770ec130e226757b91c"}},{"name":"0.15.1","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.15.1","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.15.1","commit":{"sha":"fe96a9785d1af98d8e61d42c5dd2c5f29b817a4e","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/fe96a9785d1af98d8e61d42c5dd2c5f29b817a4e"}},{"name":"0.15.0","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.15.0","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.15.0","commit":{"sha":"d434ccf4e8490c221ec4f402557f58c7bbf254ab","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/d434ccf4e8490c221ec4f402557f58c7bbf254ab"}},{"name":"0.14.0.rc2","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.14.0.rc2","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.14.0.rc2","commit":{"sha":"9986aa4c05d23c7461e0cdc0ba72efcfc48680d7","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/9986aa4c05d23c7461e0cdc0ba72efcfc48680d7"}},{"name":"0.14.0.rc1","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.14.0.rc1","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.14.0.rc1","commit":{"sha":"dce44e9399f1994d4809a2bbe9012f32f624a41a","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/dce44e9399f1994d4809a2bbe9012f32f624a41a"}},{"name":"0.14.0","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.14.0","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.14.0","commit":{"sha":"a2a9eab54f9a9e194f0457d9ef689944c902174d","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/a2a9eab54f9a9e194f0457d9ef689944c902174d"}},{"name":"0.13.0","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.13.0","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.13.0","commit":{"sha":"79089b43fa12bfb571d7471de83902feb295a5db","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/79089b43fa12bfb571d7471de83902feb295a5db"}},{"name":"0.12.0","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.12.0","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.12.0","commit":{"sha":"ac655b65fe80a87eb74bee94696b64bc0d0ad79f","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/ac655b65fe80a87eb74bee94696b64bc0d0ad79f"}},{"name":"0.11.1","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.11.1","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.11.1","commit":{"sha":"9f2992c452271045ffe0bed568aaafa189744f80","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/9f2992c452271045ffe0bed568aaafa189744f80"}},{"name":"0.11.0","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.11.0","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.11.0","commit":{"sha":"f6d08b079060b4e83aed7e1658bb8c9613caf0d8","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/f6d08b079060b4e83aed7e1658bb8c9613caf0d8"}},{"name":"0.10.0","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.10.0","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.10.0","commit":{"sha":"e74c3b01afaebd076969702e12fa611088f3adab","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/e74c3b01afaebd076969702e12fa611088f3adab"}},{"name":"0.9.2","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.9.2","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.9.2","commit":{"sha":"0920c423772defe8687d93943465fddecd333dab","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/0920c423772defe8687d93943465fddecd333dab"}},{"name":"0.9.1","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.9.1","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.9.1","commit":{"sha":"ea64987a655dd4812ded169d9057ebaa54094b18","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/ea64987a655dd4812ded169d9057ebaa54094b18"}},{"name":"0.9.0","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.9.0","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.9.0","commit":{"sha":"79bd3e24126ed93f10da969bae52c623d95fc4da","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/79bd3e24126ed93f10da969bae52c623d95fc4da"}},{"name":"0.8.0","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.8.0","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.8.0","commit":{"sha":"fd57c5c95cc84170879b303f0de1256e7b4c81e4","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/fd57c5c95cc84170879b303f0de1256e7b4c81e4"}},{"name":"0.7.0","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.7.0","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.7.0","commit":{"sha":"ae87f69afc608aef58704b81a12c72471302ceb3","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/ae87f69afc608aef58704b81a12c72471302ceb3"}},{"name":"0.6.1","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.6.1","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.6.1","commit":{"sha":"ebd1176cf85c60de9540072961e8a882aa856b4d","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/ebd1176cf85c60de9540072961e8a882aa856b4d"}},{"name":"0.6.0.rc5","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.6.0.rc5","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.6.0.rc5","commit":{"sha":"35b7495634a69ae926c9470ee99ba4045e9c77f8","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/35b7495634a69ae926c9470ee99ba4045e9c77f8"}},{"name":"0.6.0.rc4","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.6.0.rc4","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.6.0.rc4","commit":{"sha":"82c35f9f3bc57bb4529cd2858ad469c420de660a","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/82c35f9f3bc57bb4529cd2858ad469c420de660a"}},{"name":"0.6.0.rc3","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.6.0.rc3","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.6.0.rc3","commit":{"sha":"c7c61af57479e2661a6e41a4006a4900682d8491","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/c7c61af57479e2661a6e41a4006a4900682d8491"}},{"name":"0.6.0.rc2","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.6.0.rc2","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.6.0.rc2","commit":{"sha":"3c34ade2b88625a94711ecf254d07723178cf18b","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/3c34ade2b88625a94711ecf254d07723178cf18b"}},{"name":"0.6.0.rc1","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.6.0.rc1","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.6.0.rc1","commit":{"sha":"cc32737e4f67e7f357de4ad26ec3b3ce27836138","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/cc32737e4f67e7f357de4ad26ec3b3ce27836138"}},{"name":"0.6.0","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.6.0","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.6.0","commit":{"sha":"9a5b3de5381233a881285c5c504f3a36a0ec0b75","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/9a5b3de5381233a881285c5c504f3a36a0ec0b75"}},{"name":"0.5.1","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.5.1","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.5.1","commit":{"sha":"f760473133f56ec6d1dcbc415f0c712f4b4b7d27","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/f760473133f56ec6d1dcbc415f0c712f4b4b7d27"}},{"name":"0.5.0","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.5.0","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.5.0","commit":{"sha":"5614a12cfbc392fb314b54c3a1001bf7665740da","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/5614a12cfbc392fb314b54c3a1001bf7665740da"}},{"name":"0.3.10","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.3.10","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.3.10","commit":{"sha":"5d420f52471c8594c3d3e609ec53851fc0c5e241","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/5d420f52471c8594c3d3e609ec53851fc0c5e241"}},{"name":"0.3.9","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.3.9","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.3.9","commit":{"sha":"c5214dbd2374669901feb12c122f8688cd796d94","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/c5214dbd2374669901feb12c122f8688cd796d94"}},{"name":"0.3.8","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.3.8","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.3.8","commit":{"sha":"412f4e74340c77bd8fd04860320f91b1bde28f9c","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/412f4e74340c77bd8fd04860320f91b1bde28f9c"}},{"name":"0.3.7","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.3.7","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.3.7","commit":{"sha":"685cbb02f20831c63f1ddbd569aa87e36936288a","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/685cbb02f20831c63f1ddbd569aa87e36936288a"}},{"name":"0.3.6","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.3.6","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.3.6","commit":{"sha":"36361198dbd5f85881ffe6eee9cfe97bc25ed349","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/36361198dbd5f85881ffe6eee9cfe97bc25ed349"}},{"name":"0.3.5","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.3.5","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.3.5","commit":{"sha":"c068650adc785c9f56db6aad652ee8aa815c99a1","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/c068650adc785c9f56db6aad652ee8aa815c99a1"}},{"name":"0.3.4","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.3.4","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.3.4","commit":{"sha":"a9950ce4b0b7561d4f9e611a79b893ad27e61171","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/a9950ce4b0b7561d4f9e611a79b893ad27e61171"}},{"name":"0.3.3","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.3.3","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.3.3","commit":{"sha":"5b99fbedc937e20a65fa07e90f103014a342cd6a","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/5b99fbedc937e20a65fa07e90f103014a342cd6a"}},{"name":"0.3.2","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.3.2","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.3.2","commit":{"sha":"7061b9eb372c00319ae21612b811e25c04a4a34c","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/7061b9eb372c00319ae21612b811e25c04a4a34c"}},{"name":"0.3.1","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.3.1","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.3.1","commit":{"sha":"dcdc3af2c34c42ee517c36528c2f05840140573d","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/dcdc3af2c34c42ee517c36528c2f05840140573d"}},{"name":"0.3.0","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.3.0","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.3.0","commit":{"sha":"bb3535afeca43a3b386ab2fc25a49f06193a07d6","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/bb3535afeca43a3b386ab2fc25a49f06193a07d6"}},{"name":"0.2.0","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.2.0","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.2.0","commit":{"sha":"9bde29429529b7baea096e3bd9bfab7f0ce44b41","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/9bde29429529b7baea096e3bd9bfab7f0ce44b41"}},{"name":"0.1.1","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.1.1","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.1.1","commit":{"sha":"a691224a01fc01e2c7e46bb3515f4a91cc85d9c3","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/a691224a01fc01e2c7e46bb3515f4a91cc85d9c3"}},{"name":"0.1.0","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.1.0","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.1.0","commit":{"sha":"ecbb384d796421cb2edfae0fab23a38c83b9e83b","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/ecbb384d796421cb2edfae0fab23a38c83b9e83b"}},{"name":"0.0.8","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.0.8","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.0.8","commit":{"sha":"7c8ac07b7be6920fb4ea5c5a1a4179f167aad793","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/7c8ac07b7be6920fb4ea5c5a1a4179f167aad793"}},{"name":"0.0.7","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.0.7","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.0.7","commit":{"sha":"a0c7f1d5856ba55e0aad87f9d150ffec0c544287","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/a0c7f1d5856ba55e0aad87f9d150ffec0c544287"}},{"name":"0.0.5","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.0.5","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.0.5","commit":{"sha":"7c86f72a012e3bbfb9e95bf0660f5933437fdd64","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/7c86f72a012e3bbfb9e95bf0660f5933437fdd64"}},{"name":"0.0.4","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.0.4","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.0.4","commit":{"sha":"925a613babbb3be0ccf6d0790ff11f51daeae184","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/925a613babbb3be0ccf6d0790ff11f51daeae184"}},{"name":"0.0.3","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.0.3","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.0.3","commit":{"sha":"8d362ece90b494552b79f7ba8f9910b00213451f","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/8d362ece90b494552b79f7ba8f9910b00213451f"}},{"name":"0.0.2","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.0.2","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.0.2","commit":{"sha":"28ab0e31a7b49bf607b58feeeb62b2f319bc6003","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/28ab0e31a7b49bf607b58feeeb62b2f319bc6003"}},{"name":"0.0.1","zipball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/zipball/0.0.1","tarball_url":"https://api.github.com/repos/CocoaPods/CocoaPods/tarball/0.0.1","commit":{"sha":"f263e298be120bde6b7102967bb3a727a4ef2b07","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/f263e298be120bde6b7102967bb3a727a4ef2b07"}}]' http_version: - recorded_at: Mon, 02 Dec 2013 03:08:06 GMT + recorded_at: Mon, 02 Dec 2013 03:19:45 GMT - request: method: get uri: https://api.github.com/repos/CocoaPods/CocoaPods/branches @@ -205,7 +205,7 @@ http_interactions: Server: - GitHub.com Date: - - Mon, 02 Dec 2013 03:08:06 GMT + - Mon, 02 Dec 2013 03:19:45 GMT Content-Type: - application/json; charset=utf-8 Transfer-Encoding: @@ -215,7 +215,7 @@ http_interactions: X-Ratelimit-Limit: - '60' X-Ratelimit-Remaining: - - '53' + - '44' X-Ratelimit-Reset: - '1385957280' Cache-Control: @@ -239,12 +239,73 @@ http_interactions: Access-Control-Allow-Origin: - '*' X-Github-Request-Id: - - 4F00B20F:4DF2:2F2F588:529BF996 + - 4F00B20F:5405:C061C43:529BFC51 body: encoding: UTF-8 string: '[{"name":"local_repos","commit":{"sha":"4064048df16c203554f6630626b4c5c239ee8fe1","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/4064048df16c203554f6630626b4c5c239ee8fe1"}},{"name":"master","commit":{"sha":"0e1d101dc18ee569d0a181c2e7f39940c7b598d1","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/0e1d101dc18ee569d0a181c2e7f39940c7b598d1"}},{"name":"pods-project-edit-feature","commit":{"sha":"93b38c13ec3a084a71bc18717745208577f49cc9","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/93b38c13ec3a084a71bc18717745208577f49cc9"}},{"name":"refactor-target","commit":{"sha":"4ce0471a93629128d26f8b147f55600e6e87a89b","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/4ce0471a93629128d26f8b147f55600e6e87a89b"}},{"name":"ruby-trace-experiment","commit":{"sha":"efe30b868865af10d810f5b5c908cf634ce7d8c0","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/efe30b868865af10d810f5b5c908cf634ce7d8c0"}},{"name":"sandbox_reorganization_544","commit":{"sha":"e3cfdfd612eefc79e835f71c3a15e93a7a1701eb","url":"https://api.github.com/repos/CocoaPods/CocoaPods/commits/e3cfdfd612eefc79e835f71c3a15e93a7a1701eb"}}]' http_version: - recorded_at: Mon, 02 Dec 2013 03:08:06 GMT + recorded_at: Mon, 02 Dec 2013 03:19:45 GMT +- request: + method: get + uri: https://api.github.com/repos/CocoaPods/CocoaPods/contents + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - CocoaPods + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - '*/*' + response: + status: + code: 200 + message: OK + headers: + Server: + - GitHub.com + Date: + - Mon, 02 Dec 2013 03:19:46 GMT + Content-Type: + - application/json; charset=utf-8 + Transfer-Encoding: + - chunked + Status: + - 200 OK + X-Ratelimit-Limit: + - '60' + X-Ratelimit-Remaining: + - '43' + X-Ratelimit-Reset: + - '1385957280' + Cache-Control: + - public, max-age=60, s-maxage=60 + Last-Modified: + - Sun, 01 Dec 2013 22:30:59 GMT + Etag: + - '"d3e819c6c16641dab7afc83a9d5b5ad3"' + Vary: + - Accept + - Accept-Encoding + X-Github-Media-Type: + - github.beta + X-Content-Type-Options: + - nosniff + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Expose-Headers: + - ETag, Link, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, + X-Accepted-OAuth-Scopes, X-Poll-Interval + Access-Control-Allow-Origin: + - '*' + X-Github-Request-Id: + - 4F00B20F:5406:C3DA7A1:529BFC51 + body: + encoding: UTF-8 + string: '[{"name":".gitignore","path":".gitignore","sha":"4ec13d347ae0a8655522723678a60e7c6462aca0","size":448,"url":"https://api.github.com/repos/CocoaPods/CocoaPods/contents/.gitignore?ref=master","html_url":"https://github.com/CocoaPods/CocoaPods/blob/master/.gitignore","git_url":"https://api.github.com/repos/CocoaPods/CocoaPods/git/blobs/4ec13d347ae0a8655522723678a60e7c6462aca0","type":"file","_links":{"self":"https://api.github.com/repos/CocoaPods/CocoaPods/contents/.gitignore?ref=master","git":"https://api.github.com/repos/CocoaPods/CocoaPods/git/blobs/4ec13d347ae0a8655522723678a60e7c6462aca0","html":"https://github.com/CocoaPods/CocoaPods/blob/master/.gitignore"}},{"name":".gitmodules","path":".gitmodules","sha":"e435d7445a3919e32f7677629c079becb625e297","size":1052,"url":"https://api.github.com/repos/CocoaPods/CocoaPods/contents/.gitmodules?ref=master","html_url":"https://github.com/CocoaPods/CocoaPods/blob/master/.gitmodules","git_url":"https://api.github.com/repos/CocoaPods/CocoaPods/git/blobs/e435d7445a3919e32f7677629c079becb625e297","type":"file","_links":{"self":"https://api.github.com/repos/CocoaPods/CocoaPods/contents/.gitmodules?ref=master","git":"https://api.github.com/repos/CocoaPods/CocoaPods/git/blobs/e435d7445a3919e32f7677629c079becb625e297","html":"https://github.com/CocoaPods/CocoaPods/blob/master/.gitmodules"}},{"name":".kick","path":".kick","sha":"272ded35472ac0cc05db4552633fafaf03dfe65c","size":600,"url":"https://api.github.com/repos/CocoaPods/CocoaPods/contents/.kick?ref=master","html_url":"https://github.com/CocoaPods/CocoaPods/blob/master/.kick","git_url":"https://api.github.com/repos/CocoaPods/CocoaPods/git/blobs/272ded35472ac0cc05db4552633fafaf03dfe65c","type":"file","_links":{"self":"https://api.github.com/repos/CocoaPods/CocoaPods/contents/.kick?ref=master","git":"https://api.github.com/repos/CocoaPods/CocoaPods/git/blobs/272ded35472ac0cc05db4552633fafaf03dfe65c","html":"https://github.com/CocoaPods/CocoaPods/blob/master/.kick"}},{"name":".travis.yml","path":".travis.yml","sha":"80b927b13b3d7fcedc38f95101f5d448ea2db242","size":1286,"url":"https://api.github.com/repos/CocoaPods/CocoaPods/contents/.travis.yml?ref=master","html_url":"https://github.com/CocoaPods/CocoaPods/blob/master/.travis.yml","git_url":"https://api.github.com/repos/CocoaPods/CocoaPods/git/blobs/80b927b13b3d7fcedc38f95101f5d448ea2db242","type":"file","_links":{"self":"https://api.github.com/repos/CocoaPods/CocoaPods/contents/.travis.yml?ref=master","git":"https://api.github.com/repos/CocoaPods/CocoaPods/git/blobs/80b927b13b3d7fcedc38f95101f5d448ea2db242","html":"https://github.com/CocoaPods/CocoaPods/blob/master/.travis.yml"}},{"name":".yardopts","path":".yardopts","sha":"133908fe17f75eeb618f2e03c59573729b7514a7","size":28,"url":"https://api.github.com/repos/CocoaPods/CocoaPods/contents/.yardopts?ref=master","html_url":"https://github.com/CocoaPods/CocoaPods/blob/master/.yardopts","git_url":"https://api.github.com/repos/CocoaPods/CocoaPods/git/blobs/133908fe17f75eeb618f2e03c59573729b7514a7","type":"file","_links":{"self":"https://api.github.com/repos/CocoaPods/CocoaPods/contents/.yardopts?ref=master","git":"https://api.github.com/repos/CocoaPods/CocoaPods/git/blobs/133908fe17f75eeb618f2e03c59573729b7514a7","html":"https://github.com/CocoaPods/CocoaPods/blob/master/.yardopts"}},{"name":"CHANGELOG.md","path":"CHANGELOG.md","sha":"b64fdf8765b24d0f3627114a2084d8a4798343ff","size":81508,"url":"https://api.github.com/repos/CocoaPods/CocoaPods/contents/CHANGELOG.md?ref=master","html_url":"https://github.com/CocoaPods/CocoaPods/blob/master/CHANGELOG.md","git_url":"https://api.github.com/repos/CocoaPods/CocoaPods/git/blobs/b64fdf8765b24d0f3627114a2084d8a4798343ff","type":"file","_links":{"self":"https://api.github.com/repos/CocoaPods/CocoaPods/contents/CHANGELOG.md?ref=master","git":"https://api.github.com/repos/CocoaPods/CocoaPods/git/blobs/b64fdf8765b24d0f3627114a2084d8a4798343ff","html":"https://github.com/CocoaPods/CocoaPods/blob/master/CHANGELOG.md"}},{"name":"CONTRIBUTING.md","path":"CONTRIBUTING.md","sha":"cdd2b22f8434432c15de482e97320834d9df868a","size":2230,"url":"https://api.github.com/repos/CocoaPods/CocoaPods/contents/CONTRIBUTING.md?ref=master","html_url":"https://github.com/CocoaPods/CocoaPods/blob/master/CONTRIBUTING.md","git_url":"https://api.github.com/repos/CocoaPods/CocoaPods/git/blobs/cdd2b22f8434432c15de482e97320834d9df868a","type":"file","_links":{"self":"https://api.github.com/repos/CocoaPods/CocoaPods/contents/CONTRIBUTING.md?ref=master","git":"https://api.github.com/repos/CocoaPods/CocoaPods/git/blobs/cdd2b22f8434432c15de482e97320834d9df868a","html":"https://github.com/CocoaPods/CocoaPods/blob/master/CONTRIBUTING.md"}},{"name":"Gemfile","path":"Gemfile","sha":"962066de9d458cc045b6a0623b05a31521585193","size":1476,"url":"https://api.github.com/repos/CocoaPods/CocoaPods/contents/Gemfile?ref=master","html_url":"https://github.com/CocoaPods/CocoaPods/blob/master/Gemfile","git_url":"https://api.github.com/repos/CocoaPods/CocoaPods/git/blobs/962066de9d458cc045b6a0623b05a31521585193","type":"file","_links":{"self":"https://api.github.com/repos/CocoaPods/CocoaPods/contents/Gemfile?ref=master","git":"https://api.github.com/repos/CocoaPods/CocoaPods/git/blobs/962066de9d458cc045b6a0623b05a31521585193","html":"https://github.com/CocoaPods/CocoaPods/blob/master/Gemfile"}},{"name":"Gemfile.lock","path":"Gemfile.lock","sha":"5d3cbe1663638e4e05a1e239caa0aa5311bc8fe0","size":3378,"url":"https://api.github.com/repos/CocoaPods/CocoaPods/contents/Gemfile.lock?ref=master","html_url":"https://github.com/CocoaPods/CocoaPods/blob/master/Gemfile.lock","git_url":"https://api.github.com/repos/CocoaPods/CocoaPods/git/blobs/5d3cbe1663638e4e05a1e239caa0aa5311bc8fe0","type":"file","_links":{"self":"https://api.github.com/repos/CocoaPods/CocoaPods/contents/Gemfile.lock?ref=master","git":"https://api.github.com/repos/CocoaPods/CocoaPods/git/blobs/5d3cbe1663638e4e05a1e239caa0aa5311bc8fe0","html":"https://github.com/CocoaPods/CocoaPods/blob/master/Gemfile.lock"}},{"name":"LICENSE","path":"LICENSE","sha":"f1a4dd2e29a3b0f6381f8cf1ad2f4f1388400e11","size":1202,"url":"https://api.github.com/repos/CocoaPods/CocoaPods/contents/LICENSE?ref=master","html_url":"https://github.com/CocoaPods/CocoaPods/blob/master/LICENSE","git_url":"https://api.github.com/repos/CocoaPods/CocoaPods/git/blobs/f1a4dd2e29a3b0f6381f8cf1ad2f4f1388400e11","type":"file","_links":{"self":"https://api.github.com/repos/CocoaPods/CocoaPods/contents/LICENSE?ref=master","git":"https://api.github.com/repos/CocoaPods/CocoaPods/git/blobs/f1a4dd2e29a3b0f6381f8cf1ad2f4f1388400e11","html":"https://github.com/CocoaPods/CocoaPods/blob/master/LICENSE"}},{"name":"README.md","path":"README.md","sha":"8395a750936225ef0f3c5dc86398b65aa6a71dc0","size":4077,"url":"https://api.github.com/repos/CocoaPods/CocoaPods/contents/README.md?ref=master","html_url":"https://github.com/CocoaPods/CocoaPods/blob/master/README.md","git_url":"https://api.github.com/repos/CocoaPods/CocoaPods/git/blobs/8395a750936225ef0f3c5dc86398b65aa6a71dc0","type":"file","_links":{"self":"https://api.github.com/repos/CocoaPods/CocoaPods/contents/README.md?ref=master","git":"https://api.github.com/repos/CocoaPods/CocoaPods/git/blobs/8395a750936225ef0f3c5dc86398b65aa6a71dc0","html":"https://github.com/CocoaPods/CocoaPods/blob/master/README.md"}},{"name":"Rakefile","path":"Rakefile","sha":"98c1f88827d6109ab5d8de5f31ece44b56f06441","size":12054,"url":"https://api.github.com/repos/CocoaPods/CocoaPods/contents/Rakefile?ref=master","html_url":"https://github.com/CocoaPods/CocoaPods/blob/master/Rakefile","git_url":"https://api.github.com/repos/CocoaPods/CocoaPods/git/blobs/98c1f88827d6109ab5d8de5f31ece44b56f06441","type":"file","_links":{"self":"https://api.github.com/repos/CocoaPods/CocoaPods/contents/Rakefile?ref=master","git":"https://api.github.com/repos/CocoaPods/CocoaPods/git/blobs/98c1f88827d6109ab5d8de5f31ece44b56f06441","html":"https://github.com/CocoaPods/CocoaPods/blob/master/Rakefile"}},{"name":"bin","path":"bin","sha":"682d4904eceb0c53d7e894336f835604b2d33e34","size":null,"url":"https://api.github.com/repos/CocoaPods/CocoaPods/contents/bin?ref=master","html_url":"https://github.com/CocoaPods/CocoaPods/tree/master/bin","git_url":"https://api.github.com/repos/CocoaPods/CocoaPods/git/trees/682d4904eceb0c53d7e894336f835604b2d33e34","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/CocoaPods/contents/bin?ref=master","git":"https://api.github.com/repos/CocoaPods/CocoaPods/git/trees/682d4904eceb0c53d7e894336f835604b2d33e34","html":"https://github.com/CocoaPods/CocoaPods/tree/master/bin"}},{"name":"cocoapods.gemspec","path":"cocoapods.gemspec","sha":"24b2eb901e1f90450a556d75bca57bf1d52b3fa5","size":3107,"url":"https://api.github.com/repos/CocoaPods/CocoaPods/contents/cocoapods.gemspec?ref=master","html_url":"https://github.com/CocoaPods/CocoaPods/blob/master/cocoapods.gemspec","git_url":"https://api.github.com/repos/CocoaPods/CocoaPods/git/blobs/24b2eb901e1f90450a556d75bca57bf1d52b3fa5","type":"file","_links":{"self":"https://api.github.com/repos/CocoaPods/CocoaPods/contents/cocoapods.gemspec?ref=master","git":"https://api.github.com/repos/CocoaPods/CocoaPods/git/blobs/24b2eb901e1f90450a556d75bca57bf1d52b3fa5","html":"https://github.com/CocoaPods/CocoaPods/blob/master/cocoapods.gemspec"}},{"name":"examples","path":"examples","sha":"1768e9fade88a9bbb715c77e032ce2086431a768","size":null,"url":"https://api.github.com/repos/CocoaPods/CocoaPods/contents/examples?ref=master","html_url":"https://github.com/CocoaPods/CocoaPods/tree/master/examples","git_url":"https://api.github.com/repos/CocoaPods/CocoaPods/git/trees/1768e9fade88a9bbb715c77e032ce2086431a768","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/CocoaPods/contents/examples?ref=master","git":"https://api.github.com/repos/CocoaPods/CocoaPods/git/trees/1768e9fade88a9bbb715c77e032ce2086431a768","html":"https://github.com/CocoaPods/CocoaPods/tree/master/examples"}},{"name":"lib","path":"lib","sha":"539a5e9e8c07bfd098882b910fe70936c47dcaca","size":null,"url":"https://api.github.com/repos/CocoaPods/CocoaPods/contents/lib?ref=master","html_url":"https://github.com/CocoaPods/CocoaPods/tree/master/lib","git_url":"https://api.github.com/repos/CocoaPods/CocoaPods/git/trees/539a5e9e8c07bfd098882b910fe70936c47dcaca","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/CocoaPods/contents/lib?ref=master","git":"https://api.github.com/repos/CocoaPods/CocoaPods/git/trees/539a5e9e8c07bfd098882b910fe70936c47dcaca","html":"https://github.com/CocoaPods/CocoaPods/tree/master/lib"}},{"name":"spec","path":"spec","sha":"5c5febb53b8931e84e8d1e9b7bfde30bf1aa5a00","size":null,"url":"https://api.github.com/repos/CocoaPods/CocoaPods/contents/spec?ref=master","html_url":"https://github.com/CocoaPods/CocoaPods/tree/master/spec","git_url":"https://api.github.com/repos/CocoaPods/CocoaPods/git/trees/5c5febb53b8931e84e8d1e9b7bfde30bf1aa5a00","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/CocoaPods/contents/spec?ref=master","git":"https://api.github.com/repos/CocoaPods/CocoaPods/git/trees/5c5febb53b8931e84e8d1e9b7bfde30bf1aa5a00","html":"https://github.com/CocoaPods/CocoaPods/tree/master/spec"}}]' + http_version: + recorded_at: Mon, 02 Dec 2013 03:19:46 GMT - request: method: get uri: https://api.github.com/repos/CocoaPods/Missing_Repo @@ -266,7 +327,7 @@ http_interactions: Server: - GitHub.com Date: - - Mon, 02 Dec 2013 03:17:50 GMT + - Mon, 02 Dec 2013 03:19:46 GMT Content-Type: - application/json; charset=utf-8 Transfer-Encoding: @@ -276,7 +337,7 @@ http_interactions: X-Ratelimit-Limit: - '60' X-Ratelimit-Remaining: - - '48' + - '42' X-Ratelimit-Reset: - '1385957280' X-Github-Media-Type: @@ -291,10 +352,10 @@ http_interactions: Access-Control-Allow-Origin: - '*' X-Github-Request-Id: - - 4F00B20F:263F:5D84D5C:529BFBDE + - 4F00B20F:5406:C3DA8C7:529BFC52 body: encoding: UTF-8 string: '{"message":"Not Found","documentation_url":"http://developer.github.com/v3"}' http_version: - recorded_at: Mon, 02 Dec 2013 03:17:50 GMT + recorded_at: Mon, 02 Dec 2013 03:19:46 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/GitHubDataProvider.yml b/spec/fixtures/vcr_cassettes/GitHubDataProvider.yml new file mode 100644 index 000000000..dd91d9657 --- /dev/null +++ b/spec/fixtures/vcr_cassettes/GitHubDataProvider.yml @@ -0,0 +1,394 @@ +--- +http_interactions: +- request: + method: get + uri: https://api.github.com/repos/CocoaPods/Specs/contents/Specs?ref=yaml_podspecs + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - CocoaPods + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - '*/*' + response: + status: + code: 200 + message: OK + headers: + Server: + - GitHub.com + Date: + - Mon, 02 Dec 2013 02:36:08 GMT + Content-Type: + - application/json; charset=utf-8 + Transfer-Encoding: + - chunked + Status: + - 200 OK + X-Ratelimit-Limit: + - '60' + X-Ratelimit-Remaining: + - '51' + X-Ratelimit-Reset: + - '1385951957' + Cache-Control: + - public, max-age=60, s-maxage=60 + Last-Modified: + - Mon, 02 Dec 2013 02:17:23 GMT + Etag: + - '"4b543e65455c94f8ece080679c5f7ecf"' + Vary: + - Accept + - Accept-Encoding + X-Github-Media-Type: + - github.beta + X-Content-Type-Options: + - nosniff + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Expose-Headers: + - ETag, Link, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, + X-Accepted-OAuth-Scopes, X-Poll-Interval + Access-Control-Allow-Origin: + - '*' + X-Github-Request-Id: + - 4F00B20F:5403:8BB3323:529BF218 + body: + encoding: UTF-8 + string: '[{"name":"500px-iOS-api","path":"Specs/500px-iOS-api","sha":"03ada49080116874563ea894dcedcd39699eed68","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/500px-iOS-api?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/500px-iOS-api","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/03ada49080116874563ea894dcedcd39699eed68","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/500px-iOS-api?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/03ada49080116874563ea894dcedcd39699eed68","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/500px-iOS-api"}},{"name":"A2DynamicDelegate","path":"Specs/A2DynamicDelegate","sha":"8ab91fdfd65c5865cb51bea25919437cb6aa7f25","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/A2DynamicDelegate?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/A2DynamicDelegate","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8ab91fdfd65c5865cb51bea25919437cb6aa7f25","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/A2DynamicDelegate?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8ab91fdfd65c5865cb51bea25919437cb6aa7f25","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/A2DynamicDelegate"}},{"name":"A2StoryboardSegueContext","path":"Specs/A2StoryboardSegueContext","sha":"ec9c4d214708996c3f05d7b9ce09eb7e74543023","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/A2StoryboardSegueContext?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/A2StoryboardSegueContext","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ec9c4d214708996c3f05d7b9ce09eb7e74543023","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/A2StoryboardSegueContext?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ec9c4d214708996c3f05d7b9ce09eb7e74543023","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/A2StoryboardSegueContext"}},{"name":"A3GridTableView","path":"Specs/A3GridTableView","sha":"46748a2d27ee6a28ca793d125fbaca5323ff6d47","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/A3GridTableView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/A3GridTableView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/46748a2d27ee6a28ca793d125fbaca5323ff6d47","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/A3GridTableView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/46748a2d27ee6a28ca793d125fbaca5323ff6d47","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/A3GridTableView"}},{"name":"AAImageUtils","path":"Specs/AAImageUtils","sha":"1a3edea6ec3a6957e686f5119ed4d0ae4a179b12","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AAImageUtils?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AAImageUtils","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1a3edea6ec3a6957e686f5119ed4d0ae4a179b12","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AAImageUtils?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1a3edea6ec3a6957e686f5119ed4d0ae4a179b12","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AAImageUtils"}},{"name":"AALaunchTransition","path":"Specs/AALaunchTransition","sha":"91a9f102518dafdbe2b763224edfba52e09130e7","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AALaunchTransition?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AALaunchTransition","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/91a9f102518dafdbe2b763224edfba52e09130e7","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AALaunchTransition?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/91a9f102518dafdbe2b763224edfba52e09130e7","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AALaunchTransition"}},{"name":"ABCalendarPicker","path":"Specs/ABCalendarPicker","sha":"00324f65b8bb410bc42aca1d552054119bfcb80b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ABCalendarPicker?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ABCalendarPicker","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/00324f65b8bb410bc42aca1d552054119bfcb80b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ABCalendarPicker?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/00324f65b8bb410bc42aca1d552054119bfcb80b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ABCalendarPicker"}},{"name":"ABContactHelper","path":"Specs/ABContactHelper","sha":"2f74c53f4edd44eb738314c2ddc5b2ede229e601","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ABContactHelper?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ABContactHelper","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2f74c53f4edd44eb738314c2ddc5b2ede229e601","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ABContactHelper?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2f74c53f4edd44eb738314c2ddc5b2ede229e601","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ABContactHelper"}},{"name":"ABGetMe","path":"Specs/ABGetMe","sha":"989af93f7e1b2e5c15d87413cad3c768dd438134","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ABGetMe?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ABGetMe","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/989af93f7e1b2e5c15d87413cad3c768dd438134","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ABGetMe?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/989af93f7e1b2e5c15d87413cad3c768dd438134","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ABGetMe"}},{"name":"ABMultiton","path":"Specs/ABMultiton","sha":"7bd9864f416f277153e2cc42aad6a7950283e616","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ABMultiton?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ABMultiton","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7bd9864f416f277153e2cc42aad6a7950283e616","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ABMultiton?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7bd9864f416f277153e2cc42aad6a7950283e616","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ABMultiton"}},{"name":"ACEDrawingView","path":"Specs/ACEDrawingView","sha":"5c835055b3ec0b76bad2d94ef50d9f2b03573ef0","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ACEDrawingView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ACEDrawingView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5c835055b3ec0b76bad2d94ef50d9f2b03573ef0","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ACEDrawingView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5c835055b3ec0b76bad2d94ef50d9f2b03573ef0","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ACEDrawingView"}},{"name":"ACEToolKit","path":"Specs/ACEToolKit","sha":"f7e4ac0e3e108ece06a32013293e5eca0e2ae6e5","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ACEToolKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ACEToolKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f7e4ac0e3e108ece06a32013293e5eca0e2ae6e5","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ACEToolKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f7e4ac0e3e108ece06a32013293e5eca0e2ae6e5","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ACEToolKit"}},{"name":"ACEView","path":"Specs/ACEView","sha":"a379298c0df3c0151d3b52f90a6103ffc9ecee0a","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ACEView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ACEView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a379298c0df3c0151d3b52f90a6103ffc9ecee0a","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ACEView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a379298c0df3c0151d3b52f90a6103ffc9ecee0a","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ACEView"}},{"name":"ACSimpleKeychain","path":"Specs/ACSimpleKeychain","sha":"616be0c078eea665ddf2527481b337e92b403d00","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ACSimpleKeychain?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ACSimpleKeychain","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/616be0c078eea665ddf2527481b337e92b403d00","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ACSimpleKeychain?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/616be0c078eea665ddf2527481b337e92b403d00","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ACSimpleKeychain"}},{"name":"ACVRangeSelector","path":"Specs/ACVRangeSelector","sha":"8bcb17cf2371caee9c7cf186f7ecfb8a70b549e5","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ACVRangeSelector?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ACVRangeSelector","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8bcb17cf2371caee9c7cf186f7ecfb8a70b549e5","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ACVRangeSelector?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8bcb17cf2371caee9c7cf186f7ecfb8a70b549e5","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ACVRangeSelector"}},{"name":"ADBBackgroundCells","path":"Specs/ADBBackgroundCells","sha":"3bfbe21bc895f1937e6294b2471275a1306546aa","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ADBBackgroundCells?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ADBBackgroundCells","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3bfbe21bc895f1937e6294b2471275a1306546aa","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ADBBackgroundCells?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3bfbe21bc895f1937e6294b2471275a1306546aa","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ADBBackgroundCells"}},{"name":"ADBIndexedTableView","path":"Specs/ADBIndexedTableView","sha":"753c82d6fa9dc1f3c12a8d44f7d9392dfc65d609","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ADBIndexedTableView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ADBIndexedTableView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/753c82d6fa9dc1f3c12a8d44f7d9392dfc65d609","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ADBIndexedTableView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/753c82d6fa9dc1f3c12a8d44f7d9392dfc65d609","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ADBIndexedTableView"}},{"name":"ADClusterMapView","path":"Specs/ADClusterMapView","sha":"bffe5876adbd2a10b561ef3b937d626c2055ea6f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ADClusterMapView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ADClusterMapView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/bffe5876adbd2a10b561ef3b937d626c2055ea6f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ADClusterMapView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/bffe5876adbd2a10b561ef3b937d626c2055ea6f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ADClusterMapView"}},{"name":"ADNKit","path":"Specs/ADNKit","sha":"6772bfe5777f74b36255d56dec17cab0bab2c81f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ADNKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ADNKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6772bfe5777f74b36255d56dec17cab0bab2c81f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ADNKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6772bfe5777f74b36255d56dec17cab0bab2c81f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ADNKit"}},{"name":"ADNLogin","path":"Specs/ADNLogin","sha":"c3ae04e4453f2fc2ce7ac082e64aa015f7b3de09","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ADNLogin?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ADNLogin","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c3ae04e4453f2fc2ce7ac082e64aa015f7b3de09","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ADNLogin?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c3ae04e4453f2fc2ce7ac082e64aa015f7b3de09","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ADNLogin"}},{"name":"ADVProgressBar","path":"Specs/ADVProgressBar","sha":"7f7f9b71ba54958eb337a52ceedef67567b1604b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ADVProgressBar?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ADVProgressBar","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7f7f9b71ba54958eb337a52ceedef67567b1604b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ADVProgressBar?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7f7f9b71ba54958eb337a52ceedef67567b1604b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ADVProgressBar"}},{"name":"ADiOSUtilities","path":"Specs/ADiOSUtilities","sha":"90f792fc20433de558fecd1805e82a5587b4aabf","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ADiOSUtilities?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ADiOSUtilities","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/90f792fc20433de558fecd1805e82a5587b4aabf","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ADiOSUtilities?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/90f792fc20433de558fecd1805e82a5587b4aabf","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ADiOSUtilities"}},{"name":"AFAbstractRESTClient","path":"Specs/AFAbstractRESTClient","sha":"601fbbdb61cbab374e327eb4a6b3abdf46f50262","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFAbstractRESTClient?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFAbstractRESTClient","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/601fbbdb61cbab374e327eb4a6b3abdf46f50262","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFAbstractRESTClient?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/601fbbdb61cbab374e327eb4a6b3abdf46f50262","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFAbstractRESTClient"}},{"name":"AFAmazonS3Client","path":"Specs/AFAmazonS3Client","sha":"517a4d69a8adf3c000e97adee5385b50427b4fa2","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFAmazonS3Client?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFAmazonS3Client","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/517a4d69a8adf3c000e97adee5385b50427b4fa2","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFAmazonS3Client?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/517a4d69a8adf3c000e97adee5385b50427b4fa2","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFAmazonS3Client"}},{"name":"AFCSVRequestOperation","path":"Specs/AFCSVRequestOperation","sha":"1f7715d29b60754e2647fbb1034bd657eb2bd83f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFCSVRequestOperation?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFCSVRequestOperation","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1f7715d29b60754e2647fbb1034bd657eb2bd83f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFCSVRequestOperation?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1f7715d29b60754e2647fbb1034bd657eb2bd83f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFCSVRequestOperation"}},{"name":"AFCache","path":"Specs/AFCache","sha":"9f18573f46b83fb623a5fd7694754e3823551ed1","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFCache?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFCache","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9f18573f46b83fb623a5fd7694754e3823551ed1","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFCache?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9f18573f46b83fb623a5fd7694754e3823551ed1","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFCache"}},{"name":"AFDownloadRequestOperation","path":"Specs/AFDownloadRequestOperation","sha":"ac888f27b1df417fac050b77482259d606b7d0bf","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFDownloadRequestOperation?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFDownloadRequestOperation","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ac888f27b1df417fac050b77482259d606b7d0bf","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFDownloadRequestOperation?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ac888f27b1df417fac050b77482259d606b7d0bf","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFDownloadRequestOperation"}},{"name":"AFHARchiver","path":"Specs/AFHARchiver","sha":"14114a8f89e65e7e650a2b005e0127b449128e74","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFHARchiver?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFHARchiver","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/14114a8f89e65e7e650a2b005e0127b449128e74","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFHARchiver?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/14114a8f89e65e7e650a2b005e0127b449128e74","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFHARchiver"}},{"name":"AFHTTPClientLogger","path":"Specs/AFHTTPClientLogger","sha":"68a1d6a7ca5cfcb4c70e4b2341e3b9e78d48d116","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFHTTPClientLogger?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFHTTPClientLogger","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/68a1d6a7ca5cfcb4c70e4b2341e3b9e78d48d116","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFHTTPClientLogger?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/68a1d6a7ca5cfcb4c70e4b2341e3b9e78d48d116","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFHTTPClientLogger"}},{"name":"AFHTTPRequestOperationLogger-VolumeControl","path":"Specs/AFHTTPRequestOperationLogger-VolumeControl","sha":"5b452df12316b331392a0f0cdcd4ac1ab1588599","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFHTTPRequestOperationLogger-VolumeControl?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFHTTPRequestOperationLogger-VolumeControl","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5b452df12316b331392a0f0cdcd4ac1ab1588599","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFHTTPRequestOperationLogger-VolumeControl?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5b452df12316b331392a0f0cdcd4ac1ab1588599","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFHTTPRequestOperationLogger-VolumeControl"}},{"name":"AFHTTPRequestOperationLogger","path":"Specs/AFHTTPRequestOperationLogger","sha":"fdaeb11d7f8da580832502d2c470791043c1f66a","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFHTTPRequestOperationLogger?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFHTTPRequestOperationLogger","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fdaeb11d7f8da580832502d2c470791043c1f66a","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFHTTPRequestOperationLogger?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fdaeb11d7f8da580832502d2c470791043c1f66a","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFHTTPRequestOperationLogger"}},{"name":"AFImageDownloader","path":"Specs/AFImageDownloader","sha":"f376266ebe4d53b7c211f84d1a59bb63204ff321","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFImageDownloader?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFImageDownloader","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f376266ebe4d53b7c211f84d1a59bb63204ff321","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFImageDownloader?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f376266ebe4d53b7c211f84d1a59bb63204ff321","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFImageDownloader"}},{"name":"AFIncrementalStore","path":"Specs/AFIncrementalStore","sha":"d59da399c8c2b295c9e308c99b11deb7aea5fd8c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFIncrementalStore?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFIncrementalStore","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d59da399c8c2b295c9e308c99b11deb7aea5fd8c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFIncrementalStore?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d59da399c8c2b295c9e308c99b11deb7aea5fd8c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFIncrementalStore"}},{"name":"AFJSONPRequestOperation","path":"Specs/AFJSONPRequestOperation","sha":"a6344cbad27d35fc512f311cb0a4d846e90866d1","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFJSONPRequestOperation?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFJSONPRequestOperation","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a6344cbad27d35fc512f311cb0a4d846e90866d1","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFJSONPRequestOperation?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a6344cbad27d35fc512f311cb0a4d846e90866d1","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFJSONPRequestOperation"}},{"name":"AFJSONRPCClient","path":"Specs/AFJSONRPCClient","sha":"85f85bddcf2d74666abe9b6a9480c58071e71313","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFJSONRPCClient?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFJSONRPCClient","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/85f85bddcf2d74666abe9b6a9480c58071e71313","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFJSONRPCClient?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/85f85bddcf2d74666abe9b6a9480c58071e71313","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFJSONRPCClient"}},{"name":"AFKissXMLRequestOperation","path":"Specs/AFKissXMLRequestOperation","sha":"d9ada3252c6bf0b25ae2121a72b907ae59a7e677","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFKissXMLRequestOperation?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFKissXMLRequestOperation","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d9ada3252c6bf0b25ae2121a72b907ae59a7e677","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFKissXMLRequestOperation?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d9ada3252c6bf0b25ae2121a72b907ae59a7e677","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFKissXMLRequestOperation"}},{"name":"AFLinkedInOAuth1Client","path":"Specs/AFLinkedInOAuth1Client","sha":"5bb81c0fced25b0d6cf3e5adb5214bfdf6a71489","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFLinkedInOAuth1Client?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFLinkedInOAuth1Client","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5bb81c0fced25b0d6cf3e5adb5214bfdf6a71489","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFLinkedInOAuth1Client?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5bb81c0fced25b0d6cf3e5adb5214bfdf6a71489","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFLinkedInOAuth1Client"}},{"name":"AFNetworking-RACExtensions","path":"Specs/AFNetworking-RACExtensions","sha":"76620a514458d9717069758c4e79c093d91da01c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFNetworking-RACExtensions?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFNetworking-RACExtensions","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/76620a514458d9717069758c4e79c093d91da01c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFNetworking-RACExtensions?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/76620a514458d9717069758c4e79c093d91da01c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFNetworking-RACExtensions"}},{"name":"AFNetworking-ReactiveCocoa","path":"Specs/AFNetworking-ReactiveCocoa","sha":"50671fa0a1d3c419e84bf3afead96bb1894f8b0d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFNetworking-ReactiveCocoa?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFNetworking-ReactiveCocoa","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/50671fa0a1d3c419e84bf3afead96bb1894f8b0d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFNetworking-ReactiveCocoa?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/50671fa0a1d3c419e84bf3afead96bb1894f8b0d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFNetworking-ReactiveCocoa"}},{"name":"AFNetworking","path":"Specs/AFNetworking","sha":"0bf9f9b143687d25b0e47d26029e2303600a16e0","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFNetworking?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFNetworking","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0bf9f9b143687d25b0e47d26029e2303600a16e0","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFNetworking?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0bf9f9b143687d25b0e47d26029e2303600a16e0","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFNetworking"}},{"name":"AFOAuth1Client","path":"Specs/AFOAuth1Client","sha":"9fd6268a393e3f6c813947adc5300a0e428e397a","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFOAuth1Client?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFOAuth1Client","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9fd6268a393e3f6c813947adc5300a0e428e397a","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFOAuth1Client?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9fd6268a393e3f6c813947adc5300a0e428e397a","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFOAuth1Client"}},{"name":"AFOAuth2Client","path":"Specs/AFOAuth2Client","sha":"d5cea1ab9d9892d7c4be8ab8d2ccaca79ac66a83","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFOAuth2Client?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFOAuth2Client","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d5cea1ab9d9892d7c4be8ab8d2ccaca79ac66a83","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFOAuth2Client?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d5cea1ab9d9892d7c4be8ab8d2ccaca79ac66a83","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFOAuth2Client"}},{"name":"AFQiitaClient","path":"Specs/AFQiitaClient","sha":"a083bddebea490ac06c3e5dafcf314f2f6dd03f6","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFQiitaClient?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFQiitaClient","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a083bddebea490ac06c3e5dafcf314f2f6dd03f6","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFQiitaClient?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a083bddebea490ac06c3e5dafcf314f2f6dd03f6","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFQiitaClient"}},{"name":"AFQuickLookView","path":"Specs/AFQuickLookView","sha":"9b5d64b590e4057e7d9709ce56f77f297eca96ce","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFQuickLookView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFQuickLookView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9b5d64b590e4057e7d9709ce56f77f297eca96ce","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFQuickLookView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9b5d64b590e4057e7d9709ce56f77f297eca96ce","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFQuickLookView"}},{"name":"AFRESTfulCoreDataBackgroundQueue","path":"Specs/AFRESTfulCoreDataBackgroundQueue","sha":"2f908f5bee9cd5e04354e9ccdddab3c47a16e734","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFRESTfulCoreDataBackgroundQueue?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFRESTfulCoreDataBackgroundQueue","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2f908f5bee9cd5e04354e9ccdddab3c47a16e734","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFRESTfulCoreDataBackgroundQueue?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2f908f5bee9cd5e04354e9ccdddab3c47a16e734","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFRESTfulCoreDataBackgroundQueue"}},{"name":"AFStatHatClient","path":"Specs/AFStatHatClient","sha":"ecf558c1013c6044147d713bc832617acd8641cd","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFStatHatClient?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFStatHatClient","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ecf558c1013c6044147d713bc832617acd8641cd","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFStatHatClient?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ecf558c1013c6044147d713bc832617acd8641cd","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFStatHatClient"}},{"name":"AFTumblrAPIClient","path":"Specs/AFTumblrAPIClient","sha":"cda0ab2c09e8a29a4a08ee50d7c10b8fd43a2bd2","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFTumblrAPIClient?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFTumblrAPIClient","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/cda0ab2c09e8a29a4a08ee50d7c10b8fd43a2bd2","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFTumblrAPIClient?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/cda0ab2c09e8a29a4a08ee50d7c10b8fd43a2bd2","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFTumblrAPIClient"}},{"name":"AFURLConnectionByteSpeedMeasure","path":"Specs/AFURLConnectionByteSpeedMeasure","sha":"1df12c6bcf753426fe02cbd5d036d61499831363","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFURLConnectionByteSpeedMeasure?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFURLConnectionByteSpeedMeasure","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1df12c6bcf753426fe02cbd5d036d61499831363","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFURLConnectionByteSpeedMeasure?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1df12c6bcf753426fe02cbd5d036d61499831363","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFURLConnectionByteSpeedMeasure"}},{"name":"AFUrbanAirshipClient","path":"Specs/AFUrbanAirshipClient","sha":"7c703d21c3042bfcaa47c1c850ac4b94cb5be30c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFUrbanAirshipClient?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFUrbanAirshipClient","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7c703d21c3042bfcaa47c1c850ac4b94cb5be30c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFUrbanAirshipClient?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7c703d21c3042bfcaa47c1c850ac4b94cb5be30c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFUrbanAirshipClient"}},{"name":"AFXAuthClient","path":"Specs/AFXAuthClient","sha":"ac1411cc2f2e56a4ff3f8684215155cae7e1effd","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFXAuthClient?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFXAuthClient","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ac1411cc2f2e56a4ff3f8684215155cae7e1effd","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AFXAuthClient?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ac1411cc2f2e56a4ff3f8684215155cae7e1effd","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AFXAuthClient"}},{"name":"AGGeometryKit","path":"Specs/AGGeometryKit","sha":"4ab12a32e873631b285136af7b4d67fc93ca9aa9","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AGGeometryKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AGGeometryKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4ab12a32e873631b285136af7b4d67fc93ca9aa9","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AGGeometryKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4ab12a32e873631b285136af7b4d67fc93ca9aa9","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AGGeometryKit"}},{"name":"AGImageChecker","path":"Specs/AGImageChecker","sha":"67aa0f316f010d34529682fc1459b685fdfe7b2b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AGImageChecker?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AGImageChecker","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/67aa0f316f010d34529682fc1459b685fdfe7b2b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AGImageChecker?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/67aa0f316f010d34529682fc1459b685fdfe7b2b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AGImageChecker"}},{"name":"AGImagePickerController","path":"Specs/AGImagePickerController","sha":"3d70780fbb0dad3281676f9536277b4709b28fdb","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AGImagePickerController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AGImagePickerController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3d70780fbb0dad3281676f9536277b4709b28fdb","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AGImagePickerController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3d70780fbb0dad3281676f9536277b4709b28fdb","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AGImagePickerController"}},{"name":"AGMedallionView","path":"Specs/AGMedallionView","sha":"645fc5e2d071b0694980714066a02b659ea53d86","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AGMedallionView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AGMedallionView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/645fc5e2d071b0694980714066a02b659ea53d86","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AGMedallionView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/645fc5e2d071b0694980714066a02b659ea53d86","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AGMedallionView"}},{"name":"AGWaitForAsyncTestHelper","path":"Specs/AGWaitForAsyncTestHelper","sha":"38e862b3e4af3d17fca9b55f722ee59bd08ceb05","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AGWaitForAsyncTestHelper?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AGWaitForAsyncTestHelper","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/38e862b3e4af3d17fca9b55f722ee59bd08ceb05","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AGWaitForAsyncTestHelper?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/38e862b3e4af3d17fca9b55f722ee59bd08ceb05","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AGWaitForAsyncTestHelper"}},{"name":"AGWindowView","path":"Specs/AGWindowView","sha":"3d29b414a9dc8a2ad32bff5186d48c754eae6580","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AGWindowView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AGWindowView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3d29b414a9dc8a2ad32bff5186d48c754eae6580","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AGWindowView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3d29b414a9dc8a2ad32bff5186d48c754eae6580","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AGWindowView"}},{"name":"AGi18n","path":"Specs/AGi18n","sha":"b8a684382cdf32d20bf088358fb2d63ffca0d9a9","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AGi18n?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AGi18n","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b8a684382cdf32d20bf088358fb2d63ffca0d9a9","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AGi18n?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b8a684382cdf32d20bf088358fb2d63ffca0d9a9","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AGi18n"}},{"name":"AHAlertView","path":"Specs/AHAlertView","sha":"fc7cb00a21d587df6b5651e6fb0c76dda2394496","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AHAlertView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AHAlertView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fc7cb00a21d587df6b5651e6fb0c76dda2394496","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AHAlertView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fc7cb00a21d587df6b5651e6fb0c76dda2394496","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AHAlertView"}},{"name":"AHEasing","path":"Specs/AHEasing","sha":"ac5c257bd8273d1f720ab9a48fcbf859c9ef7889","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AHEasing?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AHEasing","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ac5c257bd8273d1f720ab9a48fcbf859c9ef7889","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AHEasing?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ac5c257bd8273d1f720ab9a48fcbf859c9ef7889","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AHEasing"}},{"name":"AIAnimation","path":"Specs/AIAnimation","sha":"331a656fe09f870f8df4e8451f6c1be6e14b325a","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AIAnimation?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AIAnimation","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/331a656fe09f870f8df4e8451f6c1be6e14b325a","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AIAnimation?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/331a656fe09f870f8df4e8451f6c1be6e14b325a","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AIAnimation"}},{"name":"AJNotificationView","path":"Specs/AJNotificationView","sha":"2f821bd0e44a02d9ced6b83b1733f0916e061cd3","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AJNotificationView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AJNotificationView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2f821bd0e44a02d9ced6b83b1733f0916e061cd3","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AJNotificationView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2f821bd0e44a02d9ced6b83b1733f0916e061cd3","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AJNotificationView"}},{"name":"AKLocationManager","path":"Specs/AKLocationManager","sha":"e9da714cc3fd667a1c31ad4d82ef7ec4a2091b59","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AKLocationManager?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AKLocationManager","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e9da714cc3fd667a1c31ad4d82ef7ec4a2091b59","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AKLocationManager?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e9da714cc3fd667a1c31ad4d82ef7ec4a2091b59","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AKLocationManager"}},{"name":"AKSegmentedControl","path":"Specs/AKSegmentedControl","sha":"8932ca00dd3e66ee6e556e0572a48461664842aa","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AKSegmentedControl?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AKSegmentedControl","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8932ca00dd3e66ee6e556e0572a48461664842aa","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AKSegmentedControl?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8932ca00dd3e66ee6e556e0572a48461664842aa","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AKSegmentedControl"}},{"name":"AKSemanticView","path":"Specs/AKSemanticView","sha":"137dd0141b925c97238eaab65c16436d33e815ef","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AKSemanticView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AKSemanticView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/137dd0141b925c97238eaab65c16436d33e815ef","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AKSemanticView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/137dd0141b925c97238eaab65c16436d33e815ef","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AKSemanticView"}},{"name":"AKTabBarController","path":"Specs/AKTabBarController","sha":"8d360e4d0f1fb5cf3bca72e9b783923da0521c2b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AKTabBarController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AKTabBarController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8d360e4d0f1fb5cf3bca72e9b783923da0521c2b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AKTabBarController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8d360e4d0f1fb5cf3bca72e9b783923da0521c2b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AKTabBarController"}},{"name":"ALActionBlocks","path":"Specs/ALActionBlocks","sha":"98539cca2adfbb5531e58d4ea0f73a0b9253c311","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ALActionBlocks?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ALActionBlocks","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/98539cca2adfbb5531e58d4ea0f73a0b9253c311","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ALActionBlocks?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/98539cca2adfbb5531e58d4ea0f73a0b9253c311","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ALActionBlocks"}},{"name":"ALAssetsLibrary-CustomPhotoAlbum","path":"Specs/ALAssetsLibrary-CustomPhotoAlbum","sha":"0a1a0d7e449dfcf02aa3738084c72f05dd0e0b79","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ALAssetsLibrary-CustomPhotoAlbum?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ALAssetsLibrary-CustomPhotoAlbum","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0a1a0d7e449dfcf02aa3738084c72f05dd0e0b79","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ALAssetsLibrary-CustomPhotoAlbum?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0a1a0d7e449dfcf02aa3738084c72f05dd0e0b79","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ALAssetsLibrary-CustomPhotoAlbum"}},{"name":"ALRadial","path":"Specs/ALRadial","sha":"0532d0d745425a62b93a9446c127f5e5b8ad21b4","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ALRadial?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ALRadial","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0532d0d745425a62b93a9446c127f5e5b8ad21b4","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ALRadial?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0532d0d745425a62b93a9446c127f5e5b8ad21b4","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ALRadial"}},{"name":"ALToastView","path":"Specs/ALToastView","sha":"f64f980b4023b51d650d5eda5cead95cfc525744","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ALToastView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ALToastView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f64f980b4023b51d650d5eda5cead95cfc525744","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ALToastView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f64f980b4023b51d650d5eda5cead95cfc525744","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ALToastView"}},{"name":"AMAttributedHighlightLabel","path":"Specs/AMAttributedHighlightLabel","sha":"7014cea25bb9b0a81cf6cf5d1a08003b32154bca","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AMAttributedHighlightLabel?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AMAttributedHighlightLabel","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7014cea25bb9b0a81cf6cf5d1a08003b32154bca","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AMAttributedHighlightLabel?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7014cea25bb9b0a81cf6cf5d1a08003b32154bca","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AMAttributedHighlightLabel"}},{"name":"AMOptionMenu","path":"Specs/AMOptionMenu","sha":"1be9fdc24d0922dd852fe9df988b32b4c496c20d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AMOptionMenu?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AMOptionMenu","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1be9fdc24d0922dd852fe9df988b32b4c496c20d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AMOptionMenu?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1be9fdc24d0922dd852fe9df988b32b4c496c20d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AMOptionMenu"}},{"name":"AMRatingControl","path":"Specs/AMRatingControl","sha":"0829b7ecadba81ba2693e474f8f67788f9b715a6","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AMRatingControl?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AMRatingControl","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0829b7ecadba81ba2693e474f8f67788f9b715a6","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AMRatingControl?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0829b7ecadba81ba2693e474f8f67788f9b715a6","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AMRatingControl"}},{"name":"AMSlideOutController","path":"Specs/AMSlideOutController","sha":"181103aa86900aa2911a7b6176a287c64c306f05","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AMSlideOutController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AMSlideOutController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/181103aa86900aa2911a7b6176a287c64c306f05","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AMSlideOutController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/181103aa86900aa2911a7b6176a287c64c306f05","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AMSlideOutController"}},{"name":"ANSegmentedControl","path":"Specs/ANSegmentedControl","sha":"d68cf166395ef728a9633b22475ef2c379da80fb","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ANSegmentedControl?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ANSegmentedControl","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d68cf166395ef728a9633b22475ef2c379da80fb","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ANSegmentedControl?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d68cf166395ef728a9633b22475ef2c379da80fb","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ANSegmentedControl"}},{"name":"APParallaxHeader","path":"Specs/APParallaxHeader","sha":"9ca126f365b6c8b3bdda88440ae90163344e6bd6","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/APParallaxHeader?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/APParallaxHeader","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9ca126f365b6c8b3bdda88440ae90163344e6bd6","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/APParallaxHeader?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9ca126f365b6c8b3bdda88440ae90163344e6bd6","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/APParallaxHeader"}},{"name":"APTokenField","path":"Specs/APTokenField","sha":"c3099d3816d27f2e6b266eb17a7baffeda0c8ba6","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/APTokenField?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/APTokenField","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c3099d3816d27f2e6b266eb17a7baffeda0c8ba6","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/APTokenField?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c3099d3816d27f2e6b266eb17a7baffeda0c8ba6","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/APTokenField"}},{"name":"AQGridView","path":"Specs/AQGridView","sha":"8c8e39697ccc141e3002f0d1db1fb2f653bdc1a9","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AQGridView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AQGridView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8c8e39697ccc141e3002f0d1db1fb2f653bdc1a9","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AQGridView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8c8e39697ccc141e3002f0d1db1fb2f653bdc1a9","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AQGridView"}},{"name":"ARAnalytics","path":"Specs/ARAnalytics","sha":"e7f4b996658cc8abce6a4fd18645e0df277b7fdd","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ARAnalytics?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ARAnalytics","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e7f4b996658cc8abce6a4fd18645e0df277b7fdd","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ARAnalytics?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e7f4b996658cc8abce6a4fd18645e0df277b7fdd","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ARAnalytics"}},{"name":"ARCHelper","path":"Specs/ARCHelper","sha":"06c5593447176bc08fa15e233e12edc5f08b18ed","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ARCHelper?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ARCHelper","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/06c5593447176bc08fa15e233e12edc5f08b18ed","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ARCHelper?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/06c5593447176bc08fa15e233e12edc5f08b18ed","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ARCHelper"}},{"name":"ARCMacro","path":"Specs/ARCMacro","sha":"15f7aa93ce1d6f62705d68fad6d477d46f805779","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ARCMacro?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ARCMacro","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/15f7aa93ce1d6f62705d68fad6d477d46f805779","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ARCMacro?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/15f7aa93ce1d6f62705d68fad6d477d46f805779","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ARCMacro"}},{"name":"ARChromeActivity","path":"Specs/ARChromeActivity","sha":"cca74b841ec100b99545785c0158d3c5a9eb9184","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ARChromeActivity?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ARChromeActivity","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/cca74b841ec100b99545785c0158d3c5a9eb9184","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ARChromeActivity?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/cca74b841ec100b99545785c0158d3c5a9eb9184","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ARChromeActivity"}},{"name":"ARGenericTableViewController","path":"Specs/ARGenericTableViewController","sha":"5bea6c8a7a4be7af0be4f250749b576749eac7a6","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ARGenericTableViewController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ARGenericTableViewController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5bea6c8a7a4be7af0be4f250749b576749eac7a6","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ARGenericTableViewController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5bea6c8a7a4be7af0be4f250749b576749eac7a6","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ARGenericTableViewController"}},{"name":"ARKit","path":"Specs/ARKit","sha":"7265332ec9c371744e97a6b646d8637317bc11fe","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ARKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ARKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7265332ec9c371744e97a6b646d8637317bc11fe","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ARKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7265332ec9c371744e97a6b646d8637317bc11fe","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ARKit"}},{"name":"ARPerformanceScout","path":"Specs/ARPerformanceScout","sha":"f51303d93b62d1866cf55123bdc32c1c8c7a12d4","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ARPerformanceScout?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ARPerformanceScout","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f51303d93b62d1866cf55123bdc32c1c8c7a12d4","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ARPerformanceScout?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f51303d93b62d1866cf55123bdc32c1c8c7a12d4","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ARPerformanceScout"}},{"name":"ARSafeJSON","path":"Specs/ARSafeJSON","sha":"d24ddf118de36a2395c0533897443aa72099635c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ARSafeJSON?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ARSafeJSON","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d24ddf118de36a2395c0533897443aa72099635c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ARSafeJSON?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d24ddf118de36a2395c0533897443aa72099635c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ARSafeJSON"}},{"name":"ARTableViewPager","path":"Specs/ARTableViewPager","sha":"d5fc22292d8431f974fdd2f1409138c75a0149b8","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ARTableViewPager?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ARTableViewPager","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d5fc22292d8431f974fdd2f1409138c75a0149b8","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ARTableViewPager?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d5fc22292d8431f974fdd2f1409138c75a0149b8","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ARTableViewPager"}},{"name":"ASCoalescingOperationQueue","path":"Specs/ASCoalescingOperationQueue","sha":"62c13aa3453e2c35fd79aad8b75431ab211499c5","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ASCoalescingOperationQueue?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ASCoalescingOperationQueue","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/62c13aa3453e2c35fd79aad8b75431ab211499c5","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ASCoalescingOperationQueue?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/62c13aa3453e2c35fd79aad8b75431ab211499c5","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ASCoalescingOperationQueue"}},{"name":"ASCollectionViewController","path":"Specs/ASCollectionViewController","sha":"5592ffa79eaf17232fbc38368df987c8574ccc4f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ASCollectionViewController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ASCollectionViewController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5592ffa79eaf17232fbc38368df987c8574ccc4f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ASCollectionViewController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5592ffa79eaf17232fbc38368df987c8574ccc4f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ASCollectionViewController"}},{"name":"ASIHTTPRequest","path":"Specs/ASIHTTPRequest","sha":"ece562e6c11182db444882017602c7c061ea3b88","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ASIHTTPRequest?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ASIHTTPRequest","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ece562e6c11182db444882017602c7c061ea3b88","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ASIHTTPRequest?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ece562e6c11182db444882017602c7c061ea3b88","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ASIHTTPRequest"}},{"name":"ASPolylineView","path":"Specs/ASPolylineView","sha":"83b09cf413d6e6f1f099f41430af05ff54a81a9d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ASPolylineView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ASPolylineView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/83b09cf413d6e6f1f099f41430af05ff54a81a9d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ASPolylineView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/83b09cf413d6e6f1f099f41430af05ff54a81a9d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ASPolylineView"}},{"name":"ASStarRatingView","path":"Specs/ASStarRatingView","sha":"bdf1fe56759b9cb044165db2f8b7a56df009901a","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ASStarRatingView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ASStarRatingView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/bdf1fe56759b9cb044165db2f8b7a56df009901a","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ASStarRatingView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/bdf1fe56759b9cb044165db2f8b7a56df009901a","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ASStarRatingView"}},{"name":"ATMHud","path":"Specs/ATMHud","sha":"c63c49c40fbf6c58322b005cb12f9625b23b7a3f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ATMHud?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ATMHud","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c63c49c40fbf6c58322b005cb12f9625b23b7a3f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ATMHud?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c63c49c40fbf6c58322b005cb12f9625b23b7a3f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ATMHud"}},{"name":"ATValidations","path":"Specs/ATValidations","sha":"013841af2580cfd2a58404afb0dd60976f16d241","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ATValidations?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ATValidations","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/013841af2580cfd2a58404afb0dd60976f16d241","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ATValidations?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/013841af2580cfd2a58404afb0dd60976f16d241","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ATValidations"}},{"name":"AUIAnimatedText","path":"Specs/AUIAnimatedText","sha":"f19f225c9d6b21f3934a2f2768ca9ac67be96108","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AUIAnimatedText?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AUIAnimatedText","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f19f225c9d6b21f3934a2f2768ca9ac67be96108","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AUIAnimatedText?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f19f225c9d6b21f3934a2f2768ca9ac67be96108","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AUIAnimatedText"}},{"name":"AURosetteView","path":"Specs/AURosetteView","sha":"153ae28558ab80a0ec696add7a3677b3a0bcc825","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AURosetteView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AURosetteView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/153ae28558ab80a0ec696add7a3677b3a0bcc825","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AURosetteView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/153ae28558ab80a0ec696add7a3677b3a0bcc825","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AURosetteView"}},{"name":"AWIconSheet","path":"Specs/AWIconSheet","sha":"eff49ee44c2f3d67504e9e7e2cc558a3cc63d6a8","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AWIconSheet?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AWIconSheet","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/eff49ee44c2f3d67504e9e7e2cc558a3cc63d6a8","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AWIconSheet?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/eff49ee44c2f3d67504e9e7e2cc558a3cc63d6a8","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AWIconSheet"}},{"name":"AWSiOSSDK","path":"Specs/AWSiOSSDK","sha":"5ebedf70d801620bb22aece28aa018675887b7ac","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AWSiOSSDK?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AWSiOSSDK","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5ebedf70d801620bb22aece28aa018675887b7ac","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AWSiOSSDK?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5ebedf70d801620bb22aece28aa018675887b7ac","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AWSiOSSDK"}},{"name":"AWVersionAgent","path":"Specs/AWVersionAgent","sha":"d9ccfdecd13335bab98d1cfe0b3d56fdce07b409","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AWVersionAgent?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AWVersionAgent","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d9ccfdecd13335bab98d1cfe0b3d56fdce07b409","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AWVersionAgent?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d9ccfdecd13335bab98d1cfe0b3d56fdce07b409","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AWVersionAgent"}},{"name":"AYNetworking","path":"Specs/AYNetworking","sha":"16bfad4cec06f153c69fd9267b22119a86288a7e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AYNetworking?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AYNetworking","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/16bfad4cec06f153c69fd9267b22119a86288a7e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AYNetworking?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/16bfad4cec06f153c69fd9267b22119a86288a7e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AYNetworking"}},{"name":"AZAppearanceKit","path":"Specs/AZAppearanceKit","sha":"a8c0d2f70891869c891fb88d7ca85071c575b8ff","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AZAppearanceKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AZAppearanceKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a8c0d2f70891869c891fb88d7ca85071c575b8ff","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AZAppearanceKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a8c0d2f70891869c891fb88d7ca85071c575b8ff","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AZAppearanceKit"}},{"name":"AZSocketIO","path":"Specs/AZSocketIO","sha":"186ed52b556818268d78d6bed316f928f5bbf66c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AZSocketIO?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AZSocketIO","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/186ed52b556818268d78d6bed316f928f5bbf66c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AZSocketIO?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/186ed52b556818268d78d6bed316f928f5bbf66c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AZSocketIO"}},{"name":"ActionSheetPicker","path":"Specs/ActionSheetPicker","sha":"c4357e74b9d590eec36037163ad984808bc23057","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ActionSheetPicker?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ActionSheetPicker","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c4357e74b9d590eec36037163ad984808bc23057","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ActionSheetPicker?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c4357e74b9d590eec36037163ad984808bc23057","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ActionSheetPicker"}},{"name":"ActionSheetPicker2","path":"Specs/ActionSheetPicker2","sha":"d06530f5f3ac7f332e33046996159af2fe7680fc","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ActionSheetPicker2?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ActionSheetPicker2","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d06530f5f3ac7f332e33046996159af2fe7680fc","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ActionSheetPicker2?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d06530f5f3ac7f332e33046996159af2fe7680fc","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ActionSheetPicker2"}},{"name":"ActiveSupportInflector","path":"Specs/ActiveSupportInflector","sha":"87685d7b6b87160be94e77ef2763bfd23fa1295e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ActiveSupportInflector?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ActiveSupportInflector","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/87685d7b6b87160be94e77ef2763bfd23fa1295e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ActiveSupportInflector?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/87685d7b6b87160be94e77ef2763bfd23fa1295e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ActiveSupportInflector"}},{"name":"ActiveTouch","path":"Specs/ActiveTouch","sha":"abd1c532b4a4cf2f697ddda90362c37162a9f152","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ActiveTouch?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ActiveTouch","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/abd1c532b4a4cf2f697ddda90362c37162a9f152","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ActiveTouch?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/abd1c532b4a4cf2f697ddda90362c37162a9f152","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ActiveTouch"}},{"name":"ActivitySequencer","path":"Specs/ActivitySequencer","sha":"49277d68edfb439c44b22ef8dcd3c19978d089ea","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ActivitySequencer?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ActivitySequencer","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/49277d68edfb439c44b22ef8dcd3c19978d089ea","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ActivitySequencer?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/49277d68edfb439c44b22ef8dcd3c19978d089ea","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ActivitySequencer"}},{"name":"AdMob","path":"Specs/AdMob","sha":"1b17bfb4a71622af55ce0340c6f224cbcdbf9454","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AdMob?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AdMob","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1b17bfb4a71622af55ce0340c6f224cbcdbf9454","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AdMob?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1b17bfb4a71622af55ce0340c6f224cbcdbf9454","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AdMob"}},{"name":"AdMobHelper","path":"Specs/AdMobHelper","sha":"e1e023040117b8e5ff4ad9a598613ee2e6f3ead8","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AdMobHelper?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AdMobHelper","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e1e023040117b8e5ff4ad9a598613ee2e6f3ead8","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AdMobHelper?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e1e023040117b8e5ff4ad9a598613ee2e6f3ead8","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AdMobHelper"}},{"name":"AdPostSDK","path":"Specs/AdPostSDK","sha":"9da679dec01779c2870e1479e41048f9f5dd4cc8","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AdPostSDK?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AdPostSDK","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9da679dec01779c2870e1479e41048f9f5dd4cc8","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AdPostSDK?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9da679dec01779c2870e1479e41048f9f5dd4cc8","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AdPostSDK"}},{"name":"AdamSDK","path":"Specs/AdamSDK","sha":"e94bd8b5b0db9c181500f6d6b31ee66397b2f1ef","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AdamSDK?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AdamSDK","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e94bd8b5b0db9c181500f6d6b31ee66397b2f1ef","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AdamSDK?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e94bd8b5b0db9c181500f6d6b31ee66397b2f1ef","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AdamSDK"}},{"name":"AeroGear-OTP","path":"Specs/AeroGear-OTP","sha":"41ba0c4faa822bdb3dac640a76aeb9217d7cd066","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AeroGear-OTP?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AeroGear-OTP","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/41ba0c4faa822bdb3dac640a76aeb9217d7cd066","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AeroGear-OTP?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/41ba0c4faa822bdb3dac640a76aeb9217d7cd066","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AeroGear-OTP"}},{"name":"AeroGear","path":"Specs/AeroGear","sha":"83ab6ce04428f96ee5c4546ea22ffb9a7a168dd6","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AeroGear?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AeroGear","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/83ab6ce04428f96ee5c4546ea22ffb9a7a168dd6","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AeroGear?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/83ab6ce04428f96ee5c4546ea22ffb9a7a168dd6","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AeroGear"}},{"name":"Airbrake-iOS","path":"Specs/Airbrake-iOS","sha":"b6f970bc2d1a42dc10ea6d4d92a50aeb101cb658","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Airbrake-iOS?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Airbrake-iOS","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b6f970bc2d1a42dc10ea6d4d92a50aeb101cb658","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Airbrake-iOS?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b6f970bc2d1a42dc10ea6d4d92a50aeb101cb658","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Airbrake-iOS"}},{"name":"AlertNinja","path":"Specs/AlertNinja","sha":"041db160500c30fc9ff33066054af8214a3c04a7","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AlertNinja?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AlertNinja","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/041db160500c30fc9ff33066054af8214a3c04a7","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AlertNinja?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/041db160500c30fc9ff33066054af8214a3c04a7","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AlertNinja"}},{"name":"AlgoliaSearchOffline-OSX-SDK","path":"Specs/AlgoliaSearchOffline-OSX-SDK","sha":"3c289c94ea935642d75eb63f02be1f9de4d7e2d1","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AlgoliaSearchOffline-OSX-SDK?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AlgoliaSearchOffline-OSX-SDK","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3c289c94ea935642d75eb63f02be1f9de4d7e2d1","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AlgoliaSearchOffline-OSX-SDK?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3c289c94ea935642d75eb63f02be1f9de4d7e2d1","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AlgoliaSearchOffline-OSX-SDK"}},{"name":"AlgoliaSearchOffline-iOS-SDK","path":"Specs/AlgoliaSearchOffline-iOS-SDK","sha":"0d57948e957c88e4838e25aede15e6694c8618d6","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AlgoliaSearchOffline-iOS-SDK?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AlgoliaSearchOffline-iOS-SDK","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0d57948e957c88e4838e25aede15e6694c8618d6","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AlgoliaSearchOffline-iOS-SDK?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0d57948e957c88e4838e25aede15e6694c8618d6","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AlgoliaSearchOffline-iOS-SDK"}},{"name":"AlphabetTable","path":"Specs/AlphabetTable","sha":"70a71c77a464e50fb2d1a76f19284c87c9418533","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AlphabetTable?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AlphabetTable","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/70a71c77a464e50fb2d1a76f19284c87c9418533","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AlphabetTable?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/70a71c77a464e50fb2d1a76f19284c87c9418533","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AlphabetTable"}},{"name":"AmazeKit","path":"Specs/AmazeKit","sha":"5032f14dc8d6cb55e496bfe5211a7b6296f273ff","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AmazeKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AmazeKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5032f14dc8d6cb55e496bfe5211a7b6296f273ff","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AmazeKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5032f14dc8d6cb55e496bfe5211a7b6296f273ff","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AmazeKit"}},{"name":"AmazonSDB","path":"Specs/AmazonSDB","sha":"699d12f84fab78f54d3caa9ffd974554c5ca6136","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AmazonSDB?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AmazonSDB","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/699d12f84fab78f54d3caa9ffd974554c5ca6136","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AmazonSDB?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/699d12f84fab78f54d3caa9ffd974554c5ca6136","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AmazonSDB"}},{"name":"Amplitude-iOS","path":"Specs/Amplitude-iOS","sha":"6429fb2f8b33397f92c7784b0d32c548f7451d9f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Amplitude-iOS?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Amplitude-iOS","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6429fb2f8b33397f92c7784b0d32c548f7451d9f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Amplitude-iOS?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6429fb2f8b33397f92c7784b0d32c548f7451d9f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Amplitude-iOS"}},{"name":"Analytics","path":"Specs/Analytics","sha":"07022ab9034de98881c1b1df743fc7fa755e5c90","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Analytics?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Analytics","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/07022ab9034de98881c1b1df743fc7fa755e5c90","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Analytics?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/07022ab9034de98881c1b1df743fc7fa755e5c90","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Analytics"}},{"name":"AnimatedGif","path":"Specs/AnimatedGif","sha":"075eb06ca4ee89a84cc9f14d0141a26e2cb8b9ac","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AnimatedGif?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AnimatedGif","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/075eb06ca4ee89a84cc9f14d0141a26e2cb8b9ac","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AnimatedGif?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/075eb06ca4ee89a84cc9f14d0141a26e2cb8b9ac","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AnimatedGif"}},{"name":"AnyJSON","path":"Specs/AnyJSON","sha":"89b29db85853b984df9ed9fd294a4e91aafde985","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AnyJSON?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AnyJSON","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/89b29db85853b984df9ed9fd294a4e91aafde985","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AnyJSON?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/89b29db85853b984df9ed9fd294a4e91aafde985","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AnyJSON"}},{"name":"AppPaoPaoSDK","path":"Specs/AppPaoPaoSDK","sha":"8f935c9123bb62191d8fda00c95cf7a6f4cdc2cd","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AppPaoPaoSDK?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AppPaoPaoSDK","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8f935c9123bb62191d8fda00c95cf7a6f4cdc2cd","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AppPaoPaoSDK?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8f935c9123bb62191d8fda00c95cf7a6f4cdc2cd","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AppPaoPaoSDK"}},{"name":"AppSociallySDK","path":"Specs/AppSociallySDK","sha":"9f79586f1ac434f6726b4b89ceb00cf0853c547b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AppSociallySDK?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AppSociallySDK","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9f79586f1ac434f6726b4b89ceb00cf0853c547b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AppSociallySDK?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9f79586f1ac434f6726b4b89ceb00cf0853c547b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AppSociallySDK"}},{"name":"AppXperience","path":"Specs/AppXperience","sha":"10cebed33a149b91f3c2bddf822e01df32d1a654","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AppXperience?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AppXperience","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/10cebed33a149b91f3c2bddf822e01df32d1a654","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AppXperience?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/10cebed33a149b91f3c2bddf822e01df32d1a654","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AppXperience"}},{"name":"Appacitive-iOS-SDK","path":"Specs/Appacitive-iOS-SDK","sha":"c10bbf3ab1f2999350fd3773d031de51fdf13ac4","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Appacitive-iOS-SDK?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Appacitive-iOS-SDK","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c10bbf3ab1f2999350fd3773d031de51fdf13ac4","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Appacitive-iOS-SDK?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c10bbf3ab1f2999350fd3773d031de51fdf13ac4","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Appacitive-iOS-SDK"}},{"name":"Appirater","path":"Specs/Appirater","sha":"7b758e9e21c4de1d630ee0ab290276a9891ff599","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Appirater?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Appirater","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7b758e9e21c4de1d630ee0ab290276a9891ff599","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Appirater?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7b758e9e21c4de1d630ee0ab290276a9891ff599","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Appirater"}},{"name":"AppleCoreAudioUtilityClasses@thehtb","path":"Specs/AppleCoreAudioUtilityClasses@thehtb","sha":"e6e9542a764a181754bf36ac028572fca28ee976","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AppleCoreAudioUtilityClasses@thehtb?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AppleCoreAudioUtilityClasses@thehtb","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e6e9542a764a181754bf36ac028572fca28ee976","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AppleCoreAudioUtilityClasses@thehtb?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e6e9542a764a181754bf36ac028572fca28ee976","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AppleCoreAudioUtilityClasses@thehtb"}},{"name":"Archimedes","path":"Specs/Archimedes","sha":"c7256dcdc98f8ebfbdd27e711fc9f4a2ac4a5a8b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Archimedes?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Archimedes","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c7256dcdc98f8ebfbdd27e711fc9f4a2ac4a5a8b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Archimedes?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c7256dcdc98f8ebfbdd27e711fc9f4a2ac4a5a8b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Archimedes"}},{"name":"Ashton","path":"Specs/Ashton","sha":"a9c90e961393a335ee40c5560a60f44b73e6814b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Ashton?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Ashton","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a9c90e961393a335ee40c5560a60f44b73e6814b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Ashton?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a9c90e961393a335ee40c5560a60f44b73e6814b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Ashton"}},{"name":"AsyncSenTest","path":"Specs/AsyncSenTest","sha":"88c275bdc351207899cd288d85f354ee67fa821a","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AsyncSenTest?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AsyncSenTest","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/88c275bdc351207899cd288d85f354ee67fa821a","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AsyncSenTest?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/88c275bdc351207899cd288d85f354ee67fa821a","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AsyncSenTest"}},{"name":"AsyncTestSupporter","path":"Specs/AsyncTestSupporter","sha":"011d7cd3cd5255eb4c24796261b320facb11cd91","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AsyncTestSupporter?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AsyncTestSupporter","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/011d7cd3cd5255eb4c24796261b320facb11cd91","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AsyncTestSupporter?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/011d7cd3cd5255eb4c24796261b320facb11cd91","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AsyncTestSupporter"}},{"name":"AudioPlayer","path":"Specs/AudioPlayer","sha":"d66afbdb65e5a60481f7c2e82304f93d7dfb4bb6","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AudioPlayer?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AudioPlayer","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d66afbdb65e5a60481f7c2e82304f93d7dfb4bb6","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AudioPlayer?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d66afbdb65e5a60481f7c2e82304f93d7dfb4bb6","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AudioPlayer"}},{"name":"Audjustable","path":"Specs/Audjustable","sha":"cba74ac6f1ff0ed15b2c93c9899d2b90d9f4beb8","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Audjustable?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Audjustable","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/cba74ac6f1ff0ed15b2c93c9899d2b90d9f4beb8","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Audjustable?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/cba74ac6f1ff0ed15b2c93c9899d2b90d9f4beb8","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Audjustable"}},{"name":"AutoCoding","path":"Specs/AutoCoding","sha":"1b867ecc73c501025f2fa58061314fa5f0cf575e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AutoCoding?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AutoCoding","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1b867ecc73c501025f2fa58061314fa5f0cf575e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AutoCoding?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1b867ecc73c501025f2fa58061314fa5f0cf575e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AutoCoding"}},{"name":"AutoDescribe","path":"Specs/AutoDescribe","sha":"99e3a6b9f5dd66a3e54245461e784d57ceafcbb3","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AutoDescribe?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AutoDescribe","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/99e3a6b9f5dd66a3e54245461e784d57ceafcbb3","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AutoDescribe?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/99e3a6b9f5dd66a3e54245461e784d57ceafcbb3","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AutoDescribe"}},{"name":"AutoScrollLabel","path":"Specs/AutoScrollLabel","sha":"356bf3ffc0df5b1f5bff1d6d38a72b5ab54d629e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AutoScrollLabel?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AutoScrollLabel","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/356bf3ffc0df5b1f5bff1d6d38a72b5ab54d629e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AutoScrollLabel?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/356bf3ffc0df5b1f5bff1d6d38a72b5ab54d629e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AutoScrollLabel"}},{"name":"AviarySDK","path":"Specs/AviarySDK","sha":"e0bdd9c87550bccee839e43e04365c18d01277b3","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AviarySDK?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AviarySDK","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e0bdd9c87550bccee839e43e04365c18d01277b3","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AviarySDK?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e0bdd9c87550bccee839e43e04365c18d01277b3","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AviarySDK"}},{"name":"AwesomeMenu","path":"Specs/AwesomeMenu","sha":"4975c278d028b4ec611d0759e7925cbb8b5c40fb","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AwesomeMenu?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AwesomeMenu","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4975c278d028b4ec611d0759e7925cbb8b5c40fb","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/AwesomeMenu?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4975c278d028b4ec611d0759e7925cbb8b5c40fb","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/AwesomeMenu"}},{"name":"BBGroover","path":"Specs/BBGroover","sha":"1b2e49c7be35b507c74db9e0bdc7b66ad2c9401e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BBGroover?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BBGroover","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1b2e49c7be35b507c74db9e0bdc7b66ad2c9401e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BBGroover?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1b2e49c7be35b507c74db9e0bdc7b66ad2c9401e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BBGroover"}},{"name":"BBHTTP","path":"Specs/BBHTTP","sha":"0013a551a6e19f6f8eea0a01a9e5651016e7d592","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BBHTTP?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BBHTTP","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0013a551a6e19f6f8eea0a01a9e5651016e7d592","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BBHTTP?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0013a551a6e19f6f8eea0a01a9e5651016e7d592","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BBHTTP"}},{"name":"BButton","path":"Specs/BButton","sha":"832d915c6f61d63e6e8c4801cdd45f13c7e51801","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BButton?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BButton","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/832d915c6f61d63e6e8c4801cdd45f13c7e51801","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BButton?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/832d915c6f61d63e6e8c4801cdd45f13c7e51801","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BButton"}},{"name":"BCGenieEffect","path":"Specs/BCGenieEffect","sha":"820fddb66898cee609aea9e7e6b19ab5e7fc7874","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BCGenieEffect?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BCGenieEffect","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/820fddb66898cee609aea9e7e6b19ab5e7fc7874","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BCGenieEffect?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/820fddb66898cee609aea9e7e6b19ab5e7fc7874","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BCGenieEffect"}},{"name":"BCStatusItem","path":"Specs/BCStatusItem","sha":"dde6420074fb3a514ac50c182142f1c925dba8c8","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BCStatusItem?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BCStatusItem","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/dde6420074fb3a514ac50c182142f1c925dba8c8","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BCStatusItem?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/dde6420074fb3a514ac50c182142f1c925dba8c8","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BCStatusItem"}},{"name":"BDDynamicGridViewController","path":"Specs/BDDynamicGridViewController","sha":"b59079c6e323119cd9705a1e2159d9a179a853d5","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BDDynamicGridViewController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BDDynamicGridViewController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b59079c6e323119cd9705a1e2159d9a179a853d5","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BDDynamicGridViewController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b59079c6e323119cd9705a1e2159d9a179a853d5","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BDDynamicGridViewController"}},{"name":"BDKGeometry","path":"Specs/BDKGeometry","sha":"1ecf8bbf91f55c87e390966f6ab24abb0274d488","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BDKGeometry?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BDKGeometry","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1ecf8bbf91f55c87e390966f6ab24abb0274d488","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BDKGeometry?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1ecf8bbf91f55c87e390966f6ab24abb0274d488","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BDKGeometry"}},{"name":"BDKNotifyHUD","path":"Specs/BDKNotifyHUD","sha":"a62a5dfad250fc4681e943bf9407ba6de34d08ed","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BDKNotifyHUD?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BDKNotifyHUD","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a62a5dfad250fc4681e943bf9407ba6de34d08ed","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BDKNotifyHUD?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a62a5dfad250fc4681e943bf9407ba6de34d08ed","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BDKNotifyHUD"}},{"name":"BDMultiDownloader","path":"Specs/BDMultiDownloader","sha":"96d0afcf2d57f3f2e9e8ea54987d572824eaa0e1","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BDMultiDownloader?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BDMultiDownloader","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/96d0afcf2d57f3f2e9e8ea54987d572824eaa0e1","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BDMultiDownloader?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/96d0afcf2d57f3f2e9e8ea54987d572824eaa0e1","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BDMultiDownloader"}},{"name":"BDToastAlert","path":"Specs/BDToastAlert","sha":"5ebad140df0264034070852be264ed3ffc29f83c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BDToastAlert?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BDToastAlert","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5ebad140df0264034070852be264ed3ffc29f83c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BDToastAlert?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5ebad140df0264034070852be264ed3ffc29f83c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BDToastAlert"}},{"name":"BFCropInterface","path":"Specs/BFCropInterface","sha":"49fa4674a32e65548edecf73496c52b28d7d11f8","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BFCropInterface?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BFCropInterface","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/49fa4674a32e65548edecf73496c52b28d7d11f8","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BFCropInterface?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/49fa4674a32e65548edecf73496c52b28d7d11f8","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BFCropInterface"}},{"name":"BHTabBar","path":"Specs/BHTabBar","sha":"39c8c976a1f793d28e362a3b3b19a67ad59ded3d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BHTabBar?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BHTabBar","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/39c8c976a1f793d28e362a3b3b19a67ad59ded3d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BHTabBar?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/39c8c976a1f793d28e362a3b3b19a67ad59ded3d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BHTabBar"}},{"name":"BJImageCropper","path":"Specs/BJImageCropper","sha":"6023f665925ff1898e314ce4e0ff31d91733f335","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BJImageCropper?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BJImageCropper","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6023f665925ff1898e314ce4e0ff31d91733f335","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BJImageCropper?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6023f665925ff1898e314ce4e0ff31d91733f335","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BJImageCropper"}},{"name":"BJRangeSliderWithProgress","path":"Specs/BJRangeSliderWithProgress","sha":"d28a5dd39c5778c3d171e5f1f6125f147748085d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BJRangeSliderWithProgress?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BJRangeSliderWithProgress","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d28a5dd39c5778c3d171e5f1f6125f147748085d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BJRangeSliderWithProgress?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d28a5dd39c5778c3d171e5f1f6125f147748085d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BJRangeSliderWithProgress"}},{"name":"BMExtendablePageController","path":"Specs/BMExtendablePageController","sha":"839c6a5aeab6e2a8ea0f624d913325f4d402725d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BMExtendablePageController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BMExtendablePageController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/839c6a5aeab6e2a8ea0f624d913325f4d402725d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BMExtendablePageController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/839c6a5aeab6e2a8ea0f624d913325f4d402725d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BMExtendablePageController"}},{"name":"BMXSwitch","path":"Specs/BMXSwitch","sha":"d00cfd2f24d4a538943a7daad37cac5542af6351","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BMXSwitch?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BMXSwitch","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d00cfd2f24d4a538943a7daad37cac5542af6351","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BMXSwitch?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d00cfd2f24d4a538943a7daad37cac5542af6351","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BMXSwitch"}},{"name":"BOSImageResizeOperation","path":"Specs/BOSImageResizeOperation","sha":"f70eddc108bc96262c94813b819d3062091f10a9","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BOSImageResizeOperation?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BOSImageResizeOperation","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f70eddc108bc96262c94813b819d3062091f10a9","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BOSImageResizeOperation?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f70eddc108bc96262c94813b819d3062091f10a9","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BOSImageResizeOperation"}},{"name":"BPBarButtonItem","path":"Specs/BPBarButtonItem","sha":"46beedceff7050214e7d7342b9e59c3aea6f4c53","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BPBarButtonItem?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BPBarButtonItem","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/46beedceff7050214e7d7342b9e59c3aea6f4c53","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BPBarButtonItem?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/46beedceff7050214e7d7342b9e59c3aea6f4c53","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BPBarButtonItem"}},{"name":"BPFoundation","path":"Specs/BPFoundation","sha":"675d9cc2a498fb8151ea62413b7a5372ab40137c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BPFoundation?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BPFoundation","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/675d9cc2a498fb8151ea62413b7a5372ab40137c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BPFoundation?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/675d9cc2a498fb8151ea62413b7a5372ab40137c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BPFoundation"}},{"name":"BPKit","path":"Specs/BPKit","sha":"0a20732d9e6f9b9a44d0fa870483ee834db3d0c5","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BPKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BPKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0a20732d9e6f9b9a44d0fa870483ee834db3d0c5","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BPKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0a20732d9e6f9b9a44d0fa870483ee834db3d0c5","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BPKit"}},{"name":"BPODial","path":"Specs/BPODial","sha":"3e2206c143804b63197495f5629e466dee0e9678","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BPODial?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BPODial","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3e2206c143804b63197495f5629e466dee0e9678","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BPODial?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3e2206c143804b63197495f5629e466dee0e9678","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BPODial"}},{"name":"BPPhotoLibrarian","path":"Specs/BPPhotoLibrarian","sha":"2e360577a4eacf77a904e2908f06f789ff47d73c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BPPhotoLibrarian?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BPPhotoLibrarian","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2e360577a4eacf77a904e2908f06f789ff47d73c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BPPhotoLibrarian?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2e360577a4eacf77a904e2908f06f789ff47d73c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BPPhotoLibrarian"}},{"name":"BPStatusBar","path":"Specs/BPStatusBar","sha":"1eae596a71df091fecfab0ca650eb0d88982a760","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BPStatusBar?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BPStatusBar","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1eae596a71df091fecfab0ca650eb0d88982a760","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BPStatusBar?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1eae596a71df091fecfab0ca650eb0d88982a760","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BPStatusBar"}},{"name":"BPXLUUIDHandler","path":"Specs/BPXLUUIDHandler","sha":"474076840b11ae93c1ea653de3f8fc51e7f4ae60","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BPXLUUIDHandler?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BPXLUUIDHandler","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/474076840b11ae93c1ea653de3f8fc51e7f4ae60","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BPXLUUIDHandler?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/474076840b11ae93c1ea653de3f8fc51e7f4ae60","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BPXLUUIDHandler"}},{"name":"BSKeyboardControls","path":"Specs/BSKeyboardControls","sha":"785582d906915d4ebcc0d7f8d5145f22be5d3585","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BSKeyboardControls?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BSKeyboardControls","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/785582d906915d4ebcc0d7f8d5145f22be5d3585","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BSKeyboardControls?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/785582d906915d4ebcc0d7f8d5145f22be5d3585","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BSKeyboardControls"}},{"name":"BSModalPickerView","path":"Specs/BSModalPickerView","sha":"fa02d035fe8f33acc8d2978278f702564e5a94f4","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BSModalPickerView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BSModalPickerView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fa02d035fe8f33acc8d2978278f702564e5a94f4","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BSModalPickerView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fa02d035fe8f33acc8d2978278f702564e5a94f4","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BSModalPickerView"}},{"name":"BSONCodec","path":"Specs/BSONCodec","sha":"50d3647bc619c3bf1f0797be58d47eff40d11ff3","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BSONCodec?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BSONCodec","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/50d3647bc619c3bf1f0797be58d47eff40d11ff3","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BSONCodec?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/50d3647bc619c3bf1f0797be58d47eff40d11ff3","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BSONCodec"}},{"name":"BWLongTextViewController","path":"Specs/BWLongTextViewController","sha":"a8b65ada9992eb6e16a43c257fc63ceb306fefc7","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BWLongTextViewController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BWLongTextViewController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a8b65ada9992eb6e16a43c257fc63ceb306fefc7","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BWLongTextViewController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a8b65ada9992eb6e16a43c257fc63ceb306fefc7","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BWLongTextViewController"}},{"name":"BWObjectMapping","path":"Specs/BWObjectMapping","sha":"c9a42e9fee70ebfad0ea5778b63333245a201063","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BWObjectMapping?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BWObjectMapping","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c9a42e9fee70ebfad0ea5778b63333245a201063","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BWObjectMapping?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c9a42e9fee70ebfad0ea5778b63333245a201063","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BWObjectMapping"}},{"name":"BWObjectSerializer","path":"Specs/BWObjectSerializer","sha":"4acd75209881c149a829f99d62d3f1554475ccbd","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BWObjectSerializer?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BWObjectSerializer","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4acd75209881c149a829f99d62d3f1554475ccbd","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BWObjectSerializer?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4acd75209881c149a829f99d62d3f1554475ccbd","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BWObjectSerializer"}},{"name":"BackInMotion","path":"Specs/BackInMotion","sha":"7a48f8b8b6a0a11ef79a5f1af13e774705705816","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BackInMotion?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BackInMotion","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7a48f8b8b6a0a11ef79a5f1af13e774705705816","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BackInMotion?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7a48f8b8b6a0a11ef79a5f1af13e774705705816","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BackInMotion"}},{"name":"Baidu-Analytics-SDK","path":"Specs/Baidu-Analytics-SDK","sha":"f462e80ef77dc63ef429424806d671aba2535a97","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Baidu-Analytics-SDK?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Baidu-Analytics-SDK","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f462e80ef77dc63ef429424806d671aba2535a97","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Baidu-Analytics-SDK?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f462e80ef77dc63ef429424806d671aba2535a97","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Baidu-Analytics-SDK"}},{"name":"Base32","path":"Specs/Base32","sha":"99d32d81853da28cbc7dce4147367312d47ea9d0","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Base32?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Base32","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/99d32d81853da28cbc7dce4147367312d47ea9d0","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Base32?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/99d32d81853da28cbc7dce4147367312d47ea9d0","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Base32"}},{"name":"Base64","path":"Specs/Base64","sha":"00d1037e2df53e61606dcb036a144c202502bcbb","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Base64?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Base64","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/00d1037e2df53e61606dcb036a144c202502bcbb","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Base64?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/00d1037e2df53e61606dcb036a144c202502bcbb","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Base64"}},{"name":"Base64nl","path":"Specs/Base64nl","sha":"b6ffad34c77011fc09a9f54c8fce8af9c458be30","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Base64nl?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Base64nl","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b6ffad34c77011fc09a9f54c8fce8af9c458be30","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Base64nl?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b6ffad34c77011fc09a9f54c8fce8af9c458be30","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Base64nl"}},{"name":"BaseKit","path":"Specs/BaseKit","sha":"0488330be6135958cf9eff0f8a23e2aa7e17aaf8","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BaseKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BaseKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0488330be6135958cf9eff0f8a23e2aa7e17aaf8","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BaseKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0488330be6135958cf9eff0f8a23e2aa7e17aaf8","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BaseKit"}},{"name":"BaseModel","path":"Specs/BaseModel","sha":"e3f87f40fde526996b018acabed1399270bb1e88","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BaseModel?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BaseModel","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e3f87f40fde526996b018acabed1399270bb1e88","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BaseModel?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e3f87f40fde526996b018acabed1399270bb1e88","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BaseModel"}},{"name":"Bazaarvoice","path":"Specs/Bazaarvoice","sha":"6b09ece1392e28eb59bf0aaccc06e49dd10b7c69","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Bazaarvoice?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Bazaarvoice","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6b09ece1392e28eb59bf0aaccc06e49dd10b7c69","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Bazaarvoice?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6b09ece1392e28eb59bf0aaccc06e49dd10b7c69","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Bazaarvoice"}},{"name":"BeamMusicPlayerViewController","path":"Specs/BeamMusicPlayerViewController","sha":"3aee2bddaffb69ce17a8bce99b22e76c459bf8d7","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BeamMusicPlayerViewController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BeamMusicPlayerViewController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3aee2bddaffb69ce17a8bce99b22e76c459bf8d7","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BeamMusicPlayerViewController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3aee2bddaffb69ce17a8bce99b22e76c459bf8d7","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BeamMusicPlayerViewController"}},{"name":"BeeDebugger","path":"Specs/BeeDebugger","sha":"866fb4f8a7e46f870c3d9f45a501597a6e198baa","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BeeDebugger?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BeeDebugger","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/866fb4f8a7e46f870c3d9f45a501597a6e198baa","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BeeDebugger?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/866fb4f8a7e46f870c3d9f45a501597a6e198baa","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BeeDebugger"}},{"name":"BeeFramework","path":"Specs/BeeFramework","sha":"19722e88545c2afb3d3cdcc86fcd36f37cc34060","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BeeFramework?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BeeFramework","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/19722e88545c2afb3d3cdcc86fcd36f37cc34060","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BeeFramework?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/19722e88545c2afb3d3cdcc86fcd36f37cc34060","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BeeFramework"}},{"name":"BetterBlocks","path":"Specs/BetterBlocks","sha":"103d99d86c38269acd60e4c55726e1369c46cea2","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BetterBlocks?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BetterBlocks","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/103d99d86c38269acd60e4c55726e1369c46cea2","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BetterBlocks?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/103d99d86c38269acd60e4c55726e1369c46cea2","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BetterBlocks"}},{"name":"Bindings","path":"Specs/Bindings","sha":"431e8206adf978364c50cb0aaf16aa03e4eefd2e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Bindings?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Bindings","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/431e8206adf978364c50cb0aaf16aa03e4eefd2e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Bindings?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/431e8206adf978364c50cb0aaf16aa03e4eefd2e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Bindings"}},{"name":"Bitlyzer","path":"Specs/Bitlyzer","sha":"d0ff797f57e5f9418130819e73acc8adc72a37a2","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Bitlyzer?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Bitlyzer","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d0ff797f57e5f9418130819e73acc8adc72a37a2","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Bitlyzer?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d0ff797f57e5f9418130819e73acc8adc72a37a2","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Bitlyzer"}},{"name":"BlockAlertsAnd-ActionSheets","path":"Specs/BlockAlertsAnd-ActionSheets","sha":"3f9b7a243d0f6a338a32569eafa78ec5420f270f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BlockAlertsAnd-ActionSheets?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BlockAlertsAnd-ActionSheets","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3f9b7a243d0f6a338a32569eafa78ec5420f270f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BlockAlertsAnd-ActionSheets?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3f9b7a243d0f6a338a32569eafa78ec5420f270f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BlockAlertsAnd-ActionSheets"}},{"name":"BlockInjection","path":"Specs/BlockInjection","sha":"a715303e24de74bd9709e2b9c611cf748cccb715","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BlockInjection?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BlockInjection","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a715303e24de74bd9709e2b9c611cf748cccb715","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BlockInjection?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a715303e24de74bd9709e2b9c611cf748cccb715","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BlockInjection"}},{"name":"BlockRSSParser","path":"Specs/BlockRSSParser","sha":"37904871ee6f391f86aa52e8cabc24b1e00ff8e4","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BlockRSSParser?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BlockRSSParser","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/37904871ee6f391f86aa52e8cabc24b1e00ff8e4","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BlockRSSParser?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/37904871ee6f391f86aa52e8cabc24b1e00ff8e4","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BlockRSSParser"}},{"name":"BlockTypeDescription","path":"Specs/BlockTypeDescription","sha":"5534a134f6751f56719adf475715153216130899","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BlockTypeDescription?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BlockTypeDescription","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5534a134f6751f56719adf475715153216130899","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BlockTypeDescription?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5534a134f6751f56719adf475715153216130899","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BlockTypeDescription"}},{"name":"BlocksKit","path":"Specs/BlocksKit","sha":"ef9cabdd672cddbb4ba3897a3288a4b63962d677","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BlocksKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BlocksKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ef9cabdd672cddbb4ba3897a3288a4b63962d677","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BlocksKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ef9cabdd672cddbb4ba3897a3288a4b63962d677","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BlocksKit"}},{"name":"BotKit","path":"Specs/BotKit","sha":"5d08379c1eb591ce5e5a6bb9bef205195592b1e7","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BotKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BotKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5d08379c1eb591ce5e5a6bb9bef205195592b1e7","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BotKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5d08379c1eb591ce5e5a6bb9bef205195592b1e7","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BotKit"}},{"name":"Braille","path":"Specs/Braille","sha":"5c885c82efd2c26a5c451b800169911409bf2733","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Braille?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Braille","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5c885c82efd2c26a5c451b800169911409bf2733","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Braille?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5c885c82efd2c26a5c451b800169911409bf2733","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Braille"}},{"name":"Braintree","path":"Specs/Braintree","sha":"92d4305d96dd407c739d9c1730d8b6e8200b3e0d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Braintree?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Braintree","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/92d4305d96dd407c739d9c1730d8b6e8200b3e0d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Braintree?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/92d4305d96dd407c739d9c1730d8b6e8200b3e0d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Braintree"}},{"name":"Brightcove-Video-Cloud-App-SDK-MediaAPI","path":"Specs/Brightcove-Video-Cloud-App-SDK-MediaAPI","sha":"d48141a1656c8e2491827c0afa5383fc6cbe95ad","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Brightcove-Video-Cloud-App-SDK-MediaAPI?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Brightcove-Video-Cloud-App-SDK-MediaAPI","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d48141a1656c8e2491827c0afa5383fc6cbe95ad","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Brightcove-Video-Cloud-App-SDK-MediaAPI?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d48141a1656c8e2491827c0afa5383fc6cbe95ad","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Brightcove-Video-Cloud-App-SDK-MediaAPI"}},{"name":"Brightcove-Video-Cloud-App-SDK-Player-and-Sharing-Kit","path":"Specs/Brightcove-Video-Cloud-App-SDK-Player-and-Sharing-Kit","sha":"91ec439de78848291076d76270b4754fb76244f7","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Brightcove-Video-Cloud-App-SDK-Player-and-Sharing-Kit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Brightcove-Video-Cloud-App-SDK-Player-and-Sharing-Kit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/91ec439de78848291076d76270b4754fb76244f7","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Brightcove-Video-Cloud-App-SDK-Player-and-Sharing-Kit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/91ec439de78848291076d76270b4754fb76244f7","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Brightcove-Video-Cloud-App-SDK-Player-and-Sharing-Kit"}},{"name":"Brightcove-Video-Cloud-Player-SDK","path":"Specs/Brightcove-Video-Cloud-Player-SDK","sha":"79456b17dcd612700c62f34ff26a629a7a98cfb1","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Brightcove-Video-Cloud-Player-SDK?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Brightcove-Video-Cloud-Player-SDK","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/79456b17dcd612700c62f34ff26a629a7a98cfb1","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Brightcove-Video-Cloud-Player-SDK?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/79456b17dcd612700c62f34ff26a629a7a98cfb1","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Brightcove-Video-Cloud-Player-SDK"}},{"name":"BrynKit","path":"Specs/BrynKit","sha":"9461966f8504abecb3b4273e560a591b72df2553","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BrynKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BrynKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9461966f8504abecb3b4273e560a591b72df2553","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BrynKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9461966f8504abecb3b4273e560a591b72df2553","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BrynKit"}},{"name":"BugSense","path":"Specs/BugSense","sha":"912c6937b4162dcfcb69e20fab6d79449c0a1148","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BugSense?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BugSense","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/912c6937b4162dcfcb69e20fab6d79449c0a1148","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BugSense?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/912c6937b4162dcfcb69e20fab6d79449c0a1148","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BugSense"}},{"name":"BugSquasher","path":"Specs/BugSquasher","sha":"bb513041dd0b87c54c00bc32537302ab5d7b0a81","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BugSquasher?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BugSquasher","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/bb513041dd0b87c54c00bc32537302ab5d7b0a81","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/BugSquasher?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/bb513041dd0b87c54c00bc32537302ab5d7b0a81","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/BugSquasher"}},{"name":"Bugsnag","path":"Specs/Bugsnag","sha":"2561674815f19a4bc9571fe8bb4593cae27e46a7","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Bugsnag?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Bugsnag","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2561674815f19a4bc9571fe8bb4593cae27e46a7","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Bugsnag?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2561674815f19a4bc9571fe8bb4593cae27e46a7","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Bugsnag"}},{"name":"Bully","path":"Specs/Bully","sha":"2fdf8220edf6065ea8853a1b5b458b75d1d5faea","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Bully?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Bully","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2fdf8220edf6065ea8853a1b5b458b75d1d5faea","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Bully?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2fdf8220edf6065ea8853a1b5b458b75d1d5faea","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Bully"}},{"name":"Bypass","path":"Specs/Bypass","sha":"05198be776fea5a1c35b27895348848bd339b6ed","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Bypass?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Bypass","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/05198be776fea5a1c35b27895348848bd339b6ed","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Bypass?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/05198be776fea5a1c35b27895348848bd339b6ed","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Bypass"}},{"name":"C360PopoverBackgroundView","path":"Specs/C360PopoverBackgroundView","sha":"73817fa9fab8c93bac0a48cf810c546489fcdbbd","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/C360PopoverBackgroundView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/C360PopoverBackgroundView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/73817fa9fab8c93bac0a48cf810c546489fcdbbd","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/C360PopoverBackgroundView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/73817fa9fab8c93bac0a48cf810c546489fcdbbd","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/C360PopoverBackgroundView"}},{"name":"CAAnimationBlocks","path":"Specs/CAAnimationBlocks","sha":"f4375e3b58155c5e84e7c80ab0cb7acd2a951b9f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CAAnimationBlocks?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CAAnimationBlocks","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f4375e3b58155c5e84e7c80ab0cb7acd2a951b9f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CAAnimationBlocks?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f4375e3b58155c5e84e7c80ab0cb7acd2a951b9f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CAAnimationBlocks"}},{"name":"CBIntrospect","path":"Specs/CBIntrospect","sha":"d5351cb70f4d5a09506f155023c509ec7f8c2bf7","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CBIntrospect?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CBIntrospect","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d5351cb70f4d5a09506f155023c509ec7f8c2bf7","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CBIntrospect?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d5351cb70f4d5a09506f155023c509ec7f8c2bf7","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CBIntrospect"}},{"name":"CCFScrollingTabBar","path":"Specs/CCFScrollingTabBar","sha":"db796322f3a46a0a43a150b855d4227945e67e77","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CCFScrollingTabBar?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CCFScrollingTabBar","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/db796322f3a46a0a43a150b855d4227945e67e77","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CCFScrollingTabBar?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/db796322f3a46a0a43a150b855d4227945e67e77","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CCFScrollingTabBar"}},{"name":"CCNode-SFGestureRecognizers","path":"Specs/CCNode-SFGestureRecognizers","sha":"44f441a86a65e54cd80318f45de52ad964bb21ba","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CCNode-SFGestureRecognizers?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CCNode-SFGestureRecognizers","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/44f441a86a65e54cd80318f45de52ad964bb21ba","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CCNode-SFGestureRecognizers?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/44f441a86a65e54cd80318f45de52ad964bb21ba","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CCNode-SFGestureRecognizers"}},{"name":"CDEvents","path":"Specs/CDEvents","sha":"70333b06463225d5f636cd25c87ab7cd54611c3a","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CDEvents?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CDEvents","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/70333b06463225d5f636cd25c87ab7cd54611c3a","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CDEvents?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/70333b06463225d5f636cd25c87ab7cd54611c3a","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CDEvents"}},{"name":"CDPlistManager","path":"Specs/CDPlistManager","sha":"4acf99bd71a73519a6ccaf9dd0e796dea9de53ee","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CDPlistManager?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CDPlistManager","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4acf99bd71a73519a6ccaf9dd0e796dea9de53ee","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CDPlistManager?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4acf99bd71a73519a6ccaf9dd0e796dea9de53ee","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CDPlistManager"}},{"name":"CDZLinkOpenManager","path":"Specs/CDZLinkOpenManager","sha":"38517e79ec008decbf78faf6841a35e7a795c751","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CDZLinkOpenManager?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CDZLinkOpenManager","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/38517e79ec008decbf78faf6841a35e7a795c751","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CDZLinkOpenManager?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/38517e79ec008decbf78faf6841a35e7a795c751","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CDZLinkOpenManager"}},{"name":"CDZPinger","path":"Specs/CDZPinger","sha":"330d3b1a27cc382f003f795f6ba6cae841dc8f94","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CDZPinger?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CDZPinger","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/330d3b1a27cc382f003f795f6ba6cae841dc8f94","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CDZPinger?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/330d3b1a27cc382f003f795f6ba6cae841dc8f94","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CDZPinger"}},{"name":"CEPopupPickerView","path":"Specs/CEPopupPickerView","sha":"7251d8cd63505a2f3a0a04f83e55f54af1a8261d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CEPopupPickerView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CEPopupPickerView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7251d8cd63505a2f3a0a04f83e55f54af1a8261d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CEPopupPickerView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7251d8cd63505a2f3a0a04f83e55f54af1a8261d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CEPopupPickerView"}},{"name":"CHCSVParser","path":"Specs/CHCSVParser","sha":"14f8b70c5140fb9134cfc56174cf70512491fefa","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CHCSVParser?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CHCSVParser","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/14f8b70c5140fb9134cfc56174cf70512491fefa","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CHCSVParser?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/14f8b70c5140fb9134cfc56174cf70512491fefa","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CHCSVParser"}},{"name":"CHDataStructures","path":"Specs/CHDataStructures","sha":"64165ec7a066f3f2fa8a4b7847a22e6038e97ef4","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CHDataStructures?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CHDataStructures","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/64165ec7a066f3f2fa8a4b7847a22e6038e97ef4","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CHDataStructures?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/64165ec7a066f3f2fa8a4b7847a22e6038e97ef4","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CHDataStructures"}},{"name":"CIALBrowser","path":"Specs/CIALBrowser","sha":"36aa95547b83ae76a35e8315280b71e20a7ee7cf","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CIALBrowser?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CIALBrowser","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/36aa95547b83ae76a35e8315280b71e20a7ee7cf","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CIALBrowser?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/36aa95547b83ae76a35e8315280b71e20a7ee7cf","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CIALBrowser"}},{"name":"CIOAPIClient","path":"Specs/CIOAPIClient","sha":"7bbe7d1dd3420adca75b475f6244dec89fd3e19c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CIOAPIClient?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CIOAPIClient","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7bbe7d1dd3420adca75b475f6244dec89fd3e19c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CIOAPIClient?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7bbe7d1dd3420adca75b475f6244dec89fd3e19c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CIOAPIClient"}},{"name":"CJImageMerge","path":"Specs/CJImageMerge","sha":"570fe71d3aa29ecf4a289566d045fdeda05d1171","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CJImageMerge?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CJImageMerge","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/570fe71d3aa29ecf4a289566d045fdeda05d1171","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CJImageMerge?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/570fe71d3aa29ecf4a289566d045fdeda05d1171","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CJImageMerge"}},{"name":"CJInfinityScroll","path":"Specs/CJInfinityScroll","sha":"43d274742b8d0c352a1b28be24bf99f80ab60c5c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CJInfinityScroll?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CJInfinityScroll","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/43d274742b8d0c352a1b28be24bf99f80ab60c5c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CJInfinityScroll?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/43d274742b8d0c352a1b28be24bf99f80ab60c5c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CJInfinityScroll"}},{"name":"CJRouter","path":"Specs/CJRouter","sha":"02bfd43eff8d7d77e4ace8c45337aa43841aad04","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CJRouter?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CJRouter","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/02bfd43eff8d7d77e4ace8c45337aa43841aad04","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CJRouter?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/02bfd43eff8d7d77e4ace8c45337aa43841aad04","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CJRouter"}},{"name":"CJString","path":"Specs/CJString","sha":"7fb20e5b497204282a7dba62d2933ce715b5bf24","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CJString?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CJString","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7fb20e5b497204282a7dba62d2933ce715b5bf24","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CJString?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7fb20e5b497204282a7dba62d2933ce715b5bf24","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CJString"}},{"name":"CJStringValidator","path":"Specs/CJStringValidator","sha":"e9a5cc772f8fa7bfa68034de155115c726723e3e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CJStringValidator?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CJStringValidator","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e9a5cc772f8fa7bfa68034de155115c726723e3e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CJStringValidator?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e9a5cc772f8fa7bfa68034de155115c726723e3e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CJStringValidator"}},{"name":"CKCalendar","path":"Specs/CKCalendar","sha":"3e8c1d1eae28fcbbc6d6697e0772533a3a26d822","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CKCalendar?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CKCalendar","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3e8c1d1eae28fcbbc6d6697e0772533a3a26d822","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CKCalendar?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3e8c1d1eae28fcbbc6d6697e0772533a3a26d822","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CKCalendar"}},{"name":"CKRefreshControl","path":"Specs/CKRefreshControl","sha":"db5f05934e6851491824994a7a1b5208900c5400","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CKRefreshControl?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CKRefreshControl","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/db5f05934e6851491824994a7a1b5208900c5400","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CKRefreshControl?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/db5f05934e6851491824994a7a1b5208900c5400","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CKRefreshControl"}},{"name":"CKUITools","path":"Specs/CKUITools","sha":"ca82efbaaa3fab5c5d31d5dc1fb8292313bdb828","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CKUITools?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CKUITools","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ca82efbaaa3fab5c5d31d5dc1fb8292313bdb828","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CKUITools?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ca82efbaaa3fab5c5d31d5dc1fb8292313bdb828","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CKUITools"}},{"name":"CMEnvironment","path":"Specs/CMEnvironment","sha":"f3babe3e2b5646119c59983afc39fbaae258dc6e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CMEnvironment?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CMEnvironment","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f3babe3e2b5646119c59983afc39fbaae258dc6e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CMEnvironment?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f3babe3e2b5646119c59983afc39fbaae258dc6e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CMEnvironment"}},{"name":"CMFactory","path":"Specs/CMFactory","sha":"d58a9a6623f02ac4e6bed4fd3fc61fed92aa2bf0","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CMFactory?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CMFactory","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d58a9a6623f02ac4e6bed4fd3fc61fed92aa2bf0","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CMFactory?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d58a9a6623f02ac4e6bed4fd3fc61fed92aa2bf0","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CMFactory"}},{"name":"CMHTMLView","path":"Specs/CMHTMLView","sha":"5dcf61771333f2b3b6a21ae7b4548fbcc8fa7105","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CMHTMLView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CMHTMLView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5dcf61771333f2b3b6a21ae7b4548fbcc8fa7105","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CMHTMLView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5dcf61771333f2b3b6a21ae7b4548fbcc8fa7105","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CMHTMLView"}},{"name":"CMNavBarNotificationView","path":"Specs/CMNavBarNotificationView","sha":"784e12ba9fc1b9259a047e2acb0fbf490d730197","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CMNavBarNotificationView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CMNavBarNotificationView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/784e12ba9fc1b9259a047e2acb0fbf490d730197","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CMNavBarNotificationView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/784e12ba9fc1b9259a047e2acb0fbf490d730197","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CMNavBarNotificationView"}},{"name":"CMPopTipView","path":"Specs/CMPopTipView","sha":"0f2ad7fa8d99065f23b3f14900b94ded650ec662","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CMPopTipView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CMPopTipView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0f2ad7fa8d99065f23b3f14900b94ded650ec662","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CMPopTipView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0f2ad7fa8d99065f23b3f14900b94ded650ec662","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CMPopTipView"}},{"name":"CMSetController","path":"Specs/CMSetController","sha":"2be12e287bc7822b18ce4cdf8434db105cda06a8","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CMSetController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CMSetController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2be12e287bc7822b18ce4cdf8434db105cda06a8","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CMSetController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2be12e287bc7822b18ce4cdf8434db105cda06a8","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CMSetController"}},{"name":"CNBackstageController","path":"Specs/CNBackstageController","sha":"1c8e66424c6f97b93284725b22c5b3803f5765a2","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CNBackstageController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CNBackstageController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1c8e66424c6f97b93284725b22c5b3803f5765a2","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CNBackstageController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1c8e66424c6f97b93284725b22c5b3803f5765a2","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CNBackstageController"}},{"name":"CNBaseView","path":"Specs/CNBaseView","sha":"22e966e24ac11afe68018e7f58556228c29fd354","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CNBaseView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CNBaseView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/22e966e24ac11afe68018e7f58556228c29fd354","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CNBaseView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/22e966e24ac11afe68018e7f58556228c29fd354","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CNBaseView"}},{"name":"CNGridView","path":"Specs/CNGridView","sha":"2b9c4b72c47ee425ec89e98f15ed5dca658a804c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CNGridView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CNGridView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2b9c4b72c47ee425ec89e98f15ed5dca658a804c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CNGridView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2b9c4b72c47ee425ec89e98f15ed5dca658a804c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CNGridView"}},{"name":"CNSKit","path":"Specs/CNSKit","sha":"b7de034e560d7b45bf552d9edcadef2424adb07b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CNSKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CNSKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b7de034e560d7b45bf552d9edcadef2424adb07b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CNSKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b7de034e560d7b45bf552d9edcadef2424adb07b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CNSKit"}},{"name":"CNSplitView","path":"Specs/CNSplitView","sha":"7c0809fbd0f4c8cacb4cc1b3758b93d92d7f87d0","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CNSplitView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CNSplitView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7c0809fbd0f4c8cacb4cc1b3758b93d92d7f87d0","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CNSplitView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7c0809fbd0f4c8cacb4cc1b3758b93d92d7f87d0","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CNSplitView"}},{"name":"CODialog","path":"Specs/CODialog","sha":"1b972e20a4ad5a5feefc1b3a2c84ab9163ae2a41","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CODialog?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CODialog","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1b972e20a4ad5a5feefc1b3a2c84ab9163ae2a41","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CODialog?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1b972e20a4ad5a5feefc1b3a2c84ab9163ae2a41","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CODialog"}},{"name":"COPeoplePickerViewController","path":"Specs/COPeoplePickerViewController","sha":"3c5f6d194eb78fe73514b3e405d06fa900c39f27","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/COPeoplePickerViewController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/COPeoplePickerViewController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3c5f6d194eb78fe73514b3e405d06fa900c39f27","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/COPeoplePickerViewController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3c5f6d194eb78fe73514b3e405d06fa900c39f27","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/COPeoplePickerViewController"}},{"name":"CPAnimationSequence","path":"Specs/CPAnimationSequence","sha":"b88b0465f3dad867b187c09919d6ae084d4c12a0","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CPAnimationSequence?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CPAnimationSequence","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b88b0465f3dad867b187c09919d6ae084d4c12a0","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CPAnimationSequence?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b88b0465f3dad867b187c09919d6ae084d4c12a0","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CPAnimationSequence"}},{"name":"CRBoilerplate","path":"Specs/CRBoilerplate","sha":"3f6010c8c4dd729e67380b011c2d2c51fdb3404d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CRBoilerplate?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CRBoilerplate","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3f6010c8c4dd729e67380b011c2d2c51fdb3404d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CRBoilerplate?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3f6010c8c4dd729e67380b011c2d2c51fdb3404d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CRBoilerplate"}},{"name":"CSColorizedProgressView","path":"Specs/CSColorizedProgressView","sha":"a160d0bf7217e3d15ac27197bc8e36a281725f27","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CSColorizedProgressView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CSColorizedProgressView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a160d0bf7217e3d15ac27197bc8e36a281725f27","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CSColorizedProgressView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a160d0bf7217e3d15ac27197bc8e36a281725f27","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CSColorizedProgressView"}},{"name":"CSLinearLayoutView","path":"Specs/CSLinearLayoutView","sha":"31240dcdcb9308bbe1d97aaec2c461e41e8171a5","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CSLinearLayoutView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CSLinearLayoutView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/31240dcdcb9308bbe1d97aaec2c461e41e8171a5","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CSLinearLayoutView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/31240dcdcb9308bbe1d97aaec2c461e41e8171a5","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CSLinearLayoutView"}},{"name":"CSURITemplate","path":"Specs/CSURITemplate","sha":"62c54029df72735898aec027a8def62259c745c8","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CSURITemplate?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CSURITemplate","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/62c54029df72735898aec027a8def62259c745c8","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CSURITemplate?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/62c54029df72735898aec027a8def62259c745c8","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CSURITemplate"}},{"name":"CSV","path":"Specs/CSV","sha":"e9a200aae953082f9da64f789730261cc013b595","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CSV?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CSV","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e9a200aae953082f9da64f789730261cc013b595","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CSV?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e9a200aae953082f9da64f789730261cc013b595","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CSV"}},{"name":"CTidy","path":"Specs/CTidy","sha":"93fad4ef317f0f2abc5efc69706463fd13031a30","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CTidy?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CTidy","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/93fad4ef317f0f2abc5efc69706463fd13031a30","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CTidy?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/93fad4ef317f0f2abc5efc69706463fd13031a30","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CTidy"}},{"name":"CVUMoviePlayerView","path":"Specs/CVUMoviePlayerView","sha":"5c7bdb09e5a60d660942e173d63cfe56fdd18821","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CVUMoviePlayerView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CVUMoviePlayerView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5c7bdb09e5a60d660942e173d63cfe56fdd18821","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CVUMoviePlayerView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5c7bdb09e5a60d660942e173d63cfe56fdd18821","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CVUMoviePlayerView"}},{"name":"CWLSynthesizeSingleton","path":"Specs/CWLSynthesizeSingleton","sha":"92b271b22ef8ab48a3e1796ebb66b444242cbbe1","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CWLSynthesizeSingleton?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CWLSynthesizeSingleton","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/92b271b22ef8ab48a3e1796ebb66b444242cbbe1","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CWLSynthesizeSingleton?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/92b271b22ef8ab48a3e1796ebb66b444242cbbe1","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CWLSynthesizeSingleton"}},{"name":"CZDateFormatterCache","path":"Specs/CZDateFormatterCache","sha":"7241fffb0e511e2cca4b37e335ea87a9ef444d08","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CZDateFormatterCache?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CZDateFormatterCache","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7241fffb0e511e2cca4b37e335ea87a9ef444d08","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CZDateFormatterCache?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7241fffb0e511e2cca4b37e335ea87a9ef444d08","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CZDateFormatterCache"}},{"name":"CZGPolygonLayer","path":"Specs/CZGPolygonLayer","sha":"e36c7f23c920b291fc0872629bf0d09a1b0f9c56","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CZGPolygonLayer?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CZGPolygonLayer","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e36c7f23c920b291fc0872629bf0d09a1b0f9c56","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CZGPolygonLayer?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e36c7f23c920b291fc0872629bf0d09a1b0f9c56","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CZGPolygonLayer"}},{"name":"CZGSpinLayer","path":"Specs/CZGSpinLayer","sha":"ff1518bab3737ec1695ce7bd58fb409cc58ef57e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CZGSpinLayer?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CZGSpinLayer","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ff1518bab3737ec1695ce7bd58fb409cc58ef57e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CZGSpinLayer?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ff1518bab3737ec1695ce7bd58fb409cc58ef57e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CZGSpinLayer"}},{"name":"CZGTextureCreator","path":"Specs/CZGTextureCreator","sha":"fba8937ebe6f6dbd633958f2155dbbb5dac8e969","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CZGTextureCreator?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CZGTextureCreator","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fba8937ebe6f6dbd633958f2155dbbb5dac8e969","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CZGTextureCreator?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fba8937ebe6f6dbd633958f2155dbbb5dac8e969","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CZGTextureCreator"}},{"name":"CZPhotoPickerController","path":"Specs/CZPhotoPickerController","sha":"049c55580f1e35bd616f904db0f66e5b764976df","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CZPhotoPickerController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CZPhotoPickerController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/049c55580f1e35bd616f904db0f66e5b764976df","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CZPhotoPickerController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/049c55580f1e35bd616f904db0f66e5b764976df","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CZPhotoPickerController"}},{"name":"Caboodle","path":"Specs/Caboodle","sha":"b3271a3183f91d1b4d17e80daec53d78fa35b58c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Caboodle?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Caboodle","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b3271a3183f91d1b4d17e80daec53d78fa35b58c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Caboodle?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b3271a3183f91d1b4d17e80daec53d78fa35b58c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Caboodle"}},{"name":"Calabash-server","path":"Specs/Calabash-server","sha":"c26a469248285b7ca3c4cabc8b93ae04ac19d42f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Calabash-server?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Calabash-server","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c26a469248285b7ca3c4cabc8b93ae04ac19d42f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Calabash-server?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c26a469248285b7ca3c4cabc8b93ae04ac19d42f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Calabash-server"}},{"name":"Calabash","path":"Specs/Calabash","sha":"6a6d55819b55603eba0fc60dbecfb39e02feb085","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Calabash?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Calabash","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6a6d55819b55603eba0fc60dbecfb39e02feb085","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Calabash?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6a6d55819b55603eba0fc60dbecfb39e02feb085","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Calabash"}},{"name":"CameraPlusIntegration","path":"Specs/CameraPlusIntegration","sha":"1b09fc497729bb19f17855b37e858caf4076b3f9","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CameraPlusIntegration?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CameraPlusIntegration","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1b09fc497729bb19f17855b37e858caf4076b3f9","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CameraPlusIntegration?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1b09fc497729bb19f17855b37e858caf4076b3f9","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CameraPlusIntegration"}},{"name":"CaptureRecord","path":"Specs/CaptureRecord","sha":"cbadb7611f57733f46b3f888ea4964f3f427596e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CaptureRecord?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CaptureRecord","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/cbadb7611f57733f46b3f888ea4964f3f427596e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CaptureRecord?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/cbadb7611f57733f46b3f888ea4964f3f427596e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CaptureRecord"}},{"name":"CargoBay","path":"Specs/CargoBay","sha":"1a6df9125f953071552e3265493e92ea1c4c6891","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CargoBay?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CargoBay","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1a6df9125f953071552e3265493e92ea1c4c6891","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CargoBay?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1a6df9125f953071552e3265493e92ea1c4c6891","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CargoBay"}},{"name":"CaulySDK","path":"Specs/CaulySDK","sha":"93382e88bf658f0ad8fcfb1f6dc9e07af204f0c3","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CaulySDK?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CaulySDK","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/93382e88bf658f0ad8fcfb1f6dc9e07af204f0c3","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CaulySDK?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/93382e88bf658f0ad8fcfb1f6dc9e07af204f0c3","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CaulySDK"}},{"name":"Cedar","path":"Specs/Cedar","sha":"49f6b0ede2dc2981af56718b0001ab1d8fcfada3","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Cedar?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Cedar","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/49f6b0ede2dc2981af56718b0001ab1d8fcfada3","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Cedar?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/49f6b0ede2dc2981af56718b0001ab1d8fcfada3","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Cedar"}},{"name":"CedarAsync","path":"Specs/CedarAsync","sha":"013af1df5409dad11e0abe39684a8843eb934cb7","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CedarAsync?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CedarAsync","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/013af1df5409dad11e0abe39684a8843eb934cb7","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CedarAsync?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/013af1df5409dad11e0abe39684a8843eb934cb7","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CedarAsync"}},{"name":"Chameleon","path":"Specs/Chameleon","sha":"9adddd39f767dd3972a4862f07705534bb663328","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Chameleon?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Chameleon","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9adddd39f767dd3972a4862f07705534bb663328","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Chameleon?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9adddd39f767dd3972a4862f07705534bb663328","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Chameleon"}},{"name":"ChartboostSDK","path":"Specs/ChartboostSDK","sha":"e2ceb2e61d07041ef172fbd98652b7d137a92f12","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ChartboostSDK?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ChartboostSDK","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e2ceb2e61d07041ef172fbd98652b7d137a92f12","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ChartboostSDK?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e2ceb2e61d07041ef172fbd98652b7d137a92f12","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ChartboostSDK"}},{"name":"ChromaHash","path":"Specs/ChromaHash","sha":"40b4d8c165d714cc9dad4756570e4f5fe5eb4510","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ChromaHash?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ChromaHash","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/40b4d8c165d714cc9dad4756570e4f5fe5eb4510","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ChromaHash?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/40b4d8c165d714cc9dad4756570e4f5fe5eb4510","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ChromaHash"}},{"name":"ClassMapper","path":"Specs/ClassMapper","sha":"5da28ec7a6b5771198e89a25e76636a9e888cb93","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ClassMapper?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ClassMapper","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5da28ec7a6b5771198e89a25e76636a9e888cb93","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ClassMapper?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5da28ec7a6b5771198e89a25e76636a9e888cb93","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ClassMapper"}},{"name":"Cloudinary","path":"Specs/Cloudinary","sha":"679421d57ca26e92ce44ffc2470244e1e7002563","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Cloudinary?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Cloudinary","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/679421d57ca26e92ce44ffc2470244e1e7002563","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Cloudinary?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/679421d57ca26e92ce44ffc2470244e1e7002563","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Cloudinary"}},{"name":"Clutch","path":"Specs/Clutch","sha":"548a2492d932d5539c688bcdf30ad3912182df4f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Clutch?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Clutch","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/548a2492d932d5539c688bcdf30ad3912182df4f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Clutch?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/548a2492d932d5539c688bcdf30ad3912182df4f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Clutch"}},{"name":"CocoaActiveModel","path":"Specs/CocoaActiveModel","sha":"2c5de49c3aba8645180cad5ed1c4069daef3c90f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CocoaActiveModel?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CocoaActiveModel","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2c5de49c3aba8645180cad5ed1c4069daef3c90f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CocoaActiveModel?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2c5de49c3aba8645180cad5ed1c4069daef3c90f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CocoaActiveModel"}},{"name":"CocoaAsyncSocket","path":"Specs/CocoaAsyncSocket","sha":"ed757e078c5e754d6fd5c22fe90321ea8f763663","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CocoaAsyncSocket?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CocoaAsyncSocket","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ed757e078c5e754d6fd5c22fe90321ea8f763663","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CocoaAsyncSocket?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ed757e078c5e754d6fd5c22fe90321ea8f763663","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CocoaAsyncSocket"}},{"name":"CocoaHTTPServer","path":"Specs/CocoaHTTPServer","sha":"e367103a57a44bfc817759fa8b95ff4efddf4c2c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CocoaHTTPServer?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CocoaHTTPServer","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e367103a57a44bfc817759fa8b95ff4efddf4c2c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CocoaHTTPServer?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e367103a57a44bfc817759fa8b95ff4efddf4c2c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CocoaHTTPServer"}},{"name":"CocoaLibSpotify","path":"Specs/CocoaLibSpotify","sha":"67614082ab278743d70a7ef329c9f1add8694bcc","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CocoaLibSpotify?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CocoaLibSpotify","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/67614082ab278743d70a7ef329c9f1add8694bcc","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CocoaLibSpotify?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/67614082ab278743d70a7ef329c9f1add8694bcc","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CocoaLibSpotify"}},{"name":"CocoaLumberjack","path":"Specs/CocoaLumberjack","sha":"53918abc85a4889bfcaa0476bc54526bb75733f2","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CocoaLumberjack?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CocoaLumberjack","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/53918abc85a4889bfcaa0476bc54526bb75733f2","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CocoaLumberjack?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/53918abc85a4889bfcaa0476bc54526bb75733f2","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CocoaLumberjack"}},{"name":"CocoaSecurity","path":"Specs/CocoaSecurity","sha":"274995f133073315837a2d9d60ac1c277e277775","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CocoaSecurity?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CocoaSecurity","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/274995f133073315837a2d9d60ac1c277e277775","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CocoaSecurity?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/274995f133073315837a2d9d60ac1c277e277775","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CocoaSecurity"}},{"name":"CocoaSoundCloudAPI","path":"Specs/CocoaSoundCloudAPI","sha":"aad054e1a4ddde08c2237760a04c8104b063f42b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CocoaSoundCloudAPI?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CocoaSoundCloudAPI","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/aad054e1a4ddde08c2237760a04c8104b063f42b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CocoaSoundCloudAPI?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/aad054e1a4ddde08c2237760a04c8104b063f42b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CocoaSoundCloudAPI"}},{"name":"CocoaSoundCloudUI","path":"Specs/CocoaSoundCloudUI","sha":"0fa7db5b824d0644aea21894762e24dabce5eec5","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CocoaSoundCloudUI?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CocoaSoundCloudUI","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0fa7db5b824d0644aea21894762e24dabce5eec5","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CocoaSoundCloudUI?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0fa7db5b824d0644aea21894762e24dabce5eec5","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CocoaSoundCloudUI"}},{"name":"CoconutKit","path":"Specs/CoconutKit","sha":"4096dbf96254c9c083e4af4c0ebf5bf44dea627b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CoconutKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CoconutKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4096dbf96254c9c083e4af4c0ebf5bf44dea627b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CoconutKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4096dbf96254c9c083e4af4c0ebf5bf44dea627b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CoconutKit"}},{"name":"CollapseClick","path":"Specs/CollapseClick","sha":"1198fcfeb69d5a9b3d4fcbc51dec31ee5090d13f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CollapseClick?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CollapseClick","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1198fcfeb69d5a9b3d4fcbc51dec31ee5090d13f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CollapseClick?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1198fcfeb69d5a9b3d4fcbc51dec31ee5090d13f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CollapseClick"}},{"name":"Color-Picker-for-iOS","path":"Specs/Color-Picker-for-iOS","sha":"4a0da225459bd6e08f67d6b4025d2d8b30c33c05","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Color-Picker-for-iOS?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Color-Picker-for-iOS","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4a0da225459bd6e08f67d6b4025d2d8b30c33c05","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Color-Picker-for-iOS?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4a0da225459bd6e08f67d6b4025d2d8b30c33c05","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Color-Picker-for-iOS"}},{"name":"ColorArt","path":"Specs/ColorArt","sha":"3109f07647e7756febe9bb7624b3936b6bcae14f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ColorArt?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ColorArt","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3109f07647e7756febe9bb7624b3936b6bcae14f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ColorArt?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3109f07647e7756febe9bb7624b3936b6bcae14f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ColorArt"}},{"name":"ColorPopover","path":"Specs/ColorPopover","sha":"23c8e305bd0e9fb924d95689ed02c59ece4c962b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ColorPopover?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ColorPopover","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/23c8e305bd0e9fb924d95689ed02c59ece4c962b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ColorPopover?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/23c8e305bd0e9fb924d95689ed02c59ece4c962b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ColorPopover"}},{"name":"Colours","path":"Specs/Colours","sha":"c23954e40def8a8aa8e95eccfb7430d73f736fd8","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Colours?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Colours","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c23954e40def8a8aa8e95eccfb7430d73f736fd8","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Colours?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c23954e40def8a8aa8e95eccfb7430d73f736fd8","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Colours"}},{"name":"CommonCrypto","path":"Specs/CommonCrypto","sha":"8662d9fe6ae36875b202b7bd0d16f79c9acf994b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CommonCrypto?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CommonCrypto","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8662d9fe6ae36875b202b7bd0d16f79c9acf994b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CommonCrypto?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8662d9fe6ae36875b202b7bd0d16f79c9acf994b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CommonCrypto"}},{"name":"ConciseKit","path":"Specs/ConciseKit","sha":"33897cdf026bc4c9c3e718c7a3ad6f167d71d978","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ConciseKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ConciseKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/33897cdf026bc4c9c3e718c7a3ad6f167d71d978","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ConciseKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/33897cdf026bc4c9c3e718c7a3ad6f167d71d978","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ConciseKit"}},{"name":"Cordova","path":"Specs/Cordova","sha":"3b6e662d8d9cfccbb6f4189be14b92beac6cac12","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Cordova?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Cordova","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3b6e662d8d9cfccbb6f4189be14b92beac6cac12","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Cordova?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3b6e662d8d9cfccbb6f4189be14b92beac6cac12","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Cordova"}},{"name":"CoreParse","path":"Specs/CoreParse","sha":"afdc4d0ee31be2ae7dd790f8136eaa6631e31eb9","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CoreParse?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CoreParse","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/afdc4d0ee31be2ae7dd790f8136eaa6631e31eb9","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CoreParse?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/afdc4d0ee31be2ae7dd790f8136eaa6631e31eb9","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CoreParse"}},{"name":"CorePlot","path":"Specs/CorePlot","sha":"5ada83ad3a67e0d514fdd478eecff9eb87b9f57b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CorePlot?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CorePlot","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5ada83ad3a67e0d514fdd478eecff9eb87b9f57b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CorePlot?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5ada83ad3a67e0d514fdd478eecff9eb87b9f57b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CorePlot"}},{"name":"CoreTextLabel","path":"Specs/CoreTextLabel","sha":"1cc9038282cd2f1a43e56cbbb9450dd8f83f38fb","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CoreTextLabel?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CoreTextLabel","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1cc9038282cd2f1a43e56cbbb9450dd8f83f38fb","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CoreTextLabel?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1cc9038282cd2f1a43e56cbbb9450dd8f83f38fb","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CoreTextLabel"}},{"name":"CoreTextToy","path":"Specs/CoreTextToy","sha":"a11610f9fb85a75eb11735392d89a4ad4fe5d87a","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CoreTextToy?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CoreTextToy","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a11610f9fb85a75eb11735392d89a4ad4fe5d87a","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CoreTextToy?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a11610f9fb85a75eb11735392d89a4ad4fe5d87a","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CoreTextToy"}},{"name":"CouchCocoa","path":"Specs/CouchCocoa","sha":"17cb04ecccd0058494ad6b54cca6c4d95b1e96fb","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CouchCocoa?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CouchCocoa","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/17cb04ecccd0058494ad6b54cca6c4d95b1e96fb","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CouchCocoa?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/17cb04ecccd0058494ad6b54cca6c4d95b1e96fb","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CouchCocoa"}},{"name":"Countly","path":"Specs/Countly","sha":"9bb26d4ddcc7748f7dc24fc062a1454436b600a2","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Countly?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Countly","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9bb26d4ddcc7748f7dc24fc062a1454436b600a2","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Countly?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9bb26d4ddcc7748f7dc24fc062a1454436b600a2","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Countly"}},{"name":"CountryPicker","path":"Specs/CountryPicker","sha":"1827f35e56ee525b5ad09e2ab888aad45453ad1d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CountryPicker?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CountryPicker","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1827f35e56ee525b5ad09e2ab888aad45453ad1d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CountryPicker?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1827f35e56ee525b5ad09e2ab888aad45453ad1d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CountryPicker"}},{"name":"CreateSend","path":"Specs/CreateSend","sha":"8fa4f7622af0914a030467dd3a8dab97dc6107ad","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CreateSend?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CreateSend","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8fa4f7622af0914a030467dd3a8dab97dc6107ad","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CreateSend?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8fa4f7622af0914a030467dd3a8dab97dc6107ad","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CreateSend"}},{"name":"CreditCardCheck","path":"Specs/CreditCardCheck","sha":"8f9d9758b73da1db9d786fda3385ac965e21acd1","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CreditCardCheck?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CreditCardCheck","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8f9d9758b73da1db9d786fda3385ac965e21acd1","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CreditCardCheck?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8f9d9758b73da1db9d786fda3385ac965e21acd1","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CreditCardCheck"}},{"name":"CrittercismSDK","path":"Specs/CrittercismSDK","sha":"bea92f43d4c747b39364735628116cdcfca218be","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CrittercismSDK?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CrittercismSDK","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/bea92f43d4c747b39364735628116cdcfca218be","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CrittercismSDK?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/bea92f43d4c747b39364735628116cdcfca218be","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CrittercismSDK"}},{"name":"CupertinoYankee","path":"Specs/CupertinoYankee","sha":"503e62a00ee30a8d51a34960cc6c7b4ca1622ade","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CupertinoYankee?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CupertinoYankee","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/503e62a00ee30a8d51a34960cc6c7b4ca1622ade","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CupertinoYankee?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/503e62a00ee30a8d51a34960cc6c7b4ca1622ade","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CupertinoYankee"}},{"name":"CustomBadge","path":"Specs/CustomBadge","sha":"f1e4282957b735a0baf1921341a21aa3b87b0993","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CustomBadge?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CustomBadge","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f1e4282957b735a0baf1921341a21aa3b87b0993","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/CustomBadge?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f1e4282957b735a0baf1921341a21aa3b87b0993","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/CustomBadge"}},{"name":"DAAppsViewController","path":"Specs/DAAppsViewController","sha":"2d9473bf8adad0adab4d21d9aec6f9e90866ffa0","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DAAppsViewController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DAAppsViewController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2d9473bf8adad0adab4d21d9aec6f9e90866ffa0","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DAAppsViewController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2d9473bf8adad0adab4d21d9aec6f9e90866ffa0","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DAAppsViewController"}},{"name":"DACircularProgress","path":"Specs/DACircularProgress","sha":"a60eec907978b6389aa796549e695844c5b8ed87","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DACircularProgress?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DACircularProgress","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a60eec907978b6389aa796549e695844c5b8ed87","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DACircularProgress?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a60eec907978b6389aa796549e695844c5b8ed87","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DACircularProgress"}},{"name":"DAKeyboardControl","path":"Specs/DAKeyboardControl","sha":"3b402cad833e9dc9fb761ae0e9c4dbe1df7312d2","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DAKeyboardControl?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DAKeyboardControl","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3b402cad833e9dc9fb761ae0e9c4dbe1df7312d2","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DAKeyboardControl?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3b402cad833e9dc9fb761ae0e9c4dbe1df7312d2","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DAKeyboardControl"}},{"name":"DBFBProfilePictureView","path":"Specs/DBFBProfilePictureView","sha":"5bc763ffb361700884938cfdd9d0f54e8a415607","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DBFBProfilePictureView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DBFBProfilePictureView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5bc763ffb361700884938cfdd9d0f54e8a415607","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DBFBProfilePictureView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5bc763ffb361700884938cfdd9d0f54e8a415607","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DBFBProfilePictureView"}},{"name":"DBKit","path":"Specs/DBKit","sha":"b807a51347e3fa114c3abc046f59b57ca4a133c9","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DBKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DBKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b807a51347e3fa114c3abc046f59b57ca4a133c9","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DBKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b807a51347e3fa114c3abc046f59b57ca4a133c9","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DBKit"}},{"name":"DBPrefsWindowController","path":"Specs/DBPrefsWindowController","sha":"5b4b52460345bd5de8c161a3cb8134c66b3ce9fe","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DBPrefsWindowController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DBPrefsWindowController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5b4b52460345bd5de8c161a3cb8134c66b3ce9fe","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DBPrefsWindowController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5b4b52460345bd5de8c161a3cb8134c66b3ce9fe","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DBPrefsWindowController"}},{"name":"DCButton","path":"Specs/DCButton","sha":"ba007b4630b37d9185cd505d3bd0a8027566df72","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DCButton?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DCButton","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ba007b4630b37d9185cd505d3bd0a8027566df72","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DCButton?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ba007b4630b37d9185cd505d3bd0a8027566df72","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DCButton"}},{"name":"DCDataViews","path":"Specs/DCDataViews","sha":"78c64319f4eccfdb226c97cbc1bd9aaf5e6a5330","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DCDataViews?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DCDataViews","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/78c64319f4eccfdb226c97cbc1bd9aaf5e6a5330","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DCDataViews?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/78c64319f4eccfdb226c97cbc1bd9aaf5e6a5330","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DCDataViews"}},{"name":"DCImageView","path":"Specs/DCImageView","sha":"b8c5c1bc2e206e7f7d294276490a0ab7a5df1551","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DCImageView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DCImageView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b8c5c1bc2e206e7f7d294276490a0ab7a5df1551","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DCImageView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b8c5c1bc2e206e7f7d294276490a0ab7a5df1551","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DCImageView"}},{"name":"DCIntrospect","path":"Specs/DCIntrospect","sha":"a6ba31e625ad8160ea64d65d6790d197f774aa21","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DCIntrospect?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DCIntrospect","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a6ba31e625ad8160ea64d65d6790d197f774aa21","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DCIntrospect?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a6ba31e625ad8160ea64d65d6790d197f774aa21","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DCIntrospect"}},{"name":"DCKeyValueObjectMapping","path":"Specs/DCKeyValueObjectMapping","sha":"2755ff795d1d625d3e99080a26b8ea60fe1c715b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DCKeyValueObjectMapping?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DCKeyValueObjectMapping","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2755ff795d1d625d3e99080a26b8ea60fe1c715b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DCKeyValueObjectMapping?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2755ff795d1d625d3e99080a26b8ea60fe1c715b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DCKeyValueObjectMapping"}},{"name":"DCLabel","path":"Specs/DCLabel","sha":"b09d35ca7574483f9eb6182485beb0702219b317","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DCLabel?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DCLabel","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b09d35ca7574483f9eb6182485beb0702219b317","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DCLabel?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b09d35ca7574483f9eb6182485beb0702219b317","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DCLabel"}},{"name":"DCModalSegue","path":"Specs/DCModalSegue","sha":"052dc12b6c584020aa21d53a92d82f5e5101f494","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DCModalSegue?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DCModalSegue","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/052dc12b6c584020aa21d53a92d82f5e5101f494","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DCModalSegue?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/052dc12b6c584020aa21d53a92d82f5e5101f494","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DCModalSegue"}},{"name":"DCModel","path":"Specs/DCModel","sha":"65366e54209360a23741f48ecb8257d04cccfd11","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DCModel?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DCModel","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/65366e54209360a23741f48ecb8257d04cccfd11","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DCModel?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/65366e54209360a23741f48ecb8257d04cccfd11","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DCModel"}},{"name":"DCProgressView","path":"Specs/DCProgressView","sha":"6ce6f0a0d1f159d497837798f847fceab1d336ff","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DCProgressView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DCProgressView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6ce6f0a0d1f159d497837798f847fceab1d336ff","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DCProgressView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6ce6f0a0d1f159d497837798f847fceab1d336ff","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DCProgressView"}},{"name":"DCRoundSwitch","path":"Specs/DCRoundSwitch","sha":"a8aba63d40713918a7f92cd368b00eb9ad470a7a","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DCRoundSwitch?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DCRoundSwitch","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a8aba63d40713918a7f92cd368b00eb9ad470a7a","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DCRoundSwitch?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a8aba63d40713918a7f92cd368b00eb9ad470a7a","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DCRoundSwitch"}},{"name":"DCTTextFieldValidator","path":"Specs/DCTTextFieldValidator","sha":"d9967903feb3b49e6293f03426b601e70c1cfa65","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DCTTextFieldValidator?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DCTTextFieldValidator","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d9967903feb3b49e6293f03426b601e70c1cfa65","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DCTTextFieldValidator?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d9967903feb3b49e6293f03426b601e70c1cfa65","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DCTTextFieldValidator"}},{"name":"DDExpandableButton","path":"Specs/DDExpandableButton","sha":"b9b2e3e5e00e91e70a3b0ef3b9ecabd731ae239c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DDExpandableButton?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DDExpandableButton","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b9b2e3e5e00e91e70a3b0ef3b9ecabd731ae239c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DDExpandableButton?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b9b2e3e5e00e91e70a3b0ef3b9ecabd731ae239c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DDExpandableButton"}},{"name":"DDGoogleAnalytics-OSX","path":"Specs/DDGoogleAnalytics-OSX","sha":"6d4c8cbaa2328ed6bed7d989809e87704438eaf5","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DDGoogleAnalytics-OSX?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DDGoogleAnalytics-OSX","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6d4c8cbaa2328ed6bed7d989809e87704438eaf5","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DDGoogleAnalytics-OSX?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6d4c8cbaa2328ed6bed7d989809e87704438eaf5","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DDGoogleAnalytics-OSX"}},{"name":"DDMicrophoneBlowDetector","path":"Specs/DDMicrophoneBlowDetector","sha":"82d99fa6f93028264e06e3f8a2d3e1d3e4dd232e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DDMicrophoneBlowDetector?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DDMicrophoneBlowDetector","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/82d99fa6f93028264e06e3f8a2d3e1d3e4dd232e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DDMicrophoneBlowDetector?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/82d99fa6f93028264e06e3f8a2d3e1d3e4dd232e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DDMicrophoneBlowDetector"}},{"name":"DDPageControl","path":"Specs/DDPageControl","sha":"b02635c647df8098b2372e5eadb00207309abee5","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DDPageControl?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DDPageControl","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b02635c647df8098b2372e5eadb00207309abee5","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DDPageControl?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b02635c647df8098b2372e5eadb00207309abee5","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DDPageControl"}},{"name":"DDProgressView","path":"Specs/DDProgressView","sha":"3d20260134728dca077d2cb9e8729870fc0e05c1","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DDProgressView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DDProgressView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3d20260134728dca077d2cb9e8729870fc0e05c1","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DDProgressView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3d20260134728dca077d2cb9e8729870fc0e05c1","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DDProgressView"}},{"name":"DDQuicklookAdditionalViews","path":"Specs/DDQuicklookAdditionalViews","sha":"fd25d573e6b14461f522de2ed08e724e686d916b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DDQuicklookAdditionalViews?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DDQuicklookAdditionalViews","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fd25d573e6b14461f522de2ed08e724e686d916b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DDQuicklookAdditionalViews?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fd25d573e6b14461f522de2ed08e724e686d916b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DDQuicklookAdditionalViews"}},{"name":"DDQuoteService","path":"Specs/DDQuoteService","sha":"aff41069e1281445249ce78e3f54d9d6d4a6770e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DDQuoteService?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DDQuoteService","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/aff41069e1281445249ce78e3f54d9d6d4a6770e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DDQuoteService?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/aff41069e1281445249ce78e3f54d9d6d4a6770e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DDQuoteService"}},{"name":"DDURLParser","path":"Specs/DDURLParser","sha":"a8d78c04f5ea62b734b5f97aa6c65014212bc072","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DDURLParser?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DDURLParser","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a8d78c04f5ea62b734b5f97aa6c65014212bc072","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DDURLParser?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a8d78c04f5ea62b734b5f97aa6c65014212bc072","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DDURLParser"}},{"name":"DDiCloudSync","path":"Specs/DDiCloudSync","sha":"0a66d642ba9dff8f5f7437bf6d614c9fc0146bb3","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DDiCloudSync?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DDiCloudSync","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0a66d642ba9dff8f5f7437bf6d614c9fc0146bb3","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DDiCloudSync?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0a66d642ba9dff8f5f7437bf6d614c9fc0146bb3","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DDiCloudSync"}},{"name":"DEFacebookComposeViewController","path":"Specs/DEFacebookComposeViewController","sha":"6aac04f9f1de417097822a0193cfa8a34e97fd1b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DEFacebookComposeViewController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DEFacebookComposeViewController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6aac04f9f1de417097822a0193cfa8a34e97fd1b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DEFacebookComposeViewController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6aac04f9f1de417097822a0193cfa8a34e97fd1b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DEFacebookComposeViewController"}},{"name":"DETweetComposeViewController","path":"Specs/DETweetComposeViewController","sha":"5f690e230ec565de91d1230324aa9cc50d22dc64","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DETweetComposeViewController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DETweetComposeViewController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5f690e230ec565de91d1230324aa9cc50d22dc64","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DETweetComposeViewController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5f690e230ec565de91d1230324aa9cc50d22dc64","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DETweetComposeViewController"}},{"name":"DHCObjectIntrospection","path":"Specs/DHCObjectIntrospection","sha":"19074f912643f9cb938cd80c2516e26a1c879bc2","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DHCObjectIntrospection?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DHCObjectIntrospection","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/19074f912643f9cb938cd80c2516e26a1c879bc2","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DHCObjectIntrospection?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/19074f912643f9cb938cd80c2516e26a1c879bc2","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DHCObjectIntrospection"}},{"name":"DHCOnDealloc","path":"Specs/DHCOnDealloc","sha":"0c967d120866bcf49f5fa590610443cfc2345650","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DHCOnDealloc?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DHCOnDealloc","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0c967d120866bcf49f5fa590610443cfc2345650","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DHCOnDealloc?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0c967d120866bcf49f5fa590610443cfc2345650","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DHCOnDealloc"}},{"name":"DHCShakeNotifier","path":"Specs/DHCShakeNotifier","sha":"13ad3adca9999eaf0f5e8d6ea11ad3b842762c3b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DHCShakeNotifier?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DHCShakeNotifier","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/13ad3adca9999eaf0f5e8d6ea11ad3b842762c3b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DHCShakeNotifier?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/13ad3adca9999eaf0f5e8d6ea11ad3b842762c3b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DHCShakeNotifier"}},{"name":"DIYAV","path":"Specs/DIYAV","sha":"6624f189b3212be4eb7e29df00fb808e13f83f6a","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DIYAV?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DIYAV","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6624f189b3212be4eb7e29df00fb808e13f83f6a","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DIYAV?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6624f189b3212be4eb7e29df00fb808e13f83f6a","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DIYAV"}},{"name":"DIYAssetPicker","path":"Specs/DIYAssetPicker","sha":"8f4937a68e2a9bb9b93997c28953938f0e150462","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DIYAssetPicker?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DIYAssetPicker","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8f4937a68e2a9bb9b93997c28953938f0e150462","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DIYAssetPicker?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8f4937a68e2a9bb9b93997c28953938f0e150462","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DIYAssetPicker"}},{"name":"DIYCam","path":"Specs/DIYCam","sha":"79d87872b831430ef41779a777afe354496377ac","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DIYCam?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DIYCam","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/79d87872b831430ef41779a777afe354496377ac","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DIYCam?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/79d87872b831430ef41779a777afe354496377ac","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DIYCam"}},{"name":"DIYConduit","path":"Specs/DIYConduit","sha":"4237371a3a0bcf099700225329f001cbc9dacc3e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DIYConduit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DIYConduit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4237371a3a0bcf099700225329f001cbc9dacc3e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DIYConduit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4237371a3a0bcf099700225329f001cbc9dacc3e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DIYConduit"}},{"name":"DIYJazzHands","path":"Specs/DIYJazzHands","sha":"80c3948eb6b140c8cfb1348cf90e740dda24b668","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DIYJazzHands?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DIYJazzHands","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/80c3948eb6b140c8cfb1348cf90e740dda24b668","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DIYJazzHands?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/80c3948eb6b140c8cfb1348cf90e740dda24b668","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DIYJazzHands"}},{"name":"DLCImagePickerController","path":"Specs/DLCImagePickerController","sha":"be5754fb017d4ff6817e72c9f1903201a5c6dfc6","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DLCImagePickerController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DLCImagePickerController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/be5754fb017d4ff6817e72c9f1903201a5c6dfc6","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DLCImagePickerController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/be5754fb017d4ff6817e72c9f1903201a5c6dfc6","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DLCImagePickerController"}},{"name":"DLDownload","path":"Specs/DLDownload","sha":"2b2731b21f3af48d1204a130328eabfdebe91102","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DLDownload?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DLDownload","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2b2731b21f3af48d1204a130328eabfdebe91102","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DLDownload?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2b2731b21f3af48d1204a130328eabfdebe91102","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DLDownload"}},{"name":"DLStarRating","path":"Specs/DLStarRating","sha":"010cccf244a33c0f1149bbb027192f4179cae3a8","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DLStarRating?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DLStarRating","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/010cccf244a33c0f1149bbb027192f4179cae3a8","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DLStarRating?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/010cccf244a33c0f1149bbb027192f4179cae3a8","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DLStarRating"}},{"name":"DLSubclassAwareSingleton","path":"Specs/DLSubclassAwareSingleton","sha":"be66150da103fc0dcfb94f6cc71967e5468564f2","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DLSubclassAwareSingleton?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DLSubclassAwareSingleton","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/be66150da103fc0dcfb94f6cc71967e5468564f2","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DLSubclassAwareSingleton?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/be66150da103fc0dcfb94f6cc71967e5468564f2","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DLSubclassAwareSingleton"}},{"name":"DMActivityInstagram","path":"Specs/DMActivityInstagram","sha":"7c2501d09249e9bfe44fa7c52e2ecbbe3afa3ea4","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DMActivityInstagram?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DMActivityInstagram","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7c2501d09249e9bfe44fa7c52e2ecbbe3afa3ea4","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DMActivityInstagram?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7c2501d09249e9bfe44fa7c52e2ecbbe3afa3ea4","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DMActivityInstagram"}},{"name":"DMInspectorPalette","path":"Specs/DMInspectorPalette","sha":"52185f6b5a97762863f9a0ce175e81bf069fd3c0","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DMInspectorPalette?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DMInspectorPalette","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/52185f6b5a97762863f9a0ce175e81bf069fd3c0","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DMInspectorPalette?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/52185f6b5a97762863f9a0ce175e81bf069fd3c0","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DMInspectorPalette"}},{"name":"DMLocationManager","path":"Specs/DMLocationManager","sha":"9dd5804868b75b4ddd487632b01b23696d0f004d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DMLocationManager?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DMLocationManager","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9dd5804868b75b4ddd487632b01b23696d0f004d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DMLocationManager?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9dd5804868b75b4ddd487632b01b23696d0f004d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DMLocationManager"}},{"name":"DMLogFormatter","path":"Specs/DMLogFormatter","sha":"92cb614a6b28fae5f279df8dddafc6c3f23c7d99","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DMLogFormatter?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DMLogFormatter","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/92cb614a6b28fae5f279df8dddafc6c3f23c7d99","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DMLogFormatter?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/92cb614a6b28fae5f279df8dddafc6c3f23c7d99","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DMLogFormatter"}},{"name":"DMTabBar","path":"Specs/DMTabBar","sha":"7b0d5b45b9afde092f7f2cdfc11088fae0895fa4","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DMTabBar?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DMTabBar","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7b0d5b45b9afde092f7f2cdfc11088fae0895fa4","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DMTabBar?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7b0d5b45b9afde092f7f2cdfc11088fae0895fa4","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DMTabBar"}},{"name":"DOSingleton","path":"Specs/DOSingleton","sha":"95551b8bd3d1c574c949d84f9422b6f2882cbf2e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DOSingleton?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DOSingleton","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/95551b8bd3d1c574c949d84f9422b6f2882cbf2e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DOSingleton?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/95551b8bd3d1c574c949d84f9422b6f2882cbf2e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DOSingleton"}},{"name":"DOUAudioStreamer","path":"Specs/DOUAudioStreamer","sha":"73d8943e1b334eefe82285c472f7197fbfa77d62","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DOUAudioStreamer?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DOUAudioStreamer","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/73d8943e1b334eefe82285c472f7197fbfa77d62","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DOUAudioStreamer?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/73d8943e1b334eefe82285c472f7197fbfa77d62","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DOUAudioStreamer"}},{"name":"DPHue","path":"Specs/DPHue","sha":"2fd5529550193ae2e2ed1def1df230afe5a105a8","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DPHue?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DPHue","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2fd5529550193ae2e2ed1def1df230afe5a105a8","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DPHue?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2fd5529550193ae2e2ed1def1df230afe5a105a8","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DPHue"}},{"name":"DPMeterView","path":"Specs/DPMeterView","sha":"9cf008b6bc408b1c45e8e91feae40e097710b8f4","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DPMeterView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DPMeterView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9cf008b6bc408b1c45e8e91feae40e097710b8f4","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DPMeterView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9cf008b6bc408b1c45e8e91feae40e097710b8f4","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DPMeterView"}},{"name":"DPSetupWindow","path":"Specs/DPSetupWindow","sha":"465e6d44e3169de673f00fc697c44bd02fe96df7","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DPSetupWindow?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DPSetupWindow","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/465e6d44e3169de673f00fc697c44bd02fe96df7","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DPSetupWindow?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/465e6d44e3169de673f00fc697c44bd02fe96df7","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DPSetupWindow"}},{"name":"DPTextField","path":"Specs/DPTextField","sha":"1719c944d87f9f47533faa385c8014b05775ab85","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DPTextField?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DPTextField","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1719c944d87f9f47533faa385c8014b05775ab85","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DPTextField?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1719c944d87f9f47533faa385c8014b05775ab85","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DPTextField"}},{"name":"DPToastView","path":"Specs/DPToastView","sha":"286290645264c88829c221ba97be2655896e29f4","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DPToastView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DPToastView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/286290645264c88829c221ba97be2655896e29f4","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DPToastView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/286290645264c88829c221ba97be2655896e29f4","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DPToastView"}},{"name":"DRKonamiCode","path":"Specs/DRKonamiCode","sha":"52f4e98e5faad1070181d75f42fb900748304d36","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DRKonamiCode?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DRKonamiCode","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/52f4e98e5faad1070181d75f42fb900748304d36","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DRKonamiCode?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/52f4e98e5faad1070181d75f42fb900748304d36","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DRKonamiCode"}},{"name":"DSBarChart","path":"Specs/DSBarChart","sha":"7d4645632d4d9117880bcbe1f629c80bf0c885a4","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DSBarChart?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DSBarChart","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7d4645632d4d9117880bcbe1f629c80bf0c885a4","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DSBarChart?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7d4645632d4d9117880bcbe1f629c80bf0c885a4","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DSBarChart"}},{"name":"DSFavIconManager","path":"Specs/DSFavIconManager","sha":"5e5a6c7e449385cce60bebff5135ae6b3308bdbe","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DSFavIconManager?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DSFavIconManager","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5e5a6c7e449385cce60bebff5135ae6b3308bdbe","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DSFavIconManager?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5e5a6c7e449385cce60bebff5135ae6b3308bdbe","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DSFavIconManager"}},{"name":"DSGraphicsKit","path":"Specs/DSGraphicsKit","sha":"2e482f46b83c91a9dd964d62a2dd4b6a166dd2ab","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DSGraphicsKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DSGraphicsKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2e482f46b83c91a9dd964d62a2dd4b6a166dd2ab","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DSGraphicsKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2e482f46b83c91a9dd964d62a2dd4b6a166dd2ab","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DSGraphicsKit"}},{"name":"DSTPickerView","path":"Specs/DSTPickerView","sha":"61ced960cc114ba12669fefeac91ba666577a1ed","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DSTPickerView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DSTPickerView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/61ced960cc114ba12669fefeac91ba666577a1ed","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DSTPickerView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/61ced960cc114ba12669fefeac91ba666577a1ed","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DSTPickerView"}},{"name":"DSUnixTask","path":"Specs/DSUnixTask","sha":"66a7c5e7e0886c5c0ce5a423b6ec8dbf5a22e919","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DSUnixTask?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DSUnixTask","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/66a7c5e7e0886c5c0ce5a423b6ec8dbf5a22e919","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DSUnixTask?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/66a7c5e7e0886c5c0ce5a423b6ec8dbf5a22e919","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DSUnixTask"}},{"name":"DTBonjour","path":"Specs/DTBonjour","sha":"bf15a25bca8ad57a06f59538b9b4f5aaef7db005","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DTBonjour?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DTBonjour","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/bf15a25bca8ad57a06f59538b9b4f5aaef7db005","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DTBonjour?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/bf15a25bca8ad57a06f59538b9b4f5aaef7db005","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DTBonjour"}},{"name":"DTCoreText","path":"Specs/DTCoreText","sha":"45b7ed8b6edd4b0e06651526aa24d560837d7c7e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DTCoreText?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DTCoreText","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/45b7ed8b6edd4b0e06651526aa24d560837d7c7e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DTCoreText?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/45b7ed8b6edd4b0e06651526aa24d560837d7c7e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DTCoreText"}},{"name":"DTDownload","path":"Specs/DTDownload","sha":"9973fa6284e8e8e4bd22577fa74a7d0b14f35def","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DTDownload?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DTDownload","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9973fa6284e8e8e4bd22577fa74a7d0b14f35def","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DTDownload?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9973fa6284e8e8e4bd22577fa74a7d0b14f35def","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DTDownload"}},{"name":"DTFoundation","path":"Specs/DTFoundation","sha":"d239a46417e7de743ca91f7ff60b725e95b6a971","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DTFoundation?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DTFoundation","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d239a46417e7de743ca91f7ff60b725e95b6a971","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DTFoundation?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d239a46417e7de743ca91f7ff60b725e95b6a971","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DTFoundation"}},{"name":"DTTableViewManager","path":"Specs/DTTableViewManager","sha":"d6c8895194c335c03ce9ca0bda87c85d1afadaed","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DTTableViewManager?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DTTableViewManager","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d6c8895194c335c03ce9ca0bda87c85d1afadaed","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DTTableViewManager?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d6c8895194c335c03ce9ca0bda87c85d1afadaed","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DTTableViewManager"}},{"name":"DTWebArchive","path":"Specs/DTWebArchive","sha":"9965c70659dd4008ace74b5b3c3bafe46987f76c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DTWebArchive?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DTWebArchive","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9965c70659dd4008ace74b5b3c3bafe46987f76c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DTWebArchive?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9965c70659dd4008ace74b5b3c3bafe46987f76c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DTWebArchive"}},{"name":"DVCoreDataFinders","path":"Specs/DVCoreDataFinders","sha":"5220e132227d6fe832153ff38d5998c6ff1e5a07","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DVCoreDataFinders?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DVCoreDataFinders","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5220e132227d6fe832153ff38d5998c6ff1e5a07","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DVCoreDataFinders?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5220e132227d6fe832153ff38d5998c6ff1e5a07","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DVCoreDataFinders"}},{"name":"DWTagList","path":"Specs/DWTagList","sha":"40a7e5886d4823cb2850c3460963edbe86ec2406","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DWTagList?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DWTagList","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/40a7e5886d4823cb2850c3460963edbe86ec2406","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DWTagList?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/40a7e5886d4823cb2850c3460963edbe86ec2406","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DWTagList"}},{"name":"DYRateView","path":"Specs/DYRateView","sha":"2f8ce67e87caa7ea4c79509e939163f2b9f06903","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DYRateView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DYRateView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2f8ce67e87caa7ea4c79509e939163f2b9f06903","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DYRateView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2f8ce67e87caa7ea4c79509e939163f2b9f06903","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DYRateView"}},{"name":"DZProgressController","path":"Specs/DZProgressController","sha":"d9a7ec3a489b46141147bdcf8888cb70188c519e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DZProgressController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DZProgressController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d9a7ec3a489b46141147bdcf8888cb70188c519e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DZProgressController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d9a7ec3a489b46141147bdcf8888cb70188c519e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DZProgressController"}},{"name":"Dailymotion-SDK","path":"Specs/Dailymotion-SDK","sha":"b8b1792f7e15ffbc92d51cbf44eae196959bcc14","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Dailymotion-SDK?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Dailymotion-SDK","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b8b1792f7e15ffbc92d51cbf44eae196959bcc14","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Dailymotion-SDK?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b8b1792f7e15ffbc92d51cbf44eae196959bcc14","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Dailymotion-SDK"}},{"name":"DejalActivityView","path":"Specs/DejalActivityView","sha":"1a3b45cc8cd80fc7bf307c813416f80ef68a2c4e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DejalActivityView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DejalActivityView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1a3b45cc8cd80fc7bf307c813416f80ef68a2c4e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DejalActivityView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1a3b45cc8cd80fc7bf307c813416f80ef68a2c4e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DejalActivityView"}},{"name":"DerpKit","path":"Specs/DerpKit","sha":"1d1afa8944a8acdafed597cbadd8b5b8b9f621c2","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DerpKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DerpKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1d1afa8944a8acdafed597cbadd8b5b8b9f621c2","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DerpKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1d1afa8944a8acdafed597cbadd8b5b8b9f621c2","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DerpKit"}},{"name":"DirectoryWatchdog","path":"Specs/DirectoryWatchdog","sha":"83ab7aacdddfc507c657ba5b7e9c97d6cd58f9d4","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DirectoryWatchdog?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DirectoryWatchdog","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/83ab7aacdddfc507c657ba5b7e9c97d6cd58f9d4","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DirectoryWatchdog?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/83ab7aacdddfc507c657ba5b7e9c97d6cd58f9d4","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DirectoryWatchdog"}},{"name":"DoneCancelNumberPadToolbar","path":"Specs/DoneCancelNumberPadToolbar","sha":"521e5be0e9c63b32747dbd675ba369b50039f51f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DoneCancelNumberPadToolbar?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DoneCancelNumberPadToolbar","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/521e5be0e9c63b32747dbd675ba369b50039f51f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DoneCancelNumberPadToolbar?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/521e5be0e9c63b32747dbd675ba369b50039f51f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DoneCancelNumberPadToolbar"}},{"name":"DragAndDropTableView","path":"Specs/DragAndDropTableView","sha":"8871da3adc60843cafcc22bb4c59bf228891d305","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DragAndDropTableView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DragAndDropTableView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8871da3adc60843cafcc22bb4c59bf228891d305","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DragAndDropTableView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8871da3adc60843cafcc22bb4c59bf228891d305","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DragAndDropTableView"}},{"name":"DropBlocks","path":"Specs/DropBlocks","sha":"41b5a768b667141c331229a7cc06b250b7b892e2","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DropBlocks?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DropBlocks","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/41b5a768b667141c331229a7cc06b250b7b892e2","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/DropBlocks?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/41b5a768b667141c331229a7cc06b250b7b892e2","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/DropBlocks"}},{"name":"Dropbox-OSX-SDK","path":"Specs/Dropbox-OSX-SDK","sha":"c3c15f0b482f828c4a302007117e2a2b4c670e63","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Dropbox-OSX-SDK?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Dropbox-OSX-SDK","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c3c15f0b482f828c4a302007117e2a2b4c670e63","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Dropbox-OSX-SDK?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c3c15f0b482f828c4a302007117e2a2b4c670e63","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Dropbox-OSX-SDK"}},{"name":"Dropbox-iOS-SDK","path":"Specs/Dropbox-iOS-SDK","sha":"e727b7b9677d116135d3f9d40996b3a096274964","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Dropbox-iOS-SDK?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Dropbox-iOS-SDK","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e727b7b9677d116135d3f9d40996b3a096274964","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Dropbox-iOS-SDK?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e727b7b9677d116135d3f9d40996b3a096274964","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Dropbox-iOS-SDK"}},{"name":"ECSlidingViewController","path":"Specs/ECSlidingViewController","sha":"3e2d6394efdd062b434dc6f87b02ba9ca188cf34","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ECSlidingViewController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ECSlidingViewController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3e2d6394efdd062b434dc6f87b02ba9ca188cf34","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ECSlidingViewController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3e2d6394efdd062b434dc6f87b02ba9ca188cf34","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ECSlidingViewController"}},{"name":"EDAssert","path":"Specs/EDAssert","sha":"a268583ab726d83ed1af4078c684fee99110c45b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/EDAssert?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/EDAssert","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a268583ab726d83ed1af4078c684fee99110c45b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/EDAssert?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a268583ab726d83ed1af4078c684fee99110c45b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/EDAssert"}},{"name":"EDColor","path":"Specs/EDColor","sha":"451dac1c1161954d8f4119610cbed2eb56c24b81","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/EDColor?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/EDColor","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/451dac1c1161954d8f4119610cbed2eb56c24b81","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/EDColor?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/451dac1c1161954d8f4119610cbed2eb56c24b81","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/EDColor"}},{"name":"EDQueue","path":"Specs/EDQueue","sha":"23c633b79df84b751ed445cc25e8865a2f3e18a4","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/EDQueue?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/EDQueue","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/23c633b79df84b751ed445cc25e8865a2f3e18a4","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/EDQueue?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/23c633b79df84b751ed445cc25e8865a2f3e18a4","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/EDQueue"}},{"name":"EDSidebar","path":"Specs/EDSidebar","sha":"2400b62438e82543867e9c66c7c97c834e818dc5","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/EDSidebar?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/EDSidebar","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2400b62438e82543867e9c66c7c97c834e818dc5","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/EDSidebar?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2400b62438e82543867e9c66c7c97c834e818dc5","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/EDSidebar"}},{"name":"EDStarRating","path":"Specs/EDStarRating","sha":"415fcb692c7e271f36b7c9b01e5db10c205308c1","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/EDStarRating?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/EDStarRating","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/415fcb692c7e271f36b7c9b01e5db10c205308c1","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/EDStarRating?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/415fcb692c7e271f36b7c9b01e5db10c205308c1","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/EDStarRating"}},{"name":"EDStorage","path":"Specs/EDStorage","sha":"dc6b79c18e7b96ec53c39c4235bc94a09c798b60","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/EDStorage?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/EDStorage","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/dc6b79c18e7b96ec53c39c4235bc94a09c798b60","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/EDStorage?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/dc6b79c18e7b96ec53c39c4235bc94a09c798b60","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/EDStorage"}},{"name":"EDSunriseSet","path":"Specs/EDSunriseSet","sha":"48c9495902440d66ff50b61065f7577b62e385c8","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/EDSunriseSet?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/EDSunriseSet","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/48c9495902440d66ff50b61065f7577b62e385c8","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/EDSunriseSet?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/48c9495902440d66ff50b61065f7577b62e385c8","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/EDSunriseSet"}},{"name":"EGOCache","path":"Specs/EGOCache","sha":"49465b71ebb52413a31df6803986bf049f4bca79","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/EGOCache?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/EGOCache","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/49465b71ebb52413a31df6803986bf049f4bca79","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/EGOCache?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/49465b71ebb52413a31df6803986bf049f4bca79","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/EGOCache"}},{"name":"EGOImageLoading","path":"Specs/EGOImageLoading","sha":"8846b437772a4242bae7d6ce13677a3b3979ed6b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/EGOImageLoading?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/EGOImageLoading","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8846b437772a4242bae7d6ce13677a3b3979ed6b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/EGOImageLoading?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8846b437772a4242bae7d6ce13677a3b3979ed6b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/EGOImageLoading"}},{"name":"EGOPhotoViewer","path":"Specs/EGOPhotoViewer","sha":"2052a33f2619ea82dffa06fa174100dbd823750c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/EGOPhotoViewer?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/EGOPhotoViewer","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2052a33f2619ea82dffa06fa174100dbd823750c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/EGOPhotoViewer?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2052a33f2619ea82dffa06fa174100dbd823750c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/EGOPhotoViewer"}},{"name":"EGOTableViewPullRefresh","path":"Specs/EGOTableViewPullRefresh","sha":"8809ffa57bf7618f99b539719d709ebb23707420","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/EGOTableViewPullRefresh?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/EGOTableViewPullRefresh","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8809ffa57bf7618f99b539719d709ebb23707420","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/EGOTableViewPullRefresh?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8809ffa57bf7618f99b539719d709ebb23707420","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/EGOTableViewPullRefresh"}},{"name":"EKKeyboardAvoiding","path":"Specs/EKKeyboardAvoiding","sha":"6b7fd6118cd03897aeb2951c246a0ddbdeea1a98","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/EKKeyboardAvoiding?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/EKKeyboardAvoiding","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6b7fd6118cd03897aeb2951c246a0ddbdeea1a98","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/EKKeyboardAvoiding?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6b7fd6118cd03897aeb2951c246a0ddbdeea1a98","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/EKKeyboardAvoiding"}},{"name":"EKNotifView","path":"Specs/EKNotifView","sha":"0635022a23f30e2106aac999fe771d9c4fe6278f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/EKNotifView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/EKNotifView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0635022a23f30e2106aac999fe771d9c4fe6278f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/EKNotifView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0635022a23f30e2106aac999fe771d9c4fe6278f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/EKNotifView"}},{"name":"EKStreamView","path":"Specs/EKStreamView","sha":"37321d98680b7655717071e3cd450ac8b13388e6","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/EKStreamView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/EKStreamView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/37321d98680b7655717071e3cd450ac8b13388e6","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/EKStreamView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/37321d98680b7655717071e3cd450ac8b13388e6","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/EKStreamView"}},{"name":"ELCImagePickerController","path":"Specs/ELCImagePickerController","sha":"fca8c7446ef5efcab0100f4bf48d3a9a23286d63","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ELCImagePickerController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ELCImagePickerController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fca8c7446ef5efcab0100f4bf48d3a9a23286d63","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ELCImagePickerController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fca8c7446ef5efcab0100f4bf48d3a9a23286d63","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ELCImagePickerController"}},{"name":"ELCTextFieldCell","path":"Specs/ELCTextFieldCell","sha":"967433244adaf6dd279b2c65e1132041441a5f78","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ELCTextFieldCell?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ELCTextFieldCell","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/967433244adaf6dd279b2c65e1132041441a5f78","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ELCTextFieldCell?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/967433244adaf6dd279b2c65e1132041441a5f78","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ELCTextFieldCell"}},{"name":"ESAdjustableLabel-Category","path":"Specs/ESAdjustableLabel-Category","sha":"568b9df8232d2ceeeb98d37c994fb28f573bc6eb","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ESAdjustableLabel-Category?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ESAdjustableLabel-Category","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/568b9df8232d2ceeeb98d37c994fb28f573bc6eb","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ESAdjustableLabel-Category?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/568b9df8232d2ceeeb98d37c994fb28f573bc6eb","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ESAdjustableLabel-Category"}},{"name":"EXiLE","path":"Specs/EXiLE","sha":"b307bc707fbb9aaa3ed7f7e5c3a019b1a244c34f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/EXiLE?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/EXiLE","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b307bc707fbb9aaa3ed7f7e5c3a019b1a244c34f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/EXiLE?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b307bc707fbb9aaa3ed7f7e5c3a019b1a244c34f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/EXiLE"}},{"name":"EZForm","path":"Specs/EZForm","sha":"f772e5927e0cae706cf80a0c13ff26828db5c5fd","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/EZForm?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/EZForm","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f772e5927e0cae706cf80a0c13ff26828db5c5fd","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/EZForm?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f772e5927e0cae706cf80a0c13ff26828db5c5fd","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/EZForm"}},{"name":"EasyMapping","path":"Specs/EasyMapping","sha":"39a22d892ef4f8b7b793e03da8d57dad17e6ef65","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/EasyMapping?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/EasyMapping","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/39a22d892ef4f8b7b793e03da8d57dad17e6ef65","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/EasyMapping?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/39a22d892ef4f8b7b793e03da8d57dad17e6ef65","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/EasyMapping"}},{"name":"EasyTableView","path":"Specs/EasyTableView","sha":"a7d8e49ebd560ad5bb7ca135948efefe58886619","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/EasyTableView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/EasyTableView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a7d8e49ebd560ad5bb7ca135948efefe58886619","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/EasyTableView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a7d8e49ebd560ad5bb7ca135948efefe58886619","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/EasyTableView"}},{"name":"Ejecta","path":"Specs/Ejecta","sha":"c748c8888ffd16b2a7736ae5a9959547b1945561","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Ejecta?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Ejecta","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c748c8888ffd16b2a7736ae5a9959547b1945561","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Ejecta?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c748c8888ffd16b2a7736ae5a9959547b1945561","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Ejecta"}},{"name":"ElementParser","path":"Specs/ElementParser","sha":"682f42eca58a97ce55de5df983aebc2c30ccef40","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ElementParser?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ElementParser","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/682f42eca58a97ce55de5df983aebc2c30ccef40","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ElementParser?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/682f42eca58a97ce55de5df983aebc2c30ccef40","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ElementParser"}},{"name":"Emoticonizer","path":"Specs/Emoticonizer","sha":"269323f783b3c0b53c5ca6d1d861543fd28162d3","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Emoticonizer?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Emoticonizer","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/269323f783b3c0b53c5ca6d1d861543fd28162d3","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Emoticonizer?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/269323f783b3c0b53c5ca6d1d861543fd28162d3","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Emoticonizer"}},{"name":"ErrorKit","path":"Specs/ErrorKit","sha":"229aae1fef84f5ef002f41469a0513e1e997b28d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ErrorKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ErrorKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/229aae1fef84f5ef002f41469a0513e1e997b28d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ErrorKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/229aae1fef84f5ef002f41469a0513e1e997b28d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ErrorKit"}},{"name":"EvalJS","path":"Specs/EvalJS","sha":"e01365ee15f76e6f0cfa1ca8a5dd41ea38dc987a","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/EvalJS?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/EvalJS","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e01365ee15f76e6f0cfa1ca8a5dd41ea38dc987a","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/EvalJS?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e01365ee15f76e6f0cfa1ca8a5dd41ea38dc987a","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/EvalJS"}},{"name":"EventEmitter","path":"Specs/EventEmitter","sha":"672b897a9d33215be2eef5567fb97c209a814ec3","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/EventEmitter?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/EventEmitter","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/672b897a9d33215be2eef5567fb97c209a814ec3","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/EventEmitter?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/672b897a9d33215be2eef5567fb97c209a814ec3","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/EventEmitter"}},{"name":"Evernote-SDK-Mac","path":"Specs/Evernote-SDK-Mac","sha":"a5bf02d9f1a91d58906e864e0c9bf4e03dd0d292","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Evernote-SDK-Mac?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Evernote-SDK-Mac","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a5bf02d9f1a91d58906e864e0c9bf4e03dd0d292","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Evernote-SDK-Mac?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a5bf02d9f1a91d58906e864e0c9bf4e03dd0d292","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Evernote-SDK-Mac"}},{"name":"Evernote-SDK-iOS","path":"Specs/Evernote-SDK-iOS","sha":"9d860b76ed174a863d2e87b2a6fdd8ebc30843fe","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Evernote-SDK-iOS?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Evernote-SDK-iOS","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9d860b76ed174a863d2e87b2a6fdd8ebc30843fe","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Evernote-SDK-iOS?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9d860b76ed174a863d2e87b2a6fdd8ebc30843fe","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Evernote-SDK-iOS"}},{"name":"Expecta","path":"Specs/Expecta","sha":"0f43e44e2950f8d2e4a839373ce3177d46cf4c78","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Expecta?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Expecta","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0f43e44e2950f8d2e4a839373ce3177d46cf4c78","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Expecta?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0f43e44e2950f8d2e4a839373ce3177d46cf4c78","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Expecta"}},{"name":"FANN","path":"Specs/FANN","sha":"e2a8b91b52ffa8f80a4f13c08f8bdaa8e12e1d08","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FANN?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FANN","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e2a8b91b52ffa8f80a4f13c08f8bdaa8e12e1d08","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FANN?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e2a8b91b52ffa8f80a4f13c08f8bdaa8e12e1d08","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FANN"}},{"name":"FCYAsserts","path":"Specs/FCYAsserts","sha":"c0bc457d3ed23766c3fa8a47c23373f05debe710","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FCYAsserts?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FCYAsserts","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c0bc457d3ed23766c3fa8a47c23373f05debe710","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FCYAsserts?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c0bc457d3ed23766c3fa8a47c23373f05debe710","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FCYAsserts"}},{"name":"FDStatusBarNotifierView","path":"Specs/FDStatusBarNotifierView","sha":"570fc27f92ee43db0bb86e7fce0404729f4ae00c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FDStatusBarNotifierView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FDStatusBarNotifierView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/570fc27f92ee43db0bb86e7fce0404729f4ae00c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FDStatusBarNotifierView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/570fc27f92ee43db0bb86e7fce0404729f4ae00c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FDStatusBarNotifierView"}},{"name":"FDTake","path":"Specs/FDTake","sha":"8b8b3b388833351a7448137e32fcd3d32fed5b7b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FDTake?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FDTake","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8b8b3b388833351a7448137e32fcd3d32fed5b7b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FDTake?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8b8b3b388833351a7448137e32fcd3d32fed5b7b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FDTake"}},{"name":"FLKAutoLayout","path":"Specs/FLKAutoLayout","sha":"92abb0130bf04928e5db5f144de33217061f8b1c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FLKAutoLayout?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FLKAutoLayout","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/92abb0130bf04928e5db5f144de33217061f8b1c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FLKAutoLayout?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/92abb0130bf04928e5db5f144de33217061f8b1c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FLKAutoLayout"}},{"name":"FMDB","path":"Specs/FMDB","sha":"f74456c22a4f992bac09f576fd78f726463c5765","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FMDB?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FMDB","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f74456c22a4f992bac09f576fd78f726463c5765","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FMDB?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f74456c22a4f992bac09f576fd78f726463c5765","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FMDB"}},{"name":"FMMoveTableView","path":"Specs/FMMoveTableView","sha":"0fa65f59c03f0e93cf0294091941b24f5a78b7ee","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FMMoveTableView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FMMoveTableView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0fa65f59c03f0e93cf0294091941b24f5a78b7ee","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FMMoveTableView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0fa65f59c03f0e93cf0294091941b24f5a78b7ee","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FMMoveTableView"}},{"name":"FPPopover","path":"Specs/FPPopover","sha":"db5ccd705bdc87df21cccd41a82cc754e77e65c5","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FPPopover?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FPPopover","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/db5ccd705bdc87df21cccd41a82cc754e77e65c5","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FPPopover?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/db5ccd705bdc87df21cccd41a82cc754e77e65c5","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FPPopover"}},{"name":"FPView","path":"Specs/FPView","sha":"06c67015cec62ba4fde863391fc47e5ce2ae394e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FPView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FPView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/06c67015cec62ba4fde863391fc47e5ce2ae394e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FPView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/06c67015cec62ba4fde863391fc47e5ce2ae394e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FPView"}},{"name":"FRCoreDataOperation","path":"Specs/FRCoreDataOperation","sha":"d4b6844967f76614157d4eca48fe11855d7d780d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FRCoreDataOperation?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FRCoreDataOperation","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d4b6844967f76614157d4eca48fe11855d7d780d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FRCoreDataOperation?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d4b6844967f76614157d4eca48fe11855d7d780d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FRCoreDataOperation"}},{"name":"FRD3DBarChart","path":"Specs/FRD3DBarChart","sha":"1f55cfb77e0dcf72fc7885f647fc4489dbaa3a0a","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FRD3DBarChart?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FRD3DBarChart","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1f55cfb77e0dcf72fc7885f647fc4489dbaa3a0a","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FRD3DBarChart?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1f55cfb77e0dcf72fc7885f647fc4489dbaa3a0a","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FRD3DBarChart"}},{"name":"FRLayeredNavigationController","path":"Specs/FRLayeredNavigationController","sha":"a6bcd60067e8ff1d35e8dfe49e35f007b51e88b8","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FRLayeredNavigationController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FRLayeredNavigationController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a6bcd60067e8ff1d35e8dfe49e35f007b51e88b8","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FRLayeredNavigationController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a6bcd60067e8ff1d35e8dfe49e35f007b51e88b8","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FRLayeredNavigationController"}},{"name":"FSArgumentParser","path":"Specs/FSArgumentParser","sha":"ddfc15b18583b9cb6a83ceac068ed047b1e98ba4","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FSArgumentParser?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FSArgumentParser","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ddfc15b18583b9cb6a83ceac068ed047b1e98ba4","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FSArgumentParser?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ddfc15b18583b9cb6a83ceac068ed047b1e98ba4","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FSArgumentParser"}},{"name":"FSURLOperation","path":"Specs/FSURLOperation","sha":"a22824dbace65921272bbc47daddc867969f5920","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FSURLOperation?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FSURLOperation","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a22824dbace65921272bbc47daddc867969f5920","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FSURLOperation?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a22824dbace65921272bbc47daddc867969f5920","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FSURLOperation"}},{"name":"FTAssetRenderer","path":"Specs/FTAssetRenderer","sha":"77ab17f0cf86817851197539d95b67024e5f1594","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FTAssetRenderer?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FTAssetRenderer","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/77ab17f0cf86817851197539d95b67024e5f1594","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FTAssetRenderer?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/77ab17f0cf86817851197539d95b67024e5f1594","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FTAssetRenderer"}},{"name":"FTPManager","path":"Specs/FTPManager","sha":"1a4e7c783755f3a16c2bb74befb7e5be49e0445e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FTPManager?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FTPManager","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1a4e7c783755f3a16c2bb74befb7e5be49e0445e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FTPManager?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1a4e7c783755f3a16c2bb74befb7e5be49e0445e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FTPManager"}},{"name":"FTUtils","path":"Specs/FTUtils","sha":"3852b865a324fde602c861f005eb92e5fbf3fb55","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FTUtils?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FTUtils","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3852b865a324fde602c861f005eb92e5fbf3fb55","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FTUtils?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3852b865a324fde602c861f005eb92e5fbf3fb55","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FTUtils"}},{"name":"FTWButton","path":"Specs/FTWButton","sha":"61f11c5dfeb23a0b6ce23e7c0c1df6751b448541","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FTWButton?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FTWButton","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/61f11c5dfeb23a0b6ce23e7c0c1df6751b448541","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FTWButton?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/61f11c5dfeb23a0b6ce23e7c0c1df6751b448541","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FTWButton"}},{"name":"FXImageView","path":"Specs/FXImageView","sha":"8a9f71cc78be7dee99e69327d76cabc5a7ab9f81","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FXImageView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FXImageView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8a9f71cc78be7dee99e69327d76cabc5a7ab9f81","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FXImageView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8a9f71cc78be7dee99e69327d76cabc5a7ab9f81","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FXImageView"}},{"name":"FXKeychain","path":"Specs/FXKeychain","sha":"fd81775b535b57a2bd400a38db43ad34fb363986","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FXKeychain?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FXKeychain","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fd81775b535b57a2bd400a38db43ad34fb363986","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FXKeychain?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fd81775b535b57a2bd400a38db43ad34fb363986","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FXKeychain"}},{"name":"FXLabel","path":"Specs/FXLabel","sha":"95a99e4d4f6d7cdfc727648a3d84599f7531f41d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FXLabel?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FXLabel","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/95a99e4d4f6d7cdfc727648a3d84599f7531f41d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FXLabel?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/95a99e4d4f6d7cdfc727648a3d84599f7531f41d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FXLabel"}},{"name":"Facebook-iOS-SDK","path":"Specs/Facebook-iOS-SDK","sha":"4eb56a2de8f17671e8a6455ae649dbb11d63b53c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Facebook-iOS-SDK?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Facebook-iOS-SDK","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4eb56a2de8f17671e8a6455ae649dbb11d63b53c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Facebook-iOS-SDK?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4eb56a2de8f17671e8a6455ae649dbb11d63b53c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Facebook-iOS-SDK"}},{"name":"FamilySearchCocoa","path":"Specs/FamilySearchCocoa","sha":"dd1175d0dc67e319dab366837c4144d1105f1b56","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FamilySearchCocoa?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FamilySearchCocoa","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/dd1175d0dc67e319dab366837c4144d1105f1b56","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FamilySearchCocoa?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/dd1175d0dc67e319dab366837c4144d1105f1b56","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FamilySearchCocoa"}},{"name":"FatSecretKit","path":"Specs/FatSecretKit","sha":"01f98b840f5decd4722846b2f6308dc3eb02a33a","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FatSecretKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FatSecretKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/01f98b840f5decd4722846b2f6308dc3eb02a33a","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FatSecretKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/01f98b840f5decd4722846b2f6308dc3eb02a33a","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FatSecretKit"}},{"name":"FileMD5Hash","path":"Specs/FileMD5Hash","sha":"6c0c3f02f892b8726d4c5ab34dc9d3ea54ce1ee3","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FileMD5Hash?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FileMD5Hash","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6c0c3f02f892b8726d4c5ab34dc9d3ea54ce1ee3","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FileMD5Hash?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6c0c3f02f892b8726d4c5ab34dc9d3ea54ce1ee3","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FileMD5Hash"}},{"name":"Fingertips","path":"Specs/Fingertips","sha":"88f336194b7034ada349bf9d91f412cc000e4a29","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Fingertips?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Fingertips","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/88f336194b7034ada349bf9d91f412cc000e4a29","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Fingertips?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/88f336194b7034ada349bf9d91f412cc000e4a29","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Fingertips"}},{"name":"FireData","path":"Specs/FireData","sha":"fd430b570f83170d41d9eba9656536ab920e71de","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FireData?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FireData","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fd430b570f83170d41d9eba9656536ab920e71de","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FireData?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fd430b570f83170d41d9eba9656536ab920e71de","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FireData"}},{"name":"Firebase","path":"Specs/Firebase","sha":"8522ffd4128cf4a7e3f1ee35a7600cf970c7ff81","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Firebase?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Firebase","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8522ffd4128cf4a7e3f1ee35a7600cf970c7ff81","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Firebase?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8522ffd4128cf4a7e3f1ee35a7600cf970c7ff81","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Firebase"}},{"name":"Flash2Cocos2D","path":"Specs/Flash2Cocos2D","sha":"ddcc0466c6745d7d1c7f95ab82a6c8c57ff58470","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Flash2Cocos2D?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Flash2Cocos2D","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ddcc0466c6745d7d1c7f95ab82a6c8c57ff58470","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Flash2Cocos2D?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ddcc0466c6745d7d1c7f95ab82a6c8c57ff58470","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Flash2Cocos2D"}},{"name":"FlatUIKit","path":"Specs/FlatUIKit","sha":"5cfc4f9405687c26725366fbcb754bad91218e8e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FlatUIKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FlatUIKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5cfc4f9405687c26725366fbcb754bad91218e8e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FlatUIKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5cfc4f9405687c26725366fbcb754bad91218e8e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FlatUIKit"}},{"name":"Flow.m","path":"Specs/Flow.m","sha":"18ad1771fcc1c594379b7683c9095586ca6c6a70","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Flow.m?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Flow.m","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/18ad1771fcc1c594379b7683c9095586ca6c6a70","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Flow.m?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/18ad1771fcc1c594379b7683c9095586ca6c6a70","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Flow.m"}},{"name":"FlurrySDK","path":"Specs/FlurrySDK","sha":"98f3dfe066ffd92262059b694fb3af9ec3a81c5f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FlurrySDK?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FlurrySDK","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/98f3dfe066ffd92262059b694fb3af9ec3a81c5f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FlurrySDK?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/98f3dfe066ffd92262059b694fb3af9ec3a81c5f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FlurrySDK"}},{"name":"FoldViewController","path":"Specs/FoldViewController","sha":"fb0fd23ec5bed6e96c0604681288806c88b7a9cd","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FoldViewController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FoldViewController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fb0fd23ec5bed6e96c0604681288806c88b7a9cd","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FoldViewController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fb0fd23ec5bed6e96c0604681288806c88b7a9cd","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FoldViewController"}},{"name":"FontAwesome-iOS","path":"Specs/FontAwesome-iOS","sha":"ca3e0874ea3874020aea03ef3dfcf027ad1cb9f1","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FontAwesome-iOS?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FontAwesome-iOS","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ca3e0874ea3874020aea03ef3dfcf027ad1cb9f1","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FontAwesome-iOS?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ca3e0874ea3874020aea03ef3dfcf027ad1cb9f1","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FontAwesome-iOS"}},{"name":"FontAwesomeIconFactory","path":"Specs/FontAwesomeIconFactory","sha":"ee36411537708e65a9df000e487b25cb0daf772d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FontAwesomeIconFactory?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FontAwesomeIconFactory","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ee36411537708e65a9df000e487b25cb0daf772d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FontAwesomeIconFactory?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ee36411537708e65a9df000e487b25cb0daf772d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FontAwesomeIconFactory"}},{"name":"FontAwesomeKit","path":"Specs/FontAwesomeKit","sha":"7943e6055d402b364921abdb84c109140f8fc28d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FontAwesomeKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FontAwesomeKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7943e6055d402b364921abdb84c109140f8fc28d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FontAwesomeKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7943e6055d402b364921abdb84c109140f8fc28d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FontAwesomeKit"}},{"name":"FontLabel","path":"Specs/FontLabel","sha":"858abc3848c689fc987bb718a033ce9c0bf5b5c2","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FontLabel?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FontLabel","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/858abc3848c689fc987bb718a033ce9c0bf5b5c2","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FontLabel?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/858abc3848c689fc987bb718a033ce9c0bf5b5c2","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FontLabel"}},{"name":"FontReplacer","path":"Specs/FontReplacer","sha":"8143070caf22d2c410c30ed257b76f8da4536294","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FontReplacer?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FontReplacer","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8143070caf22d2c410c30ed257b76f8da4536294","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FontReplacer?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8143070caf22d2c410c30ed257b76f8da4536294","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FontReplacer"}},{"name":"FontasticIcons","path":"Specs/FontasticIcons","sha":"c336b826729b5a02ed2d9f949983f7a760527490","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FontasticIcons?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FontasticIcons","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c336b826729b5a02ed2d9f949983f7a760527490","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FontasticIcons?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c336b826729b5a02ed2d9f949983f7a760527490","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FontasticIcons"}},{"name":"Forecastr","path":"Specs/Forecastr","sha":"e0748c5bedde276242ac80127c63662c4a22e27a","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Forecastr?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Forecastr","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e0748c5bedde276242ac80127c63662c4a22e27a","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Forecastr?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e0748c5bedde276242ac80127c63662c4a22e27a","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Forecastr"}},{"name":"FormatterKit","path":"Specs/FormatterKit","sha":"8e16c0971b93bad64fbc297942c16a907b54a75b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FormatterKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FormatterKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8e16c0971b93bad64fbc297942c16a907b54a75b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FormatterKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8e16c0971b93bad64fbc297942c16a907b54a75b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FormatterKit"}},{"name":"FoundationExtension","path":"Specs/FoundationExtension","sha":"10448ea47e4595a4d9443d97c40b1c06a2e272d3","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FoundationExtension?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FoundationExtension","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/10448ea47e4595a4d9443d97c40b1c06a2e272d3","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FoundationExtension?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/10448ea47e4595a4d9443d97c40b1c06a2e272d3","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FoundationExtension"}},{"name":"Fountain","path":"Specs/Fountain","sha":"9c217bfcf15ed129658f1652782c9d028924850c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Fountain?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Fountain","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9c217bfcf15ed129658f1652782c9d028924850c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Fountain?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9c217bfcf15ed129658f1652782c9d028924850c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Fountain"}},{"name":"Foursquare-API-v2","path":"Specs/Foursquare-API-v2","sha":"a7fe4d2eab335afa6cb23c976eed9ae4091b96fa","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Foursquare-API-v2?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Foursquare-API-v2","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a7fe4d2eab335afa6cb23c976eed9ae4091b96fa","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Foursquare-API-v2?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a7fe4d2eab335afa6cb23c976eed9ae4091b96fa","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Foursquare-API-v2"}},{"name":"Foursquare-iOS-API","path":"Specs/Foursquare-iOS-API","sha":"f668f2959c003aed47eee2d960dc7d29345cd6b2","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Foursquare-iOS-API?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Foursquare-iOS-API","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f668f2959c003aed47eee2d960dc7d29345cd6b2","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Foursquare-iOS-API?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f668f2959c003aed47eee2d960dc7d29345cd6b2","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Foursquare-iOS-API"}},{"name":"Fragaria","path":"Specs/Fragaria","sha":"6429a7cae46793af1012f4e27daf9ec5f700f437","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Fragaria?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Fragaria","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6429a7cae46793af1012f4e27daf9ec5f700f437","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Fragaria?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6429a7cae46793af1012f4e27daf9ec5f700f437","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Fragaria"}},{"name":"FrameAccessor","path":"Specs/FrameAccessor","sha":"f802d52ed916b0059047e263525d1c00dd4bac1f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FrameAccessor?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FrameAccessor","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f802d52ed916b0059047e263525d1c00dd4bac1f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/FrameAccessor?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f802d52ed916b0059047e263525d1c00dd4bac1f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/FrameAccessor"}},{"name":"Funcussion","path":"Specs/Funcussion","sha":"a80704cb2950f1d823fca370f6a36f49a107ecb2","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Funcussion?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Funcussion","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a80704cb2950f1d823fca370f6a36f49a107ecb2","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Funcussion?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a80704cb2950f1d823fca370f6a36f49a107ecb2","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Funcussion"}},{"name":"GAJavaScript","path":"Specs/GAJavaScript","sha":"51d2138a07993fe081a9750873490064340bbc56","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GAJavaScript?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GAJavaScript","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/51d2138a07993fe081a9750873490064340bbc56","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GAJavaScript?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/51d2138a07993fe081a9750873490064340bbc56","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GAJavaScript"}},{"name":"GAPandoraBotsClient","path":"Specs/GAPandoraBotsClient","sha":"4e3d10ad92e415868f5d86460b2d66db340d69df","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GAPandoraBotsClient?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GAPandoraBotsClient","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4e3d10ad92e415868f5d86460b2d66db340d69df","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GAPandoraBotsClient?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4e3d10ad92e415868f5d86460b2d66db340d69df","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GAPandoraBotsClient"}},{"name":"GBCli","path":"Specs/GBCli","sha":"f0f723a6c03d21320e2889ed753c77f504c5a233","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GBCli?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GBCli","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f0f723a6c03d21320e2889ed753c77f504c5a233","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GBCli?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f0f723a6c03d21320e2889ed753c77f504c5a233","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GBCli"}},{"name":"GC3DFlipTransitionStyleSegue","path":"Specs/GC3DFlipTransitionStyleSegue","sha":"a03c1eee58014716ce2fd8da0e5fee31c9627005","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GC3DFlipTransitionStyleSegue?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GC3DFlipTransitionStyleSegue","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a03c1eee58014716ce2fd8da0e5fee31c9627005","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GC3DFlipTransitionStyleSegue?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a03c1eee58014716ce2fd8da0e5fee31c9627005","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GC3DFlipTransitionStyleSegue"}},{"name":"GCCommonCode-iOS","path":"Specs/GCCommonCode-iOS","sha":"f46b5b29c17509b3c9c1026587803dae95cf9754","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GCCommonCode-iOS?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GCCommonCode-iOS","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f46b5b29c17509b3c9c1026587803dae95cf9754","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GCCommonCode-iOS?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f46b5b29c17509b3c9c1026587803dae95cf9754","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GCCommonCode-iOS"}},{"name":"GCDiscreetNotificationView","path":"Specs/GCDiscreetNotificationView","sha":"6d6de3cc97531b8ebe84cf6371d663dc1dc6b073","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GCDiscreetNotificationView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GCDiscreetNotificationView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6d6de3cc97531b8ebe84cf6371d663dc1dc6b073","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GCDiscreetNotificationView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6d6de3cc97531b8ebe84cf6371d663dc1dc6b073","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GCDiscreetNotificationView"}},{"name":"GCNetworkReachability","path":"Specs/GCNetworkReachability","sha":"559880929406e493b9fb2a8a84f74dbc1685b47e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GCNetworkReachability?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GCNetworkReachability","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/559880929406e493b9fb2a8a84f74dbc1685b47e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GCNetworkReachability?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/559880929406e493b9fb2a8a84f74dbc1685b47e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GCNetworkReachability"}},{"name":"GCOLaunchImageTransition","path":"Specs/GCOLaunchImageTransition","sha":"ef178b6f1f0425c9aecd72e394f8dd4c7cef80cb","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GCOLaunchImageTransition?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GCOLaunchImageTransition","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ef178b6f1f0425c9aecd72e394f8dd4c7cef80cb","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GCOLaunchImageTransition?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ef178b6f1f0425c9aecd72e394f8dd4c7cef80cb","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GCOLaunchImageTransition"}},{"name":"GCPlaceholderTextView","path":"Specs/GCPlaceholderTextView","sha":"70b7b48a4710197bdaf04b5c63185e86558c8487","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GCPlaceholderTextView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GCPlaceholderTextView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/70b7b48a4710197bdaf04b5c63185e86558c8487","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GCPlaceholderTextView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/70b7b48a4710197bdaf04b5c63185e86558c8487","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GCPlaceholderTextView"}},{"name":"GCTagList","path":"Specs/GCTagList","sha":"2d670b29699c8eefd9beeb2e26760d1c5fb15628","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GCTagList?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GCTagList","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2d670b29699c8eefd9beeb2e26760d1c5fb15628","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GCTagList?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2d670b29699c8eefd9beeb2e26760d1c5fb15628","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GCTagList"}},{"name":"GData","path":"Specs/GData","sha":"f386de1a4640477408e87ab451eaec154cd65024","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GData?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GData","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f386de1a4640477408e87ab451eaec154cd65024","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GData?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f386de1a4640477408e87ab451eaec154cd65024","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GData"}},{"name":"GDataXML-HTML","path":"Specs/GDataXML-HTML","sha":"80cab3fb05850fde75bde850cb607c2192900ca1","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GDataXML-HTML?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GDataXML-HTML","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/80cab3fb05850fde75bde850cb607c2192900ca1","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GDataXML-HTML?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/80cab3fb05850fde75bde850cb607c2192900ca1","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GDataXML-HTML"}},{"name":"GGFullscreenImageViewController","path":"Specs/GGFullscreenImageViewController","sha":"686042ff8b9ea9c0bd83b4ea6463eede570c4745","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GGFullscreenImageViewController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GGFullscreenImageViewController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/686042ff8b9ea9c0bd83b4ea6463eede570c4745","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GGFullscreenImageViewController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/686042ff8b9ea9c0bd83b4ea6463eede570c4745","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GGFullscreenImageViewController"}},{"name":"GHKit","path":"Specs/GHKit","sha":"01f5f318262df5c8b90b9cac7c9d703c5f52a717","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GHKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GHKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/01f5f318262df5c8b90b9cac7c9d703c5f52a717","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GHKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/01f5f318262df5c8b90b9cac7c9d703c5f52a717","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GHKit"}},{"name":"GHMarkdownParser","path":"Specs/GHMarkdownParser","sha":"7593ef9bf2bd4f0ce0ab46b19ce862ae29d73b06","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GHMarkdownParser?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GHMarkdownParser","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7593ef9bf2bd4f0ce0ab46b19ce862ae29d73b06","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GHMarkdownParser?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7593ef9bf2bd4f0ce0ab46b19ce862ae29d73b06","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GHMarkdownParser"}},{"name":"GHSidebarNav","path":"Specs/GHSidebarNav","sha":"7d92b55b1d76c1f1dede090375ea9082cff1a0cb","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GHSidebarNav?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GHSidebarNav","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7d92b55b1d76c1f1dede090375ea9082cff1a0cb","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GHSidebarNav?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7d92b55b1d76c1f1dede090375ea9082cff1a0cb","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GHSidebarNav"}},{"name":"GHUnitIOS","path":"Specs/GHUnitIOS","sha":"c0c0e4b66be4f4a5234c0d20d997e00a577e7a7a","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GHUnitIOS?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GHUnitIOS","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c0c0e4b66be4f4a5234c0d20d997e00a577e7a7a","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GHUnitIOS?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c0c0e4b66be4f4a5234c0d20d997e00a577e7a7a","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GHUnitIOS"}},{"name":"GHUnitOSX","path":"Specs/GHUnitOSX","sha":"9e93fe00da4898c1d23eea9fda2576e5b2f89a8e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GHUnitOSX?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GHUnitOSX","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9e93fe00da4898c1d23eea9fda2576e5b2f89a8e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GHUnitOSX?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9e93fe00da4898c1d23eea9fda2576e5b2f89a8e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GHUnitOSX"}},{"name":"GKImagePicker","path":"Specs/GKImagePicker","sha":"09f3f83e069a5059c95dd5ea55e21aa84d8a81d7","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GKImagePicker?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GKImagePicker","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/09f3f83e069a5059c95dd5ea55e21aa84d8a81d7","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GKImagePicker?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/09f3f83e069a5059c95dd5ea55e21aa84d8a81d7","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GKImagePicker"}},{"name":"GMGridView","path":"Specs/GMGridView","sha":"7ee69424be9b2fa58a11966b3835a8e17eb75827","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GMGridView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GMGridView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7ee69424be9b2fa58a11966b3835a8e17eb75827","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GMGridView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7ee69424be9b2fa58a11966b3835a8e17eb75827","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GMGridView"}},{"name":"GPHTTPRequest","path":"Specs/GPHTTPRequest","sha":"390067eeaccbd1e0d294661b70093eb387f593a1","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GPHTTPRequest?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GPHTTPRequest","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/390067eeaccbd1e0d294661b70093eb387f593a1","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GPHTTPRequest?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/390067eeaccbd1e0d294661b70093eb387f593a1","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GPHTTPRequest"}},{"name":"GPUImage","path":"Specs/GPUImage","sha":"e26f01b821a7eaf8f23b49ee438d3d96b1e9fb3b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GPUImage?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GPUImage","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e26f01b821a7eaf8f23b49ee438d3d96b1e9fb3b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GPUImage?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e26f01b821a7eaf8f23b49ee438d3d96b1e9fb3b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GPUImage"}},{"name":"GPUImage@siuying","path":"Specs/GPUImage@siuying","sha":"eaf996c9519a0b70ddc79d8567be81f2efd7f632","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GPUImage@siuying?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GPUImage@siuying","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/eaf996c9519a0b70ddc79d8567be81f2efd7f632","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GPUImage@siuying?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/eaf996c9519a0b70ddc79d8567be81f2efd7f632","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GPUImage@siuying"}},{"name":"GPXParser","path":"Specs/GPXParser","sha":"c74ec26283b9e9c486d83a0001b87d050667ddb3","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GPXParser?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GPXParser","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c74ec26283b9e9c486d83a0001b87d050667ddb3","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GPXParser?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c74ec26283b9e9c486d83a0001b87d050667ddb3","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GPXParser"}},{"name":"GRMustache","path":"Specs/GRMustache","sha":"ead189d4dd2ec3282480075fba13adf94237a49e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GRMustache?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GRMustache","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ead189d4dd2ec3282480075fba13adf94237a49e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GRMustache?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ead189d4dd2ec3282480075fba13adf94237a49e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GRMustache"}},{"name":"GSAnimationBlockDelegate","path":"Specs/GSAnimationBlockDelegate","sha":"035ecef9cd634a72cd66c3b2e37897213192219b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GSAnimationBlockDelegate?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GSAnimationBlockDelegate","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/035ecef9cd634a72cd66c3b2e37897213192219b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GSAnimationBlockDelegate?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/035ecef9cd634a72cd66c3b2e37897213192219b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GSAnimationBlockDelegate"}},{"name":"GSBookShelf","path":"Specs/GSBookShelf","sha":"9dc060bffd62ac6b3f9a2256724cd71fb4a13108","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GSBookShelf?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GSBookShelf","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9dc060bffd62ac6b3f9a2256724cd71fb4a13108","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GSBookShelf?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9dc060bffd62ac6b3f9a2256724cd71fb4a13108","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GSBookShelf"}},{"name":"GSDropboxActivity","path":"Specs/GSDropboxActivity","sha":"38b94543ae520f1394abacb50d26329c386cdcb8","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GSDropboxActivity?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GSDropboxActivity","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/38b94543ae520f1394abacb50d26329c386cdcb8","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GSDropboxActivity?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/38b94543ae520f1394abacb50d26329c386cdcb8","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GSDropboxActivity"}},{"name":"GSRadioButtonSetController","path":"Specs/GSRadioButtonSetController","sha":"017f519aac31f8fa9412d5d4981942064ed6a5e3","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GSRadioButtonSetController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GSRadioButtonSetController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/017f519aac31f8fa9412d5d4981942064ed6a5e3","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GSRadioButtonSetController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/017f519aac31f8fa9412d5d4981942064ed6a5e3","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GSRadioButtonSetController"}},{"name":"GTMHTTPFetcher","path":"Specs/GTMHTTPFetcher","sha":"f458691b5bbaf7940162b363fe7101bf811710e0","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GTMHTTPFetcher?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GTMHTTPFetcher","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f458691b5bbaf7940162b363fe7101bf811710e0","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GTMHTTPFetcher?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f458691b5bbaf7940162b363fe7101bf811710e0","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GTMHTTPFetcher"}},{"name":"GVCache","path":"Specs/GVCache","sha":"f1beed5676ec1e63fab96ff6d229cfbbb96936da","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GVCache?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GVCache","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f1beed5676ec1e63fab96ff6d229cfbbb96936da","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GVCache?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f1beed5676ec1e63fab96ff6d229cfbbb96936da","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GVCache"}},{"name":"GVMusicPlayerController","path":"Specs/GVMusicPlayerController","sha":"32bb82ae566d5d69309167b9ee4e14c91b71922b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GVMusicPlayerController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GVMusicPlayerController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/32bb82ae566d5d69309167b9ee4e14c91b71922b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GVMusicPlayerController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/32bb82ae566d5d69309167b9ee4e14c91b71922b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GVMusicPlayerController"}},{"name":"GVUserDefaults","path":"Specs/GVUserDefaults","sha":"6a42c521b8f1e2e83c31489e9e85a24d1f57f825","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GVUserDefaults?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GVUserDefaults","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6a42c521b8f1e2e83c31489e9e85a24d1f57f825","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GVUserDefaults?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6a42c521b8f1e2e83c31489e9e85a24d1f57f825","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GVUserDefaults"}},{"name":"GZIP","path":"Specs/GZIP","sha":"1df2d24030683e51c7a29eec80a3072fff365bba","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GZIP?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GZIP","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1df2d24030683e51c7a29eec80a3072fff365bba","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GZIP?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1df2d24030683e51c7a29eec80a3072fff365bba","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GZIP"}},{"name":"Gen","path":"Specs/Gen","sha":"010bc153a6283231f259a5bc41ee94416abe1d8c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Gen?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Gen","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/010bc153a6283231f259a5bc41ee94416abe1d8c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Gen?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/010bc153a6283231f259a5bc41ee94416abe1d8c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Gen"}},{"name":"GetGravatar","path":"Specs/GetGravatar","sha":"0cd26caeb6c6387524c4514cd5b3408930b52a33","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GetGravatar?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GetGravatar","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0cd26caeb6c6387524c4514cd5b3408930b52a33","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GetGravatar?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0cd26caeb6c6387524c4514cd5b3408930b52a33","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GetGravatar"}},{"name":"Godzippa","path":"Specs/Godzippa","sha":"6ca5f7e8a78301bd5b9e5af0884c230fce176c0a","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Godzippa?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Godzippa","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6ca5f7e8a78301bd5b9e5af0884c230fce176c0a","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Godzippa?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6ca5f7e8a78301bd5b9e5af0884c230fce176c0a","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Godzippa"}},{"name":"Google-API-Client","path":"Specs/Google-API-Client","sha":"125dd8b73debfb06e67c6e76e7e0a28a8ba97550","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Google-API-Client?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Google-API-Client","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/125dd8b73debfb06e67c6e76e7e0a28a8ba97550","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Google-API-Client?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/125dd8b73debfb06e67c6e76e7e0a28a8ba97550","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Google-API-Client"}},{"name":"Google-Diff-Match-Patch","path":"Specs/Google-Diff-Match-Patch","sha":"5c9edc37af131269710e3e49c1325107c444f4fc","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Google-Diff-Match-Patch?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Google-Diff-Match-Patch","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5c9edc37af131269710e3e49c1325107c444f4fc","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Google-Diff-Match-Patch?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5c9edc37af131269710e3e49c1325107c444f4fc","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Google-Diff-Match-Patch"}},{"name":"Google-Maps-iOS-SDK","path":"Specs/Google-Maps-iOS-SDK","sha":"d260696257525d43cb670c341f111ab448cd6a9c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Google-Maps-iOS-SDK?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Google-Maps-iOS-SDK","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d260696257525d43cb670c341f111ab448cd6a9c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Google-Maps-iOS-SDK?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d260696257525d43cb670c341f111ab448cd6a9c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Google-Maps-iOS-SDK"}},{"name":"GoogleAnalytics-iOS-SDK","path":"Specs/GoogleAnalytics-iOS-SDK","sha":"fd4b1adf75e889e2d5d139f5af9b35e5d926650d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GoogleAnalytics-iOS-SDK?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GoogleAnalytics-iOS-SDK","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fd4b1adf75e889e2d5d139f5af9b35e5d926650d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GoogleAnalytics-iOS-SDK?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fd4b1adf75e889e2d5d139f5af9b35e5d926650d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GoogleAnalytics-iOS-SDK"}},{"name":"GoogleConversionTracking","path":"Specs/GoogleConversionTracking","sha":"10115bf1fa4ad15e15c919727d41c203e0114cf2","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GoogleConversionTracking?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GoogleConversionTracking","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/10115bf1fa4ad15e15c919727d41c203e0114cf2","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GoogleConversionTracking?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/10115bf1fa4ad15e15c919727d41c203e0114cf2","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GoogleConversionTracking"}},{"name":"GoogleMapsDirection","path":"Specs/GoogleMapsDirection","sha":"ee17c53d537e3f14e7ca1be8f4453895116cd229","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GoogleMapsDirection?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GoogleMapsDirection","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ee17c53d537e3f14e7ca1be8f4453895116cd229","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GoogleMapsDirection?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ee17c53d537e3f14e7ca1be8f4453895116cd229","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GoogleMapsDirection"}},{"name":"GoogleMapsKit","path":"Specs/GoogleMapsKit","sha":"654fa1882c6afb5d5c30eb641ddd1e3a7a9961b8","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GoogleMapsKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GoogleMapsKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/654fa1882c6afb5d5c30eb641ddd1e3a7a9961b8","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GoogleMapsKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/654fa1882c6afb5d5c30eb641ddd1e3a7a9961b8","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GoogleMapsKit"}},{"name":"GrannySmith","path":"Specs/GrannySmith","sha":"3f81964600f815fc1b58d0d2e3af072459215cef","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GrannySmith?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GrannySmith","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3f81964600f815fc1b58d0d2e3af072459215cef","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GrannySmith?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3f81964600f815fc1b58d0d2e3af072459215cef","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GrannySmith"}},{"name":"GroundControl","path":"Specs/GroundControl","sha":"ad4dfb0888bea0d7b66530cf507e14c59476e780","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GroundControl?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GroundControl","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ad4dfb0888bea0d7b66530cf507e14c59476e780","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/GroundControl?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ad4dfb0888bea0d7b66530cf507e14c59476e780","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/GroundControl"}},{"name":"HCDataStructures","path":"Specs/HCDataStructures","sha":"de3b11f29ab67261aac363e650e9e0702e54074d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HCDataStructures?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HCDataStructures","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/de3b11f29ab67261aac363e650e9e0702e54074d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HCDataStructures?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/de3b11f29ab67261aac363e650e9e0702e54074d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HCDataStructures"}},{"name":"HCViews","path":"Specs/HCViews","sha":"0d35ca87f1ba15c31dd5e91f6febfaf9010f9777","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HCViews?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HCViews","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0d35ca87f1ba15c31dd5e91f6febfaf9010f9777","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HCViews?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0d35ca87f1ba15c31dd5e91f6febfaf9010f9777","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HCViews"}},{"name":"HCYoutubeParser","path":"Specs/HCYoutubeParser","sha":"5b71d1bac662206264ae88f47644794cd5147056","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HCYoutubeParser?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HCYoutubeParser","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5b71d1bac662206264ae88f47644794cd5147056","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HCYoutubeParser?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5b71d1bac662206264ae88f47644794cd5147056","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HCYoutubeParser"}},{"name":"HHDistanceFormatter","path":"Specs/HHDistanceFormatter","sha":"2cde3d2c7db926785ef589fa1b63714205a3012c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HHDistanceFormatter?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HHDistanceFormatter","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2cde3d2c7db926785ef589fa1b63714205a3012c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HHDistanceFormatter?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2cde3d2c7db926785ef589fa1b63714205a3012c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HHDistanceFormatter"}},{"name":"HHPanningTableViewCell","path":"Specs/HHPanningTableViewCell","sha":"a2c0d5eddc07ed75381a63d60bf862ccb7c779a4","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HHPanningTableViewCell?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HHPanningTableViewCell","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a2c0d5eddc07ed75381a63d60bf862ccb7c779a4","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HHPanningTableViewCell?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a2c0d5eddc07ed75381a63d60bf862ccb7c779a4","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HHPanningTableViewCell"}},{"name":"HHUnitConverter","path":"Specs/HHUnitConverter","sha":"89b5651935e50d2ffb438d782746730f8f77438c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HHUnitConverter?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HHUnitConverter","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/89b5651935e50d2ffb438d782746730f8f77438c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HHUnitConverter?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/89b5651935e50d2ffb438d782746730f8f77438c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HHUnitConverter"}},{"name":"HJCache","path":"Specs/HJCache","sha":"eb2e18e6f7117769743b0195d8193717787e2797","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HJCache?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HJCache","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/eb2e18e6f7117769743b0195d8193717787e2797","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HJCache?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/eb2e18e6f7117769743b0195d8193717787e2797","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HJCache"}},{"name":"HKCircularProgressView","path":"Specs/HKCircularProgressView","sha":"adbb7c6a5ca5bed1d6db9f6b172724f37e34318c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HKCircularProgressView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HKCircularProgressView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/adbb7c6a5ca5bed1d6db9f6b172724f37e34318c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HKCircularProgressView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/adbb7c6a5ca5bed1d6db9f6b172724f37e34318c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HKCircularProgressView"}},{"name":"HKRadialMenu","path":"Specs/HKRadialMenu","sha":"07e1446e3cbc80afbc21f7db95e64b3da9bb11c9","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HKRadialMenu?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HKRadialMenu","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/07e1446e3cbc80afbc21f7db95e64b3da9bb11c9","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HKRadialMenu?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/07e1446e3cbc80afbc21f7db95e64b3da9bb11c9","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HKRadialMenu"}},{"name":"HKRefreshControl","path":"Specs/HKRefreshControl","sha":"aeeb6fbacc64c5f4cdefc7f8700b61215d4ada85","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HKRefreshControl?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HKRefreshControl","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/aeeb6fbacc64c5f4cdefc7f8700b61215d4ada85","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HKRefreshControl?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/aeeb6fbacc64c5f4cdefc7f8700b61215d4ada85","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HKRefreshControl"}},{"name":"HMSegmentedControl","path":"Specs/HMSegmentedControl","sha":"ca9799b1b05403c2c66601aa38b4699ef5d0a04a","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HMSegmentedControl?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HMSegmentedControl","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ca9799b1b05403c2c66601aa38b4699ef5d0a04a","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HMSegmentedControl?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ca9799b1b05403c2c66601aa38b4699ef5d0a04a","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HMSegmentedControl"}},{"name":"HMSideMenu","path":"Specs/HMSideMenu","sha":"198a4cfee0961e27913e36a7c8289ffce5344b14","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HMSideMenu?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HMSideMenu","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/198a4cfee0961e27913e36a7c8289ffce5344b14","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HMSideMenu?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/198a4cfee0961e27913e36a7c8289ffce5344b14","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HMSideMenu"}},{"name":"HPCSMist","path":"Specs/HPCSMist","sha":"e952b628ca2abd563963dc6cc7eb70591ef43b6c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HPCSMist?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HPCSMist","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e952b628ca2abd563963dc6cc7eb70591ef43b6c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HPCSMist?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e952b628ca2abd563963dc6cc7eb70591ef43b6c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HPCSMist"}},{"name":"HPGrowingTextView","path":"Specs/HPGrowingTextView","sha":"6264e726235d0f8b8769d41813eda74d0d81d250","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HPGrowingTextView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HPGrowingTextView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6264e726235d0f8b8769d41813eda74d0d81d250","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HPGrowingTextView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6264e726235d0f8b8769d41813eda74d0d81d250","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HPGrowingTextView"}},{"name":"HPLTagCloudGenerator","path":"Specs/HPLTagCloudGenerator","sha":"8620fd7eaa3f974947f59c5f395a8a74c8b1ffdd","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HPLTagCloudGenerator?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HPLTagCloudGenerator","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8620fd7eaa3f974947f59c5f395a8a74c8b1ffdd","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HPLTagCloudGenerator?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8620fd7eaa3f974947f59c5f395a8a74c8b1ffdd","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HPLTagCloudGenerator"}},{"name":"HRCoder","path":"Specs/HRCoder","sha":"cc2e0ccc572a36542b492c446cc137f469f0eb72","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HRCoder?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HRCoder","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/cc2e0ccc572a36542b492c446cc137f469f0eb72","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HRCoder?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/cc2e0ccc572a36542b492c446cc137f469f0eb72","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HRCoder"}},{"name":"HSLUpdateChecker","path":"Specs/HSLUpdateChecker","sha":"a6c4884d87d61b6a0f02c592faf6512f0718485a","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HSLUpdateChecker?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HSLUpdateChecker","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a6c4884d87d61b6a0f02c592faf6512f0718485a","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HSLUpdateChecker?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a6c4884d87d61b6a0f02c592faf6512f0718485a","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HSLUpdateChecker"}},{"name":"HTAutocompleteTextField","path":"Specs/HTAutocompleteTextField","sha":"48250b8274655609676f88c6eed17e4a6433e797","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HTAutocompleteTextField?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HTAutocompleteTextField","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/48250b8274655609676f88c6eed17e4a6433e797","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HTAutocompleteTextField?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/48250b8274655609676f88c6eed17e4a6433e797","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HTAutocompleteTextField"}},{"name":"HTCoreImage","path":"Specs/HTCoreImage","sha":"d7e7a70fee4e75082658c0f8877a65659bcc5987","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HTCoreImage?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HTCoreImage","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d7e7a70fee4e75082658c0f8877a65659bcc5987","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HTCoreImage?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d7e7a70fee4e75082658c0f8877a65659bcc5987","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HTCoreImage"}},{"name":"HTDelegateProxy","path":"Specs/HTDelegateProxy","sha":"aff2c682131ff4e13c4fefa93f0eab80d064a933","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HTDelegateProxy?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HTDelegateProxy","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/aff2c682131ff4e13c4fefa93f0eab80d064a933","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HTDelegateProxy?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/aff2c682131ff4e13c4fefa93f0eab80d064a933","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HTDelegateProxy"}},{"name":"HTGradientEasing","path":"Specs/HTGradientEasing","sha":"685222b27d17271352225ae3ed40821ca20e4e39","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HTGradientEasing?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HTGradientEasing","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/685222b27d17271352225ae3ed40821ca20e4e39","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HTGradientEasing?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/685222b27d17271352225ae3ed40821ca20e4e39","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HTGradientEasing"}},{"name":"HTGraphics","path":"Specs/HTGraphics","sha":"c4365262b347f4af2348690f552f27c294bc3c84","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HTGraphics?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HTGraphics","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c4365262b347f4af2348690f552f27c294bc3c84","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HTGraphics?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c4365262b347f4af2348690f552f27c294bc3c84","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HTGraphics"}},{"name":"HTKit","path":"Specs/HTKit","sha":"de93fb79bdc77ca8761c4dc38dba90f0a72020ff","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HTKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HTKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/de93fb79bdc77ca8761c4dc38dba90f0a72020ff","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HTKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/de93fb79bdc77ca8761c4dc38dba90f0a72020ff","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HTKit"}},{"name":"HTRasterView","path":"Specs/HTRasterView","sha":"2905e71d226ccfdc524ece7b0d5f57947dadbc29","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HTRasterView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HTRasterView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2905e71d226ccfdc524ece7b0d5f57947dadbc29","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HTRasterView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2905e71d226ccfdc524ece7b0d5f57947dadbc29","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HTRasterView"}},{"name":"HTStateAwareRasterImageView","path":"Specs/HTStateAwareRasterImageView","sha":"f0c8ed4e7794a0bda71011af9d857fef2bb4083e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HTStateAwareRasterImageView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HTStateAwareRasterImageView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f0c8ed4e7794a0bda71011af9d857fef2bb4083e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HTStateAwareRasterImageView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f0c8ed4e7794a0bda71011af9d857fef2bb4083e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HTStateAwareRasterImageView"}},{"name":"HTTPRiot","path":"Specs/HTTPRiot","sha":"f34bf6144b1783ed17efa45a939004bdd5e1834c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HTTPRiot?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HTTPRiot","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f34bf6144b1783ed17efa45a939004bdd5e1834c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HTTPRiot?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f34bf6144b1783ed17efa45a939004bdd5e1834c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HTTPRiot"}},{"name":"HTUpdateAggregator","path":"Specs/HTUpdateAggregator","sha":"600457dd3d7a9a15c2875d17dd49cbf5fe1871be","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HTUpdateAggregator?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HTUpdateAggregator","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/600457dd3d7a9a15c2875d17dd49cbf5fe1871be","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HTUpdateAggregator?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/600457dd3d7a9a15c2875d17dd49cbf5fe1871be","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HTUpdateAggregator"}},{"name":"Handsy","path":"Specs/Handsy","sha":"4ee3b32e77d0c1daaa954f07fd3018b76f4f9147","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Handsy?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Handsy","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4ee3b32e77d0c1daaa954f07fd3018b76f4f9147","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Handsy?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4ee3b32e77d0c1daaa954f07fd3018b76f4f9147","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Handsy"}},{"name":"Harpy","path":"Specs/Harpy","sha":"947b387905cafe679af7d461ba70c2d47fe479ce","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Harpy?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Harpy","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/947b387905cafe679af7d461ba70c2d47fe479ce","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Harpy?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/947b387905cafe679af7d461ba70c2d47fe479ce","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Harpy"}},{"name":"HashBuilder","path":"Specs/HashBuilder","sha":"d7139b781dcbca8f66900da51d3802083193a3b3","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HashBuilder?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HashBuilder","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d7139b781dcbca8f66900da51d3802083193a3b3","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HashBuilder?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d7139b781dcbca8f66900da51d3802083193a3b3","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HashBuilder"}},{"name":"Helpshift","path":"Specs/Helpshift","sha":"b46e18da18961720bcba408077d348300485b724","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Helpshift?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Helpshift","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b46e18da18961720bcba408077d348300485b724","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Helpshift?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b46e18da18961720bcba408077d348300485b724","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Helpshift"}},{"name":"Heyzap","path":"Specs/Heyzap","sha":"9300d6160c6f450c4957810c4f17bdc12d549544","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Heyzap?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Heyzap","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9300d6160c6f450c4957810c4f17bdc12d549544","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Heyzap?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9300d6160c6f450c4957810c4f17bdc12d549544","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Heyzap"}},{"name":"HockeyKit","path":"Specs/HockeyKit","sha":"efb994f93863f962b140f092812d68162daa4fed","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HockeyKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HockeyKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/efb994f93863f962b140f092812d68162daa4fed","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HockeyKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/efb994f93863f962b140f092812d68162daa4fed","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HockeyKit"}},{"name":"HockeySDK","path":"Specs/HockeySDK","sha":"42aec00fcda16c5c30a72e9d1d887fbcfd8a62ad","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HockeySDK?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HockeySDK","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/42aec00fcda16c5c30a72e9d1d887fbcfd8a62ad","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HockeySDK?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/42aec00fcda16c5c30a72e9d1d887fbcfd8a62ad","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HockeySDK"}},{"name":"HorizontalPicker","path":"Specs/HorizontalPicker","sha":"1b92079c364014906c58d8d690fcab1c6ca49177","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HorizontalPicker?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HorizontalPicker","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1b92079c364014906c58d8d690fcab1c6ca49177","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HorizontalPicker?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1b92079c364014906c58d8d690fcab1c6ca49177","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HorizontalPicker"}},{"name":"HyperBek","path":"Specs/HyperBek","sha":"4fd758f12ea5321ea624adf545204a64dd9398af","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HyperBek?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HyperBek","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4fd758f12ea5321ea624adf545204a64dd9398af","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/HyperBek?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4fd758f12ea5321ea624adf545204a64dd9398af","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/HyperBek"}},{"name":"IAPManager","path":"Specs/IAPManager","sha":"ca47a8f3f06921e1facbd9c59a757b280f281b44","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/IAPManager?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/IAPManager","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ca47a8f3f06921e1facbd9c59a757b280f281b44","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/IAPManager?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ca47a8f3f06921e1facbd9c59a757b280f281b44","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/IAPManager"}},{"name":"IAPValidation","path":"Specs/IAPValidation","sha":"fd6f94ee8e9a56de831fc457712a0e224849ae1f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/IAPValidation?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/IAPValidation","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fd6f94ee8e9a56de831fc457712a0e224849ae1f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/IAPValidation?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fd6f94ee8e9a56de831fc457712a0e224849ae1f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/IAPValidation"}},{"name":"IBAForms","path":"Specs/IBAForms","sha":"ce5f34321222ae8a98f7be750c071124ffa00508","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/IBAForms?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/IBAForms","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ce5f34321222ae8a98f7be750c071124ffa00508","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/IBAForms?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ce5f34321222ae8a98f7be750c071124ffa00508","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/IBAForms"}},{"name":"IGAutoCompletionToolbar","path":"Specs/IGAutoCompletionToolbar","sha":"ead382e0ebe15b0e7454d86af0972a099afe741c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/IGAutoCompletionToolbar?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/IGAutoCompletionToolbar","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ead382e0ebe15b0e7454d86af0972a099afe741c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/IGAutoCompletionToolbar?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ead382e0ebe15b0e7454d86af0972a099afe741c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/IGAutoCompletionToolbar"}},{"name":"IGAutoString","path":"Specs/IGAutoString","sha":"ec0831eb451508a4dc45d61fc613aa832481ea15","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/IGAutoString?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/IGAutoString","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ec0831eb451508a4dc45d61fc613aa832481ea15","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/IGAutoString?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ec0831eb451508a4dc45d61fc613aa832481ea15","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/IGAutoString"}},{"name":"IGDigest","path":"Specs/IGDigest","sha":"92c70c7eea24fe547e2087c5a58799fc4597c5a0","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/IGDigest?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/IGDigest","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/92c70c7eea24fe547e2087c5a58799fc4597c5a0","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/IGDigest?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/92c70c7eea24fe547e2087c5a58799fc4597c5a0","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/IGDigest"}},{"name":"IGFastImage","path":"Specs/IGFastImage","sha":"866c62534dd6564d36a673378b7fc861459b3884","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/IGFastImage?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/IGFastImage","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/866c62534dd6564d36a673378b7fc861459b3884","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/IGFastImage?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/866c62534dd6564d36a673378b7fc861459b3884","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/IGFastImage"}},{"name":"IGFuture","path":"Specs/IGFuture","sha":"367c2b2263fe9d8476c4b73c6710fad5264cbf9b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/IGFuture?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/IGFuture","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/367c2b2263fe9d8476c4b73c6710fad5264cbf9b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/IGFuture?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/367c2b2263fe9d8476c4b73c6710fad5264cbf9b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/IGFuture"}},{"name":"IGSignature","path":"Specs/IGSignature","sha":"3ee5c84b21ac2efc8fc89963c89e77593dddc281","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/IGSignature?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/IGSignature","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3ee5c84b21ac2efc8fc89963c89e77593dddc281","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/IGSignature?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3ee5c84b21ac2efc8fc89963c89e77593dddc281","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/IGSignature"}},{"name":"IGWebLogger","path":"Specs/IGWebLogger","sha":"a787a4c51ecdef5afaf4525922235cd885ff32a8","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/IGWebLogger?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/IGWebLogger","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a787a4c51ecdef5afaf4525922235cd885ff32a8","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/IGWebLogger?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a787a4c51ecdef5afaf4525922235cd885ff32a8","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/IGWebLogger"}},{"name":"IMAPClient","path":"Specs/IMAPClient","sha":"7dcd9f5989970c6dd49eae5f656c179cda5d9985","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/IMAPClient?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/IMAPClient","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7dcd9f5989970c6dd49eae5f656c179cda5d9985","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/IMAPClient?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7dcd9f5989970c6dd49eae5f656c179cda5d9985","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/IMAPClient"}},{"name":"IMOAutocompletionViewController","path":"Specs/IMOAutocompletionViewController","sha":"72d50b1db39276a22bfd8b3f90ace17939a03302","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/IMOAutocompletionViewController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/IMOAutocompletionViewController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/72d50b1db39276a22bfd8b3f90ace17939a03302","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/IMOAutocompletionViewController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/72d50b1db39276a22bfd8b3f90ace17939a03302","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/IMOAutocompletionViewController"}},{"name":"INAppStoreWindow","path":"Specs/INAppStoreWindow","sha":"2daf2a2f8b4a68d799f3b5f4a7d40f9559b1d7f9","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/INAppStoreWindow?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/INAppStoreWindow","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2daf2a2f8b4a68d799f3b5f4a7d40f9559b1d7f9","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/INAppStoreWindow?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2daf2a2f8b4a68d799f3b5f4a7d40f9559b1d7f9","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/INAppStoreWindow"}},{"name":"INKeychainAccess","path":"Specs/INKeychainAccess","sha":"3bea9f455506c0488b508f1c30ac99ea1edfa536","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/INKeychainAccess?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/INKeychainAccess","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3bea9f455506c0488b508f1c30ac99ea1edfa536","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/INKeychainAccess?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3bea9f455506c0488b508f1c30ac99ea1edfa536","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/INKeychainAccess"}},{"name":"IODProfanityFilter","path":"Specs/IODProfanityFilter","sha":"4304630b729711fdd2658e4ea2d9399625da38f4","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/IODProfanityFilter?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/IODProfanityFilter","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4304630b729711fdd2658e4ea2d9399625da38f4","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/IODProfanityFilter?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4304630b729711fdd2658e4ea2d9399625da38f4","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/IODProfanityFilter"}},{"name":"IOSLinkedInAPI","path":"Specs/IOSLinkedInAPI","sha":"595417302da0cf11c0206cb82012d8ab4cde06aa","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/IOSLinkedInAPI?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/IOSLinkedInAPI","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/595417302da0cf11c0206cb82012d8ab4cde06aa","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/IOSLinkedInAPI?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/595417302da0cf11c0206cb82012d8ab4cde06aa","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/IOSLinkedInAPI"}},{"name":"IOSQueryable","path":"Specs/IOSQueryable","sha":"69a973e310b98956b736bfa6cac74db605a882f4","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/IOSQueryable?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/IOSQueryable","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/69a973e310b98956b736bfa6cac74db605a882f4","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/IOSQueryable?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/69a973e310b98956b736bfa6cac74db605a882f4","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/IOSQueryable"}},{"name":"IPOfflineQueue","path":"Specs/IPOfflineQueue","sha":"d53ef47bac29db33d47136df0dbc16209e93a6a3","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/IPOfflineQueue?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/IPOfflineQueue","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d53ef47bac29db33d47136df0dbc16209e93a6a3","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/IPOfflineQueue?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d53ef47bac29db33d47136df0dbc16209e93a6a3","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/IPOfflineQueue"}},{"name":"IQEnginesSDK","path":"Specs/IQEnginesSDK","sha":"5a112d6185a33d02b12ee514dd4a97033f011b90","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/IQEnginesSDK?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/IQEnginesSDK","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5a112d6185a33d02b12ee514dd4a97033f011b90","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/IQEnginesSDK?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5a112d6185a33d02b12ee514dd4a97033f011b90","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/IQEnginesSDK"}},{"name":"ISColumnsController","path":"Specs/ISColumnsController","sha":"20ee8c43b256f5d9fdd8b33e00d5501b2c181139","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ISColumnsController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ISColumnsController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/20ee8c43b256f5d9fdd8b33e00d5501b2c181139","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ISColumnsController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/20ee8c43b256f5d9fdd8b33e00d5501b2c181139","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ISColumnsController"}},{"name":"ISLinguisticsHelper","path":"Specs/ISLinguisticsHelper","sha":"0696071f018c36909c782222556c1d79b56a66e9","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ISLinguisticsHelper?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ISLinguisticsHelper","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0696071f018c36909c782222556c1d79b56a66e9","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ISLinguisticsHelper?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0696071f018c36909c782222556c1d79b56a66e9","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ISLinguisticsHelper"}},{"name":"ISNetwork","path":"Specs/ISNetwork","sha":"d53357e09f03756c63c6c6c8162ade9700d87001","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ISNetwork?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ISNetwork","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d53357e09f03756c63c6c6c8162ade9700d87001","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ISNetwork?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d53357e09f03756c63c6c6c8162ade9700d87001","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ISNetwork"}},{"name":"ISO8601DateFormatter","path":"Specs/ISO8601DateFormatter","sha":"45540a4353af7ce80c9dcbe00cb91d30bb060d60","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ISO8601DateFormatter?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ISO8601DateFormatter","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/45540a4353af7ce80c9dcbe00cb91d30bb060d60","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ISO8601DateFormatter?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/45540a4353af7ce80c9dcbe00cb91d30bb060d60","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ISO8601DateFormatter"}},{"name":"ISPageScrollView","path":"Specs/ISPageScrollView","sha":"15d319b2b4daa040fa7de843ccfb40d9231149c7","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ISPageScrollView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ISPageScrollView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/15d319b2b4daa040fa7de843ccfb40d9231149c7","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ISPageScrollView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/15d319b2b4daa040fa7de843ccfb40d9231149c7","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ISPageScrollView"}},{"name":"ISRefreshControl","path":"Specs/ISRefreshControl","sha":"27d92834770825a515b9adb2f029c6e4672ac1e8","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ISRefreshControl?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ISRefreshControl","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/27d92834770825a515b9adb2f029c6e4672ac1e8","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ISRefreshControl?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/27d92834770825a515b9adb2f029c6e4672ac1e8","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ISRefreshControl"}},{"name":"ITSidebar","path":"Specs/ITSidebar","sha":"d59c5f353af62c631f765ff08b6a92b6f7970c90","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ITSidebar?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ITSidebar","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d59c5f353af62c631f765ff08b6a92b6f7970c90","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ITSidebar?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d59c5f353af62c631f765ff08b6a92b6f7970c90","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ITSidebar"}},{"name":"ITWLoadingPanel","path":"Specs/ITWLoadingPanel","sha":"e09dcf976f2b63e709d1ba25dd56ac347e290dfd","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ITWLoadingPanel?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ITWLoadingPanel","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e09dcf976f2b63e709d1ba25dd56ac347e290dfd","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ITWLoadingPanel?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e09dcf976f2b63e709d1ba25dd56ac347e290dfd","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ITWLoadingPanel"}},{"name":"IdentityManager","path":"Specs/IdentityManager","sha":"5be6c6832237e93b57859c689645b22a6e60b655","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/IdentityManager?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/IdentityManager","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5be6c6832237e93b57859c689645b22a6e60b655","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/IdentityManager?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5be6c6832237e93b57859c689645b22a6e60b655","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/IdentityManager"}},{"name":"ImageCache","path":"Specs/ImageCache","sha":"3781979a224d6a1c9bc8508099c586dacc0d2b79","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ImageCache?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ImageCache","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3781979a224d6a1c9bc8508099c586dacc0d2b79","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ImageCache?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3781979a224d6a1c9bc8508099c586dacc0d2b79","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ImageCache"}},{"name":"InAppSettingsKit","path":"Specs/InAppSettingsKit","sha":"774ac6f2ffb9af737b9743d58e815195bcdab52f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/InAppSettingsKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/InAppSettingsKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/774ac6f2ffb9af737b9743d58e815195bcdab52f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/InAppSettingsKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/774ac6f2ffb9af737b9743d58e815195bcdab52f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/InAppSettingsKit"}},{"name":"InMobiSDK","path":"Specs/InMobiSDK","sha":"60abdac24350290361e10225acd29ce046faf965","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/InMobiSDK?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/InMobiSDK","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/60abdac24350290361e10225acd29ce046faf965","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/InMobiSDK?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/60abdac24350290361e10225acd29ce046faf965","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/InMobiSDK"}},{"name":"InfColorPicker","path":"Specs/InfColorPicker","sha":"361e3316f3187adb95ea19bb43b735e00ef4589e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/InfColorPicker?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/InfColorPicker","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/361e3316f3187adb95ea19bb43b735e00ef4589e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/InfColorPicker?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/361e3316f3187adb95ea19bb43b735e00ef4589e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/InfColorPicker"}},{"name":"InfinitePagingView","path":"Specs/InfinitePagingView","sha":"f4adec5255470dbf69c9d888278662b8be71b380","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/InfinitePagingView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/InfinitePagingView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f4adec5255470dbf69c9d888278662b8be71b380","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/InfinitePagingView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f4adec5255470dbf69c9d888278662b8be71b380","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/InfinitePagingView"}},{"name":"Inflections","path":"Specs/Inflections","sha":"a7b2fe2f0a864c9933673ba3fdc97f3899683570","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Inflections?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Inflections","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a7b2fe2f0a864c9933673ba3fdc97f3899683570","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Inflections?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a7b2fe2f0a864c9933673ba3fdc97f3899683570","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Inflections"}},{"name":"InflectorKit","path":"Specs/InflectorKit","sha":"debf5d10182c31c9bbe64c6d74f00550eec4ffb8","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/InflectorKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/InflectorKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/debf5d10182c31c9bbe64c6d74f00550eec4ffb8","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/InflectorKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/debf5d10182c31c9bbe64c6d74f00550eec4ffb8","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/InflectorKit"}},{"name":"Injective","path":"Specs/Injective","sha":"77a90d3d208190a6ee4eea4db6126d9362846126","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Injective?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Injective","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/77a90d3d208190a6ee4eea4db6126d9362846126","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Injective?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/77a90d3d208190a6ee4eea4db6126d9362846126","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Injective"}},{"name":"Inline","path":"Specs/Inline","sha":"cb8c5db6d30487cf7c857d1ca24972ae0fa92ad5","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Inline?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Inline","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/cb8c5db6d30487cf7c857d1ca24972ae0fa92ad5","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Inline?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/cb8c5db6d30487cf7c857d1ca24972ae0fa92ad5","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Inline"}},{"name":"InnerBand","path":"Specs/InnerBand","sha":"03ead751d4aef0d77af98413e05d5cfac0126f92","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/InnerBand?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/InnerBand","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/03ead751d4aef0d77af98413e05d5cfac0126f92","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/InnerBand?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/03ead751d4aef0d77af98413e05d5cfac0126f92","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/InnerBand"}},{"name":"InputToolbar","path":"Specs/InputToolbar","sha":"54353487fd3e1cb01ee5b57de810ebc3fff7f2a2","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/InputToolbar?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/InputToolbar","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/54353487fd3e1cb01ee5b57de810ebc3fff7f2a2","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/InputToolbar?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/54353487fd3e1cb01ee5b57de810ebc3fff7f2a2","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/InputToolbar"}},{"name":"InterAppCommunication","path":"Specs/InterAppCommunication","sha":"120990b81287bb5cbc7dca3e84d2f26e4de0ead7","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/InterAppCommunication?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/InterAppCommunication","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/120990b81287bb5cbc7dca3e84d2f26e4de0ead7","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/InterAppCommunication?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/120990b81287bb5cbc7dca3e84d2f26e4de0ead7","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/InterAppCommunication"}},{"name":"JAGPropertyConverter","path":"Specs/JAGPropertyConverter","sha":"a5295cbab73c2f8fd5dd5c9341d1bd397d444305","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JAGPropertyConverter?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JAGPropertyConverter","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a5295cbab73c2f8fd5dd5c9341d1bd397d444305","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JAGPropertyConverter?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a5295cbab73c2f8fd5dd5c9341d1bd397d444305","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JAGPropertyConverter"}},{"name":"JAListView","path":"Specs/JAListView","sha":"735a0618f121deba80a5320c59cb18a4d1efd82a","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JAListView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JAListView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/735a0618f121deba80a5320c59cb18a4d1efd82a","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JAListView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/735a0618f121deba80a5320c59cb18a4d1efd82a","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JAListView"}},{"name":"JASidePanels","path":"Specs/JASidePanels","sha":"9c12802e94cb27125f51e84ddfb10417f524f20f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JASidePanels?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JASidePanels","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9c12802e94cb27125f51e84ddfb10417f524f20f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JASidePanels?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9c12802e94cb27125f51e84ddfb10417f524f20f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JASidePanels"}},{"name":"JAViewController","path":"Specs/JAViewController","sha":"edea888ed44763cadef47c4a49b727ebeddff802","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JAViewController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JAViewController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/edea888ed44763cadef47c4a49b727ebeddff802","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JAViewController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/edea888ed44763cadef47c4a49b727ebeddff802","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JAViewController"}},{"name":"JBDeviceOwner","path":"Specs/JBDeviceOwner","sha":"7f8b65737cb3eb553ae3e45a0b150292bcb2eab5","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JBDeviceOwner?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JBDeviceOwner","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7f8b65737cb3eb553ae3e45a0b150292bcb2eab5","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JBDeviceOwner?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7f8b65737cb3eb553ae3e45a0b150292bcb2eab5","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JBDeviceOwner"}},{"name":"JBKenBurnsView","path":"Specs/JBKenBurnsView","sha":"7a826a480b6541684f8cf5f245c4095d10e31471","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JBKenBurnsView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JBKenBurnsView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7a826a480b6541684f8cf5f245c4095d10e31471","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JBKenBurnsView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7a826a480b6541684f8cf5f245c4095d10e31471","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JBKenBurnsView"}},{"name":"JBTabBarController","path":"Specs/JBTabBarController","sha":"18da12a65c4c02c4602e2baa9a853656408c6b0a","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JBTabBarController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JBTabBarController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/18da12a65c4c02c4602e2baa9a853656408c6b0a","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JBTabBarController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/18da12a65c4c02c4602e2baa9a853656408c6b0a","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JBTabBarController"}},{"name":"JCAutocompletingSearch","path":"Specs/JCAutocompletingSearch","sha":"2207e3a5b4deec1f4baf862f2e2846fe88a165e6","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JCAutocompletingSearch?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JCAutocompletingSearch","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2207e3a5b4deec1f4baf862f2e2846fe88a165e6","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JCAutocompletingSearch?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2207e3a5b4deec1f4baf862f2e2846fe88a165e6","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JCAutocompletingSearch"}},{"name":"JCDHTTPConnection","path":"Specs/JCDHTTPConnection","sha":"6ab6756d018e2a4c74bcd95b95a4b8583bf84372","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JCDHTTPConnection?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JCDHTTPConnection","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6ab6756d018e2a4c74bcd95b95a4b8583bf84372","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JCDHTTPConnection?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6ab6756d018e2a4c74bcd95b95a4b8583bf84372","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JCDHTTPConnection"}},{"name":"JCDefaultFormInputAccessoryView","path":"Specs/JCDefaultFormInputAccessoryView","sha":"3c6dfbd3f38ef94a5b3f981702b31e66761605fa","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JCDefaultFormInputAccessoryView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JCDefaultFormInputAccessoryView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3c6dfbd3f38ef94a5b3f981702b31e66761605fa","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JCDefaultFormInputAccessoryView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3c6dfbd3f38ef94a5b3f981702b31e66761605fa","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JCDefaultFormInputAccessoryView"}},{"name":"JCGridMenu","path":"Specs/JCGridMenu","sha":"c8d9fd7c689457c4f6232df7b6a9bf4d8f908694","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JCGridMenu?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JCGridMenu","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c8d9fd7c689457c4f6232df7b6a9bf4d8f908694","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JCGridMenu?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c8d9fd7c689457c4f6232df7b6a9bf4d8f908694","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JCGridMenu"}},{"name":"JCNotificationBannerPresenter","path":"Specs/JCNotificationBannerPresenter","sha":"d5259857a8a84488e5223222ffe0a8d6133138d6","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JCNotificationBannerPresenter?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JCNotificationBannerPresenter","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d5259857a8a84488e5223222ffe0a8d6133138d6","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JCNotificationBannerPresenter?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d5259857a8a84488e5223222ffe0a8d6133138d6","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JCNotificationBannerPresenter"}},{"name":"JCPriorityQueue","path":"Specs/JCPriorityQueue","sha":"b7cbdf2323bbce084db0c62ea990ac37debceaca","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JCPriorityQueue?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JCPriorityQueue","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b7cbdf2323bbce084db0c62ea990ac37debceaca","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JCPriorityQueue?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b7cbdf2323bbce084db0c62ea990ac37debceaca","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JCPriorityQueue"}},{"name":"JCSegueUserInfo","path":"Specs/JCSegueUserInfo","sha":"531dd924c71c22c0d8a3e704fd0e3766fdc9e33c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JCSegueUserInfo?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JCSegueUserInfo","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/531dd924c71c22c0d8a3e704fd0e3766fdc9e33c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JCSegueUserInfo?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/531dd924c71c22c0d8a3e704fd0e3766fdc9e33c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JCSegueUserInfo"}},{"name":"JDDroppableView","path":"Specs/JDDroppableView","sha":"1f61ad3ef1fd538324287b40a0718e03ff739bd9","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JDDroppableView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JDDroppableView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1f61ad3ef1fd538324287b40a0718e03ff739bd9","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JDDroppableView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1f61ad3ef1fd538324287b40a0718e03ff739bd9","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JDDroppableView"}},{"name":"JDFlipNumberView","path":"Specs/JDFlipNumberView","sha":"9d918ea53a24b927d35b11cac6b970dac2ec8381","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JDFlipNumberView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JDFlipNumberView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9d918ea53a24b927d35b11cac6b970dac2ec8381","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JDFlipNumberView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9d918ea53a24b927d35b11cac6b970dac2ec8381","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JDFlipNumberView"}},{"name":"JGAFImageCache","path":"Specs/JGAFImageCache","sha":"0e1fadd108cedc12e2473e31d52441eb362b6f83","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JGAFImageCache?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JGAFImageCache","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0e1fadd108cedc12e2473e31d52441eb362b6f83","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JGAFImageCache?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0e1fadd108cedc12e2473e31d52441eb362b6f83","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JGAFImageCache"}},{"name":"JIRAConnect","path":"Specs/JIRAConnect","sha":"7c5c42cbfef5e2c268afe017f3e5da3d5cb5176e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JIRAConnect?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JIRAConnect","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7c5c42cbfef5e2c268afe017f3e5da3d5cb5176e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JIRAConnect?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7c5c42cbfef5e2c268afe017f3e5da3d5cb5176e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JIRAConnect"}},{"name":"JJCachedAsyncViewDrawing","path":"Specs/JJCachedAsyncViewDrawing","sha":"c002e265bd0425564a8b33d33332267159f285f4","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JJCachedAsyncViewDrawing?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JJCachedAsyncViewDrawing","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c002e265bd0425564a8b33d33332267159f285f4","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JJCachedAsyncViewDrawing?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c002e265bd0425564a8b33d33332267159f285f4","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JJCachedAsyncViewDrawing"}},{"name":"JJGraphicsUtilities","path":"Specs/JJGraphicsUtilities","sha":"753d17c2f8008e458fc72d585fe5777e6f8700d6","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JJGraphicsUtilities?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JJGraphicsUtilities","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/753d17c2f8008e458fc72d585fe5777e6f8700d6","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JJGraphicsUtilities?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/753d17c2f8008e458fc72d585fe5777e6f8700d6","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JJGraphicsUtilities"}},{"name":"JKSegueActionViewController","path":"Specs/JKSegueActionViewController","sha":"c04b4e591b5cd90d95ff036b4e0dd0337bbf28f7","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JKSegueActionViewController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JKSegueActionViewController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c04b4e591b5cd90d95ff036b4e0dd0337bbf28f7","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JKSegueActionViewController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c04b4e591b5cd90d95ff036b4e0dd0337bbf28f7","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JKSegueActionViewController"}},{"name":"JLRoutes","path":"Specs/JLRoutes","sha":"fa48d4ab75ba7152708d2dde42555dceebe97dbc","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JLRoutes?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JLRoutes","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fa48d4ab75ba7152708d2dde42555dceebe97dbc","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JLRoutes?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fa48d4ab75ba7152708d2dde42555dceebe97dbc","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JLRoutes"}},{"name":"JMFrame","path":"Specs/JMFrame","sha":"02b959f885b4776fd6933c708ff2c31726687462","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JMFrame?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JMFrame","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/02b959f885b4776fd6933c708ff2c31726687462","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JMFrame?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/02b959f885b4776fd6933c708ff2c31726687462","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JMFrame"}},{"name":"JMImageCache","path":"Specs/JMImageCache","sha":"b29ce715edf900cbb5ec9d79f8688e15461be96e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JMImageCache?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JMImageCache","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b29ce715edf900cbb5ec9d79f8688e15461be96e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JMImageCache?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b29ce715edf900cbb5ec9d79f8688e15461be96e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JMImageCache"}},{"name":"JMImageCacheForkAntoine","path":"Specs/JMImageCacheForkAntoine","sha":"2fc3012fbfb6b7af7b73eed8f65a4f367765055c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JMImageCacheForkAntoine?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JMImageCacheForkAntoine","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2fc3012fbfb6b7af7b73eed8f65a4f367765055c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JMImageCacheForkAntoine?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2fc3012fbfb6b7af7b73eed8f65a4f367765055c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JMImageCacheForkAntoine"}},{"name":"JMPickerView","path":"Specs/JMPickerView","sha":"0b3a123fd2037f0dacb45a0f80d43d917755ed3d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JMPickerView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JMPickerView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0b3a123fd2037f0dacb45a0f80d43d917755ed3d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JMPickerView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0b3a123fd2037f0dacb45a0f80d43d917755ed3d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JMPickerView"}},{"name":"JMStatefulTableViewController","path":"Specs/JMStatefulTableViewController","sha":"a5a6521f1009d1a9887079ffee53c3f08cf9dd03","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JMStatefulTableViewController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JMStatefulTableViewController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a5a6521f1009d1a9887079ffee53c3f08cf9dd03","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JMStatefulTableViewController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a5a6521f1009d1a9887079ffee53c3f08cf9dd03","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JMStatefulTableViewController"}},{"name":"JMStaticContentTableViewController","path":"Specs/JMStaticContentTableViewController","sha":"d74b5860d5b67a090b41c52839ee04f83a0509ae","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JMStaticContentTableViewController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JMStaticContentTableViewController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d74b5860d5b67a090b41c52839ee04f83a0509ae","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JMStaticContentTableViewController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d74b5860d5b67a090b41c52839ee04f83a0509ae","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JMStaticContentTableViewController"}},{"name":"JMTabView","path":"Specs/JMTabView","sha":"4c2a494992be552e461574c6b04472cd768e0684","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JMTabView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JMTabView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4c2a494992be552e461574c6b04472cd768e0684","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JMTabView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4c2a494992be552e461574c6b04472cd768e0684","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JMTabView"}},{"name":"JNWAnimatableWindow","path":"Specs/JNWAnimatableWindow","sha":"60ea7a1a2ced5c3a59cca52f9ebf7f163107ec10","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JNWAnimatableWindow?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JNWAnimatableWindow","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/60ea7a1a2ced5c3a59cca52f9ebf7f163107ec10","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JNWAnimatableWindow?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/60ea7a1a2ced5c3a59cca52f9ebf7f163107ec10","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JNWAnimatableWindow"}},{"name":"JPGeodesy","path":"Specs/JPGeodesy","sha":"64653a5e7aecd8aa5babbc1ac3e39d84daf08e6b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JPGeodesy?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JPGeodesy","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/64653a5e7aecd8aa5babbc1ac3e39d84daf08e6b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JPGeodesy?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/64653a5e7aecd8aa5babbc1ac3e39d84daf08e6b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JPGeodesy"}},{"name":"JPImagePickerController","path":"Specs/JPImagePickerController","sha":"38ea4da5234f589039c173b39e233c7a379857a5","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JPImagePickerController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JPImagePickerController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/38ea4da5234f589039c173b39e233c7a379857a5","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JPImagePickerController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/38ea4da5234f589039c173b39e233c7a379857a5","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JPImagePickerController"}},{"name":"JPSThumbnailAnnotation","path":"Specs/JPSThumbnailAnnotation","sha":"3920a9a44536e799847bcc026ff968ba7f83c526","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JPSThumbnailAnnotation?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JPSThumbnailAnnotation","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3920a9a44536e799847bcc026ff968ba7f83c526","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JPSThumbnailAnnotation?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3920a9a44536e799847bcc026ff968ba7f83c526","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JPSThumbnailAnnotation"}},{"name":"JPush","path":"Specs/JPush","sha":"c72ba37063fb97d30e40e415a95b5600c0b37660","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JPush?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JPush","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c72ba37063fb97d30e40e415a95b5600c0b37660","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JPush?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c72ba37063fb97d30e40e415a95b5600c0b37660","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JPush"}},{"name":"JREnum","path":"Specs/JREnum","sha":"c4ef9b14778353b311749815898e18f1f83633cc","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JREnum?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JREnum","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c4ef9b14778353b311749815898e18f1f83633cc","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JREnum?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c4ef9b14778353b311749815898e18f1f83633cc","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JREnum"}},{"name":"JRSwizzle","path":"Specs/JRSwizzle","sha":"5307d468a47a41e5e28b4a84f845642a522f11a1","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JRSwizzle?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JRSwizzle","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5307d468a47a41e5e28b4a84f845642a522f11a1","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JRSwizzle?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5307d468a47a41e5e28b4a84f845642a522f11a1","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JRSwizzle"}},{"name":"JSGCDDispatcher","path":"Specs/JSGCDDispatcher","sha":"8f3bb04d50ffe9bcb9702889504c177341efd829","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JSGCDDispatcher?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JSGCDDispatcher","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8f3bb04d50ffe9bcb9702889504c177341efd829","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JSGCDDispatcher?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8f3bb04d50ffe9bcb9702889504c177341efd829","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JSGCDDispatcher"}},{"name":"JSMessagesViewController","path":"Specs/JSMessagesViewController","sha":"de80e5db3dd624231e2717928eababe52a311485","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JSMessagesViewController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JSMessagesViewController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/de80e5db3dd624231e2717928eababe52a311485","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JSMessagesViewController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/de80e5db3dd624231e2717928eababe52a311485","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JSMessagesViewController"}},{"name":"JSNotifier","path":"Specs/JSNotifier","sha":"2b058f51effe447572cad8b406526125fa1e3388","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JSNotifier?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JSNotifier","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2b058f51effe447572cad8b406526125fa1e3388","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JSNotifier?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2b058f51effe447572cad8b406526125fa1e3388","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JSNotifier"}},{"name":"JSONKit","path":"Specs/JSONKit","sha":"5561f2409b63e6f0aa5777a41aa4370b48dd93d7","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JSONKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JSONKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5561f2409b63e6f0aa5777a41aa4370b48dd93d7","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JSONKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5561f2409b63e6f0aa5777a41aa4370b48dd93d7","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JSONKit"}},{"name":"JSONModel","path":"Specs/JSONModel","sha":"176f70b7db6f0f85185fa870e614d398c83d9a15","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JSONModel?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JSONModel","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/176f70b7db6f0f85185fa870e614d398c83d9a15","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JSONModel?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/176f70b7db6f0f85185fa870e614d398c83d9a15","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JSONModel"}},{"name":"JSProgressHUD","path":"Specs/JSProgressHUD","sha":"84b1f28eab4ccca38119a9ada2e8f456ed971b6c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JSProgressHUD?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JSProgressHUD","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/84b1f28eab4ccca38119a9ada2e8f456ed971b6c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JSProgressHUD?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/84b1f28eab4ccca38119a9ada2e8f456ed971b6c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JSProgressHUD"}},{"name":"JTCategories","path":"Specs/JTCategories","sha":"f4d9e12dda389546968c21b84426b915e2586444","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JTCategories?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JTCategories","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f4d9e12dda389546968c21b84426b915e2586444","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JTCategories?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f4d9e12dda389546968c21b84426b915e2586444","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JTCategories"}},{"name":"JTObjectMapping","path":"Specs/JTObjectMapping","sha":"9e08c29d15143d1162a1b0cf1acca68660f66782","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JTObjectMapping?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JTObjectMapping","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9e08c29d15143d1162a1b0cf1acca68660f66782","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JTObjectMapping?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9e08c29d15143d1162a1b0cf1acca68660f66782","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JTObjectMapping"}},{"name":"JTRevealSidebarDemo","path":"Specs/JTRevealSidebarDemo","sha":"0c7c95323e67f08339aa81a61531b4d9fd5ee669","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JTRevealSidebarDemo?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JTRevealSidebarDemo","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0c7c95323e67f08339aa81a61531b4d9fd5ee669","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JTRevealSidebarDemo?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0c7c95323e67f08339aa81a61531b4d9fd5ee669","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JTRevealSidebarDemo"}},{"name":"JTTargetActionBlock","path":"Specs/JTTargetActionBlock","sha":"3e3bac5135af97e208d1197e5a778111e1691f4d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JTTargetActionBlock?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JTTargetActionBlock","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3e3bac5135af97e208d1197e5a778111e1691f4d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JTTargetActionBlock?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3e3bac5135af97e208d1197e5a778111e1691f4d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JTTargetActionBlock"}},{"name":"JWFolders","path":"Specs/JWFolders","sha":"244bb5f7c134d9804bbf839b4bce50c3506a5587","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JWFolders?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JWFolders","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/244bb5f7c134d9804bbf839b4bce50c3506a5587","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JWFolders?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/244bb5f7c134d9804bbf839b4bce50c3506a5587","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JWFolders"}},{"name":"JWSplitView","path":"Specs/JWSplitView","sha":"474a5240ec424e9f6ef718cca3c1430a4b156971","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JWSplitView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JWSplitView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/474a5240ec424e9f6ef718cca3c1430a4b156971","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JWSplitView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/474a5240ec424e9f6ef718cca3c1430a4b156971","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JWSplitView"}},{"name":"JXHTTP","path":"Specs/JXHTTP","sha":"64f5ef37cd868391010e44e67068034d45573c94","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JXHTTP?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JXHTTP","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/64f5ef37cd868391010e44e67068034d45573c94","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/JXHTTP?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/64f5ef37cd868391010e44e67068034d45573c94","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/JXHTTP"}},{"name":"KFAppleScriptHandlerAdditions","path":"Specs/KFAppleScriptHandlerAdditions","sha":"41106ce098b6d01c13e830ffb64cf77c09288892","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KFAppleScriptHandlerAdditions?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KFAppleScriptHandlerAdditions","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/41106ce098b6d01c13e830ffb64cf77c09288892","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KFAppleScriptHandlerAdditions?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/41106ce098b6d01c13e830ffb64cf77c09288892","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KFAppleScriptHandlerAdditions"}},{"name":"KFData","path":"Specs/KFData","sha":"8e6e45ed930b76d5935081caaceb44116e5b9019","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KFData?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KFData","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8e6e45ed930b76d5935081caaceb44116e5b9019","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KFData?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8e6e45ed930b76d5935081caaceb44116e5b9019","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KFData"}},{"name":"KGDiscreetAlertView","path":"Specs/KGDiscreetAlertView","sha":"d36ea23775a8be041895c12d0807fe8c2fd3937d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KGDiscreetAlertView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KGDiscreetAlertView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d36ea23775a8be041895c12d0807fe8c2fd3937d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KGDiscreetAlertView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d36ea23775a8be041895c12d0807fe8c2fd3937d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KGDiscreetAlertView"}},{"name":"KGNoise","path":"Specs/KGNoise","sha":"c84384a6758792119dcdd50aafe19dbd31ef8e59","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KGNoise?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KGNoise","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c84384a6758792119dcdd50aafe19dbd31ef8e59","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KGNoise?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c84384a6758792119dcdd50aafe19dbd31ef8e59","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KGNoise"}},{"name":"KGNoise@tonyzonghui","path":"Specs/KGNoise@tonyzonghui","sha":"f3f1b65a338caa1bb3437768a8b5bb8af404bf3e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KGNoise@tonyzonghui?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KGNoise@tonyzonghui","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f3f1b65a338caa1bb3437768a8b5bb8af404bf3e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KGNoise@tonyzonghui?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f3f1b65a338caa1bb3437768a8b5bb8af404bf3e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KGNoise@tonyzonghui"}},{"name":"KGStatusBar","path":"Specs/KGStatusBar","sha":"8d379bf3c8eec331963fa8d952f23e0668a73d12","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KGStatusBar?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KGStatusBar","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8d379bf3c8eec331963fa8d952f23e0668a73d12","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KGStatusBar?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8d379bf3c8eec331963fa8d952f23e0668a73d12","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KGStatusBar"}},{"name":"KHGravatar","path":"Specs/KHGravatar","sha":"14f8dc21bacd4d7a264bce343610975bf139a6c1","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KHGravatar?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KHGravatar","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/14f8dc21bacd4d7a264bce343610975bf139a6c1","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KHGravatar?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/14f8dc21bacd4d7a264bce343610975bf139a6c1","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KHGravatar"}},{"name":"KIF","path":"Specs/KIF","sha":"ba1054e32399b5c393252d6e8eaf2dedf3f64a40","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KIF?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KIF","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ba1054e32399b5c393252d6e8eaf2dedf3f64a40","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KIF?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ba1054e32399b5c393252d6e8eaf2dedf3f64a40","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KIF"}},{"name":"KIImagePager","path":"Specs/KIImagePager","sha":"bb39c1ec82c5c8d742bfef4a441e9d95e7cfaff5","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KIImagePager?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KIImagePager","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/bb39c1ec82c5c8d742bfef4a441e9d95e7cfaff5","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KIImagePager?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/bb39c1ec82c5c8d742bfef4a441e9d95e7cfaff5","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KIImagePager"}},{"name":"KIPullToReveal","path":"Specs/KIPullToReveal","sha":"96bc1575bfc4a18b6d9841b18934f5b72c88a88d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KIPullToReveal?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KIPullToReveal","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/96bc1575bfc4a18b6d9841b18934f5b72c88a88d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KIPullToReveal?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/96bc1575bfc4a18b6d9841b18934f5b72c88a88d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KIPullToReveal"}},{"name":"KISSmetrics","path":"Specs/KISSmetrics","sha":"50348167566c22203e48bc2a83ffbc2d9ab24f54","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KISSmetrics?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KISSmetrics","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/50348167566c22203e48bc2a83ffbc2d9ab24f54","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KISSmetrics?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/50348167566c22203e48bc2a83ffbc2d9ab24f54","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KISSmetrics"}},{"name":"KJGridLayout","path":"Specs/KJGridLayout","sha":"25dc6549deb55922da8cf38a3a8e5f986c6ae524","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KJGridLayout?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KJGridLayout","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/25dc6549deb55922da8cf38a3a8e5f986c6ae524","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KJGridLayout?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/25dc6549deb55922da8cf38a3a8e5f986c6ae524","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KJGridLayout"}},{"name":"KJSimpleBinding","path":"Specs/KJSimpleBinding","sha":"5f5a592e1d7fbb178164932f02d9783b848a7b5c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KJSimpleBinding?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KJSimpleBinding","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5f5a592e1d7fbb178164932f02d9783b848a7b5c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KJSimpleBinding?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5f5a592e1d7fbb178164932f02d9783b848a7b5c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KJSimpleBinding"}},{"name":"KKGridView","path":"Specs/KKGridView","sha":"da3b1e1f3f1e96114373f5826d939bab00155880","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KKGridView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KKGridView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/da3b1e1f3f1e96114373f5826d939bab00155880","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KKGridView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/da3b1e1f3f1e96114373f5826d939bab00155880","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KKGridView"}},{"name":"KKPasscodeLock","path":"Specs/KKPasscodeLock","sha":"b129c9353ce1091794a1208c00225904ff780514","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KKPasscodeLock?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KKPasscodeLock","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b129c9353ce1091794a1208c00225904ff780514","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KKPasscodeLock?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b129c9353ce1091794a1208c00225904ff780514","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KKPasscodeLock"}},{"name":"KLExpandingSelect","path":"Specs/KLExpandingSelect","sha":"dd542eb62722786e818ede5bc6f7b16c877f7bb6","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KLExpandingSelect?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KLExpandingSelect","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/dd542eb62722786e818ede5bc6f7b16c877f7bb6","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KLExpandingSelect?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/dd542eb62722786e818ede5bc6f7b16c877f7bb6","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KLExpandingSelect"}},{"name":"KLHorizontalSelect","path":"Specs/KLHorizontalSelect","sha":"c0b97387756bf7600f47525a2f160fad21de6e12","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KLHorizontalSelect?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KLHorizontalSelect","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c0b97387756bf7600f47525a2f160fad21de6e12","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KLHorizontalSelect?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c0b97387756bf7600f47525a2f160fad21de6e12","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KLHorizontalSelect"}},{"name":"KLNoteViewController","path":"Specs/KLNoteViewController","sha":"912aa0ab0cfdf4d00b11f863bce2723374bc3a4c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KLNoteViewController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KLNoteViewController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/912aa0ab0cfdf4d00b11f863bce2723374bc3a4c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KLNoteViewController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/912aa0ab0cfdf4d00b11f863bce2723374bc3a4c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KLNoteViewController"}},{"name":"KLSDateLabel","path":"Specs/KLSDateLabel","sha":"7900c0034b4112c2920e08bf8598b4966542f0f0","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KLSDateLabel?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KLSDateLabel","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7900c0034b4112c2920e08bf8598b4966542f0f0","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KLSDateLabel?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7900c0034b4112c2920e08bf8598b4966542f0f0","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KLSDateLabel"}},{"name":"KNMultiItemSelector","path":"Specs/KNMultiItemSelector","sha":"060716421faf557007724736c01914c786d7980c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KNMultiItemSelector?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KNMultiItemSelector","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/060716421faf557007724736c01914c786d7980c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KNMultiItemSelector?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/060716421faf557007724736c01914c786d7980c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KNMultiItemSelector"}},{"name":"KNSemiModalViewController","path":"Specs/KNSemiModalViewController","sha":"2e6cdfb42a47ed577d040267f2e766be4eddf00d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KNSemiModalViewController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KNSemiModalViewController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2e6cdfb42a47ed577d040267f2e766be4eddf00d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KNSemiModalViewController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2e6cdfb42a47ed577d040267f2e766be4eddf00d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KNSemiModalViewController"}},{"name":"KOKeyboard","path":"Specs/KOKeyboard","sha":"dd753f558c71f5591bcfe34fbf101681b12d9500","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KOKeyboard?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KOKeyboard","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/dd753f558c71f5591bcfe34fbf101681b12d9500","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KOKeyboard?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/dd753f558c71f5591bcfe34fbf101681b12d9500","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KOKeyboard"}},{"name":"KOTabs","path":"Specs/KOTabs","sha":"21b2e7714aa6a975c5b0443523e6f5b44b1403a6","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KOTabs?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KOTabs","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/21b2e7714aa6a975c5b0443523e6f5b44b1403a6","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KOTabs?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/21b2e7714aa6a975c5b0443523e6f5b44b1403a6","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KOTabs"}},{"name":"KOTree","path":"Specs/KOTree","sha":"bb05283c64c7089d2cb16987eada7172ad830174","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KOTree?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KOTree","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/bb05283c64c7089d2cb16987eada7172ad830174","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KOTree?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/bb05283c64c7089d2cb16987eada7172ad830174","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KOTree"}},{"name":"KSADNTwitterFormatter","path":"Specs/KSADNTwitterFormatter","sha":"85123f81720e5230d373bb22931eb3797905edaf","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KSADNTwitterFormatter?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KSADNTwitterFormatter","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/85123f81720e5230d373bb22931eb3797905edaf","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KSADNTwitterFormatter?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/85123f81720e5230d373bb22931eb3797905edaf","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KSADNTwitterFormatter"}},{"name":"KSCrypto","path":"Specs/KSCrypto","sha":"5a53c3880fe1cf52a6a7515afdea87c06b1cfdce","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KSCrypto?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KSCrypto","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5a53c3880fe1cf52a6a7515afdea87c06b1cfdce","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KSCrypto?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5a53c3880fe1cf52a6a7515afdea87c06b1cfdce","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KSCrypto"}},{"name":"KSCustomUIPopover","path":"Specs/KSCustomUIPopover","sha":"8fbd56650e7432b6c8d1c81f8223ee005adc5316","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KSCustomUIPopover?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KSCustomUIPopover","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8fbd56650e7432b6c8d1c81f8223ee005adc5316","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KSCustomUIPopover?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8fbd56650e7432b6c8d1c81f8223ee005adc5316","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KSCustomUIPopover"}},{"name":"KSDeferred","path":"Specs/KSDeferred","sha":"7aa22fa20b350c3f69a3201f5ad3313f7645e4e8","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KSDeferred?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KSDeferred","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7aa22fa20b350c3f69a3201f5ad3313f7645e4e8","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KSDeferred?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7aa22fa20b350c3f69a3201f5ad3313f7645e4e8","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KSDeferred"}},{"name":"KSGithubStatusAPI","path":"Specs/KSGithubStatusAPI","sha":"7fd523aa7bd73e7c151b530574daec8cd423ca27","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KSGithubStatusAPI?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KSGithubStatusAPI","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7fd523aa7bd73e7c151b530574daec8cd423ca27","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KSGithubStatusAPI?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7fd523aa7bd73e7c151b530574daec8cd423ca27","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KSGithubStatusAPI"}},{"name":"KSInstapaperAPI","path":"Specs/KSInstapaperAPI","sha":"42ea7137623de048bf638c6294c99b41ddb3c7ff","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KSInstapaperAPI?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KSInstapaperAPI","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/42ea7137623de048bf638c6294c99b41ddb3c7ff","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KSInstapaperAPI?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/42ea7137623de048bf638c6294c99b41ddb3c7ff","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KSInstapaperAPI"}},{"name":"KSLabel","path":"Specs/KSLabel","sha":"aab018ea7e521d982af52c93246e8901d83f6a03","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KSLabel?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KSLabel","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/aab018ea7e521d982af52c93246e8901d83f6a03","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KSLabel?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/aab018ea7e521d982af52c93246e8901d83f6a03","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KSLabel"}},{"name":"KSReachability","path":"Specs/KSReachability","sha":"643b2044b87fedc69a9c8f514c058c1fffd442a0","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KSReachability?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KSReachability","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/643b2044b87fedc69a9c8f514c058c1fffd442a0","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KSReachability?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/643b2044b87fedc69a9c8f514c058c1fffd442a0","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KSReachability"}},{"name":"KTOneFingerRotationGestureRecognizer","path":"Specs/KTOneFingerRotationGestureRecognizer","sha":"4c6f40a8d95c7e23c51eac5f9f0802fc12b78111","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KTOneFingerRotationGestureRecognizer?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KTOneFingerRotationGestureRecognizer","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4c6f40a8d95c7e23c51eac5f9f0802fc12b78111","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KTOneFingerRotationGestureRecognizer?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4c6f40a8d95c7e23c51eac5f9f0802fc12b78111","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KTOneFingerRotationGestureRecognizer"}},{"name":"KVMapper","path":"Specs/KVMapper","sha":"70612c548d88a64f57488f4c11365e0c759e60aa","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KVMapper?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KVMapper","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/70612c548d88a64f57488f4c11365e0c759e60aa","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KVMapper?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/70612c548d88a64f57488f4c11365e0c759e60aa","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KVMapper"}},{"name":"KVOBlocks","path":"Specs/KVOBlocks","sha":"0b6263e4598899319b878935bf049203d723a7c5","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KVOBlocks?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KVOBlocks","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0b6263e4598899319b878935bf049203d723a7c5","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KVOBlocks?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0b6263e4598899319b878935bf049203d723a7c5","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KVOBlocks"}},{"name":"KVPasscode","path":"Specs/KVPasscode","sha":"9005f5a80c9812d06d27b3c975d777d7ac56e350","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KVPasscode?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KVPasscode","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9005f5a80c9812d06d27b3c975d777d7ac56e350","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KVPasscode?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9005f5a80c9812d06d27b3c975d777d7ac56e350","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KVPasscode"}},{"name":"KWFontPicker","path":"Specs/KWFontPicker","sha":"84da1eeb11959f8f72c7010f476ce0c6c700958a","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KWFontPicker?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KWFontPicker","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/84da1eeb11959f8f72c7010f476ce0c6c700958a","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KWFontPicker?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/84da1eeb11959f8f72c7010f476ce0c6c700958a","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KWFontPicker"}},{"name":"KYArcTab","path":"Specs/KYArcTab","sha":"8f9fd5abdae8db9de5bbf4326e517bd481fe4505","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KYArcTab?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KYArcTab","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8f9fd5abdae8db9de5bbf4326e517bd481fe4505","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KYArcTab?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8f9fd5abdae8db9de5bbf4326e517bd481fe4505","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KYArcTab"}},{"name":"KYCircleMenu","path":"Specs/KYCircleMenu","sha":"003ef8ae88a72ee3bc8d684d8f5e950e18f65093","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KYCircleMenu?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KYCircleMenu","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/003ef8ae88a72ee3bc8d684d8f5e950e18f65093","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KYCircleMenu?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/003ef8ae88a72ee3bc8d684d8f5e950e18f65093","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KYCircleMenu"}},{"name":"Kal","path":"Specs/Kal","sha":"2423bfd01fd69c3188723139fc74a241306c82d0","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Kal?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Kal","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2423bfd01fd69c3188723139fc74a241306c82d0","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Kal?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2423bfd01fd69c3188723139fc74a241306c82d0","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Kal"}},{"name":"KeenClient","path":"Specs/KeenClient","sha":"e07d071049a3b8c09d49f1c4da40169867dab37e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KeenClient?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KeenClient","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e07d071049a3b8c09d49f1c4da40169867dab37e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KeenClient?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e07d071049a3b8c09d49f1c4da40169867dab37e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KeenClient"}},{"name":"KeepLayout","path":"Specs/KeepLayout","sha":"42a5cd4af6b0bf7dcf2c0d33f743c05d04ddd2b9","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KeepLayout?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KeepLayout","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/42a5cd4af6b0bf7dcf2c0d33f743c05d04ddd2b9","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KeepLayout?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/42a5cd4af6b0bf7dcf2c0d33f743c05d04ddd2b9","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KeepLayout"}},{"name":"KeychainItemWrapper","path":"Specs/KeychainItemWrapper","sha":"7178a1f5299fe6bf92f7becb576b43ff60325a9f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KeychainItemWrapper?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KeychainItemWrapper","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7178a1f5299fe6bf92f7becb576b43ff60325a9f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KeychainItemWrapper?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7178a1f5299fe6bf92f7becb576b43ff60325a9f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KeychainItemWrapper"}},{"name":"KissNSUserDefaults","path":"Specs/KissNSUserDefaults","sha":"6b25458e44d25ed68df49eb10613a88678072ae4","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KissNSUserDefaults?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KissNSUserDefaults","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6b25458e44d25ed68df49eb10613a88678072ae4","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KissNSUserDefaults?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6b25458e44d25ed68df49eb10613a88678072ae4","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KissNSUserDefaults"}},{"name":"KissXML","path":"Specs/KissXML","sha":"8a8780e0b991dda8f475d3097415d171bff6bb2c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KissXML?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KissXML","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8a8780e0b991dda8f475d3097415d171bff6bb2c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KissXML?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8a8780e0b991dda8f475d3097415d171bff6bb2c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KissXML"}},{"name":"Kiwi","path":"Specs/Kiwi","sha":"b3281728a178f4b47d8e9dc00a44d8fe127ed9ab","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Kiwi?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Kiwi","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b3281728a178f4b47d8e9dc00a44d8fe127ed9ab","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Kiwi?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b3281728a178f4b47d8e9dc00a44d8fe127ed9ab","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Kiwi"}},{"name":"KoaPullToRefresh","path":"Specs/KoaPullToRefresh","sha":"2f721b6b61b3c0d5b9e0c80abb1c61a9127fb984","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KoaPullToRefresh?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KoaPullToRefresh","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2f721b6b61b3c0d5b9e0c80abb1c61a9127fb984","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/KoaPullToRefresh?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2f721b6b61b3c0d5b9e0c80abb1c61a9127fb984","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/KoaPullToRefresh"}},{"name":"LARSAdController","path":"Specs/LARSAdController","sha":"f8b8e495f122cf1df82f075697017e6130feb176","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LARSAdController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LARSAdController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f8b8e495f122cf1df82f075697017e6130feb176","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LARSAdController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f8b8e495f122cf1df82f075697017e6130feb176","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LARSAdController"}},{"name":"LARSTorch","path":"Specs/LARSTorch","sha":"18c0151d13325922331580c1591baefdef0aa647","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LARSTorch?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LARSTorch","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/18c0151d13325922331580c1591baefdef0aa647","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LARSTorch?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/18c0151d13325922331580c1591baefdef0aa647","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LARSTorch"}},{"name":"LAWalkthrough","path":"Specs/LAWalkthrough","sha":"a4a6a441e9846a4532b95b340b7a623a7a863549","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LAWalkthrough?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LAWalkthrough","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a4a6a441e9846a4532b95b340b7a623a7a863549","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LAWalkthrough?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a4a6a441e9846a4532b95b340b7a623a7a863549","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LAWalkthrough"}},{"name":"LBBlurredImage","path":"Specs/LBBlurredImage","sha":"5e35dcf7f53ad7d23f19d578abb0ca30fc473baf","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LBBlurredImage?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LBBlurredImage","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5e35dcf7f53ad7d23f19d578abb0ca30fc473baf","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LBBlurredImage?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5e35dcf7f53ad7d23f19d578abb0ca30fc473baf","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LBBlurredImage"}},{"name":"LBGIFImage","path":"Specs/LBGIFImage","sha":"4474a582bffee684145e0207ee4856d8622da615","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LBGIFImage?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LBGIFImage","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4474a582bffee684145e0207ee4856d8622da615","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LBGIFImage?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4474a582bffee684145e0207ee4856d8622da615","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LBGIFImage"}},{"name":"LDGradientButton","path":"Specs/LDGradientButton","sha":"c92e1f7522d998b699e744d62e96f845efbadabc","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LDGradientButton?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LDGradientButton","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c92e1f7522d998b699e744d62e96f845efbadabc","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LDGradientButton?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c92e1f7522d998b699e744d62e96f845efbadabc","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LDGradientButton"}},{"name":"LEColorPicker","path":"Specs/LEColorPicker","sha":"af8f78583f6c3f0a27a3b248a67625bea0f7b96e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LEColorPicker?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LEColorPicker","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/af8f78583f6c3f0a27a3b248a67625bea0f7b96e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LEColorPicker?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/af8f78583f6c3f0a27a3b248a67625bea0f7b96e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LEColorPicker"}},{"name":"LKbadgeView","path":"Specs/LKbadgeView","sha":"256691e3615248b4f43386e0b58adc4bc06a504a","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LKbadgeView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LKbadgeView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/256691e3615248b4f43386e0b58adc4bc06a504a","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LKbadgeView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/256691e3615248b4f43386e0b58adc4bc06a504a","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LKbadgeView"}},{"name":"LLRoundSwitch","path":"Specs/LLRoundSwitch","sha":"a7b5b349b7622fb6e7b31578e0ba5a74acc07174","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LLRoundSwitch?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LLRoundSwitch","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a7b5b349b7622fb6e7b31578e0ba5a74acc07174","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LLRoundSwitch?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a7b5b349b7622fb6e7b31578e0ba5a74acc07174","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LLRoundSwitch"}},{"name":"LLTableViewAdapter","path":"Specs/LLTableViewAdapter","sha":"9ddefcea23a73dabdc963980160fa5fee4a0bb66","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LLTableViewAdapter?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LLTableViewAdapter","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9ddefcea23a73dabdc963980160fa5fee4a0bb66","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LLTableViewAdapter?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9ddefcea23a73dabdc963980160fa5fee4a0bb66","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LLTableViewAdapter"}},{"name":"LOG_EXPR","path":"Specs/LOG_EXPR","sha":"9f14da1587c1af3d44d2270ffa2acebf545f5721","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LOG_EXPR?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LOG_EXPR","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9f14da1587c1af3d44d2270ffa2acebf545f5721","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LOG_EXPR?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9f14da1587c1af3d44d2270ffa2acebf545f5721","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LOG_EXPR"}},{"name":"LRImageManager","path":"Specs/LRImageManager","sha":"6dde21cb129c150ec35effc62611b1c3cea2f153","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LRImageManager?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LRImageManager","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6dde21cb129c150ec35effc62611b1c3cea2f153","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LRImageManager?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6dde21cb129c150ec35effc62611b1c3cea2f153","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LRImageManager"}},{"name":"LRMocky","path":"Specs/LRMocky","sha":"f6c2912662e8cfaba998f5b62640b09b8dbd9da6","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LRMocky?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LRMocky","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f6c2912662e8cfaba998f5b62640b09b8dbd9da6","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LRMocky?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f6c2912662e8cfaba998f5b62640b09b8dbd9da6","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LRMocky"}},{"name":"LROAuth2Client","path":"Specs/LROAuth2Client","sha":"5efba1758437a0ccb47315a199eceeade051e50d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LROAuth2Client?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LROAuth2Client","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5efba1758437a0ccb47315a199eceeade051e50d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LROAuth2Client?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5efba1758437a0ccb47315a199eceeade051e50d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LROAuth2Client"}},{"name":"LRResty","path":"Specs/LRResty","sha":"79dc5e524f24b01a2ac1fbff7f5158db2982c9e5","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LRResty?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LRResty","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/79dc5e524f24b01a2ac1fbff7f5158db2982c9e5","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LRResty?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/79dc5e524f24b01a2ac1fbff7f5158db2982c9e5","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LRResty"}},{"name":"LRTVDBAPIClient","path":"Specs/LRTVDBAPIClient","sha":"2d0e08e508bb9824ab69712cbbfebde2e262d8db","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LRTVDBAPIClient?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LRTVDBAPIClient","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2d0e08e508bb9824ab69712cbbfebde2e262d8db","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LRTVDBAPIClient?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2d0e08e508bb9824ab69712cbbfebde2e262d8db","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LRTVDBAPIClient"}},{"name":"LRTableModel","path":"Specs/LRTableModel","sha":"ecc82501fc23932fca4bdb388d0c0522fd8c67af","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LRTableModel?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LRTableModel","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ecc82501fc23932fca4bdb388d0c0522fd8c67af","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LRTableModel?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ecc82501fc23932fca4bdb388d0c0522fd8c67af","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LRTableModel"}},{"name":"LTUpdate","path":"Specs/LTUpdate","sha":"810648389a0f13f634394a390769153f003407b3","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LTUpdate?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LTUpdate","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/810648389a0f13f634394a390769153f003407b3","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LTUpdate?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/810648389a0f13f634394a390769153f003407b3","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LTUpdate"}},{"name":"LUKeychainAccess","path":"Specs/LUKeychainAccess","sha":"d2310310d419de9f6e884992169ebbbbf56ada97","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LUKeychainAccess?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LUKeychainAccess","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d2310310d419de9f6e884992169ebbbbf56ada97","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LUKeychainAccess?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d2310310d419de9f6e884992169ebbbbf56ada97","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LUKeychainAccess"}},{"name":"LXPagingViews","path":"Specs/LXPagingViews","sha":"b33a561eb588ce2cdb53247b4247f2c823499206","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LXPagingViews?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LXPagingViews","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b33a561eb588ce2cdb53247b4247f2c823499206","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LXPagingViews?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b33a561eb588ce2cdb53247b4247f2c823499206","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LXPagingViews"}},{"name":"LXReorderableCollectionViewFlowLayout","path":"Specs/LXReorderableCollectionViewFlowLayout","sha":"28d84a819b852b158b82491c8bd0a0bb2cec1621","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LXReorderableCollectionViewFlowLayout?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LXReorderableCollectionViewFlowLayout","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/28d84a819b852b158b82491c8bd0a0bb2cec1621","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LXReorderableCollectionViewFlowLayout?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/28d84a819b852b158b82491c8bd0a0bb2cec1621","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LXReorderableCollectionViewFlowLayout"}},{"name":"Lambda-Alert","path":"Specs/Lambda-Alert","sha":"232ed1003b6096103e6b6802908a859313483411","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Lambda-Alert?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Lambda-Alert","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/232ed1003b6096103e6b6802908a859313483411","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Lambda-Alert?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/232ed1003b6096103e6b6802908a859313483411","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Lambda-Alert"}},{"name":"Lasagna-Cookies","path":"Specs/Lasagna-Cookies","sha":"af9441ca06d38dccb3583d60d265176e04b8e79b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Lasagna-Cookies?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Lasagna-Cookies","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/af9441ca06d38dccb3583d60d265176e04b8e79b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Lasagna-Cookies?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/af9441ca06d38dccb3583d60d265176e04b8e79b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Lasagna-Cookies"}},{"name":"LastFm","path":"Specs/LastFm","sha":"daac56bc1642fe3830892db55d091190aa3722dc","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LastFm?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LastFm","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/daac56bc1642fe3830892db55d091190aa3722dc","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LastFm?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/daac56bc1642fe3830892db55d091190aa3722dc","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LastFm"}},{"name":"LetterpressExplosion","path":"Specs/LetterpressExplosion","sha":"4b5452c58155f9f7da3a72eb359e31b61d2c90a2","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LetterpressExplosion?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LetterpressExplosion","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4b5452c58155f9f7da3a72eb359e31b61d2c90a2","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LetterpressExplosion?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4b5452c58155f9f7da3a72eb359e31b61d2c90a2","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LetterpressExplosion"}},{"name":"LevelDB-ObjC","path":"Specs/LevelDB-ObjC","sha":"4c1cd0ddf4838eda640c1572e3dfedd47a3fa76f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LevelDB-ObjC?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LevelDB-ObjC","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4c1cd0ddf4838eda640c1572e3dfedd47a3fa76f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LevelDB-ObjC?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4c1cd0ddf4838eda640c1572e3dfedd47a3fa76f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LevelDB-ObjC"}},{"name":"LibComponentLogging-Core","path":"Specs/LibComponentLogging-Core","sha":"b83713bc414fb9f07d845702f9e6f8c8cb9888c8","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LibComponentLogging-Core?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LibComponentLogging-Core","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b83713bc414fb9f07d845702f9e6f8c8cb9888c8","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LibComponentLogging-Core?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b83713bc414fb9f07d845702f9e6f8c8cb9888c8","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LibComponentLogging-Core"}},{"name":"LibComponentLogging-Crashlytics","path":"Specs/LibComponentLogging-Crashlytics","sha":"5ae448bb47dd303ba52f0a3e9bfc064bbde7415a","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LibComponentLogging-Crashlytics?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LibComponentLogging-Crashlytics","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5ae448bb47dd303ba52f0a3e9bfc064bbde7415a","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LibComponentLogging-Crashlytics?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5ae448bb47dd303ba52f0a3e9bfc064bbde7415a","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LibComponentLogging-Crashlytics"}},{"name":"LibComponentLogging-LogFile","path":"Specs/LibComponentLogging-LogFile","sha":"c9204d001ce9d39d62e72a3138754396e252792a","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LibComponentLogging-LogFile?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LibComponentLogging-LogFile","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c9204d001ce9d39d62e72a3138754396e252792a","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LibComponentLogging-LogFile?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c9204d001ce9d39d62e72a3138754396e252792a","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LibComponentLogging-LogFile"}},{"name":"LibComponentLogging-NSLog","path":"Specs/LibComponentLogging-NSLog","sha":"36477265bca8bee3c85fbe5d7029c0ec48963776","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LibComponentLogging-NSLog?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LibComponentLogging-NSLog","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/36477265bca8bee3c85fbe5d7029c0ec48963776","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LibComponentLogging-NSLog?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/36477265bca8bee3c85fbe5d7029c0ec48963776","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LibComponentLogging-NSLog"}},{"name":"LibComponentLogging-NSLogger","path":"Specs/LibComponentLogging-NSLogger","sha":"d65be5f6c34390c5b0d87ed41621724dfc348de9","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LibComponentLogging-NSLogger?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LibComponentLogging-NSLogger","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d65be5f6c34390c5b0d87ed41621724dfc348de9","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LibComponentLogging-NSLogger?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d65be5f6c34390c5b0d87ed41621724dfc348de9","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LibComponentLogging-NSLogger"}},{"name":"LibComponentLogging-SystemLog","path":"Specs/LibComponentLogging-SystemLog","sha":"8b8d2ad2a474464cada37e1db4c8e70f7c133cac","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LibComponentLogging-SystemLog?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LibComponentLogging-SystemLog","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8b8d2ad2a474464cada37e1db4c8e70f7c133cac","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LibComponentLogging-SystemLog?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8b8d2ad2a474464cada37e1db4c8e70f7c133cac","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LibComponentLogging-SystemLog"}},{"name":"LibComponentLogging-UserDefaults","path":"Specs/LibComponentLogging-UserDefaults","sha":"5f08d6bf2a20a5707fdf30d938f47089ee978497","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LibComponentLogging-UserDefaults?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LibComponentLogging-UserDefaults","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5f08d6bf2a20a5707fdf30d938f47089ee978497","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LibComponentLogging-UserDefaults?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5f08d6bf2a20a5707fdf30d938f47089ee978497","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LibComponentLogging-UserDefaults"}},{"name":"LibComponentLogging-pods","path":"Specs/LibComponentLogging-pods","sha":"316c2af08586f0ded6559e3817f495665eb4b5c8","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LibComponentLogging-pods?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LibComponentLogging-pods","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/316c2af08586f0ded6559e3817f495665eb4b5c8","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LibComponentLogging-pods?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/316c2af08586f0ded6559e3817f495665eb4b5c8","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LibComponentLogging-pods"}},{"name":"LibComponentLogging-qlog","path":"Specs/LibComponentLogging-qlog","sha":"a6770bf4f97d22be8a3842e60030d89d2c714109","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LibComponentLogging-qlog?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LibComponentLogging-qlog","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a6770bf4f97d22be8a3842e60030d89d2c714109","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LibComponentLogging-qlog?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a6770bf4f97d22be8a3842e60030d89d2c714109","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LibComponentLogging-qlog"}},{"name":"LibYAML","path":"Specs/LibYAML","sha":"d16f600aacbe9a2e986e5c9df37df0736ac915f1","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LibYAML?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LibYAML","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d16f600aacbe9a2e986e5c9df37df0736ac915f1","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LibYAML?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d16f600aacbe9a2e986e5c9df37df0736ac915f1","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LibYAML"}},{"name":"LineKit","path":"Specs/LineKit","sha":"afce0301772815a300ea5ce75d8c31bfd02cbd73","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LineKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LineKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/afce0301772815a300ea5ce75d8c31bfd02cbd73","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LineKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/afce0301772815a300ea5ce75d8c31bfd02cbd73","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LineKit"}},{"name":"Localytics-iOS-Client","path":"Specs/Localytics-iOS-Client","sha":"277dd7b694336e0a6b27a86db4f36fd55baca029","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Localytics-iOS-Client?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Localytics-iOS-Client","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/277dd7b694336e0a6b27a86db4f36fd55baca029","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Localytics-iOS-Client?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/277dd7b694336e0a6b27a86db4f36fd55baca029","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Localytics-iOS-Client"}},{"name":"Localytics","path":"Specs/Localytics","sha":"8cfb11edbce8c9d63042855cbf8527b6e755d29e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Localytics?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Localytics","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8cfb11edbce8c9d63042855cbf8527b6e755d29e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Localytics?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8cfb11edbce8c9d63042855cbf8527b6e755d29e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Localytics"}},{"name":"LocationPickerView","path":"Specs/LocationPickerView","sha":"923e44b47bbc70dbc4eb093a14341e178e5956d2","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LocationPickerView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LocationPickerView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/923e44b47bbc70dbc4eb093a14341e178e5956d2","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/LocationPickerView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/923e44b47bbc70dbc4eb093a14341e178e5956d2","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/LocationPickerView"}},{"name":"Lockbox","path":"Specs/Lockbox","sha":"0c8848d020619850733e8da1f806a88e72ff97c6","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Lockbox?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Lockbox","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0c8848d020619850733e8da1f806a88e72ff97c6","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Lockbox?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0c8848d020619850733e8da1f806a88e72ff97c6","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Lockbox"}},{"name":"MABToolkit","path":"Specs/MABToolkit","sha":"9c588acce91e4745f35fb703a9b47d446b844668","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MABToolkit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MABToolkit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9c588acce91e4745f35fb703a9b47d446b844668","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MABToolkit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9c588acce91e4745f35fb703a9b47d446b844668","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MABToolkit"}},{"name":"MABlockClosure","path":"Specs/MABlockClosure","sha":"433a371eb4f9ef336f6c0046d31d1155baf3e42d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MABlockClosure?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MABlockClosure","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/433a371eb4f9ef336f6c0046d31d1155baf3e42d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MABlockClosure?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/433a371eb4f9ef336f6c0046d31d1155baf3e42d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MABlockClosure"}},{"name":"MACachedImageView","path":"Specs/MACachedImageView","sha":"0e862b020bf433915e40b5b009970f96ed492199","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MACachedImageView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MACachedImageView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0e862b020bf433915e40b5b009970f96ed492199","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MACachedImageView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0e862b020bf433915e40b5b009970f96ed492199","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MACachedImageView"}},{"name":"MACalendarUI","path":"Specs/MACalendarUI","sha":"21307ff06f1414cd3c49cdde4b1b17d810c89ac8","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MACalendarUI?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MACalendarUI","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/21307ff06f1414cd3c49cdde4b1b17d810c89ac8","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MACalendarUI?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/21307ff06f1414cd3c49cdde4b1b17d810c89ac8","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MACalendarUI"}},{"name":"MACircleProgressIndicator","path":"Specs/MACircleProgressIndicator","sha":"c3ecf9fb71d06540f71d5c7f27f9307b29bf49d0","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MACircleProgressIndicator?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MACircleProgressIndicator","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c3ecf9fb71d06540f71d5c7f27f9307b29bf49d0","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MACircleProgressIndicator?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c3ecf9fb71d06540f71d5c7f27f9307b29bf49d0","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MACircleProgressIndicator"}},{"name":"MACollectionUtilities","path":"Specs/MACollectionUtilities","sha":"a0377982fa61d5c5157c2d573c97a0c9eadda139","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MACollectionUtilities?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MACollectionUtilities","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a0377982fa61d5c5157c2d573c97a0c9eadda139","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MACollectionUtilities?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a0377982fa61d5c5157c2d573c97a0c9eadda139","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MACollectionUtilities"}},{"name":"MAConfirmButton","path":"Specs/MAConfirmButton","sha":"dc3d9086fba534528183ef3d395f46ee6b827ed0","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MAConfirmButton?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MAConfirmButton","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/dc3d9086fba534528183ef3d395f46ee6b827ed0","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MAConfirmButton?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/dc3d9086fba534528183ef3d395f46ee6b827ed0","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MAConfirmButton"}},{"name":"MAKVONotificationCenter","path":"Specs/MAKVONotificationCenter","sha":"289d78fe0b30cab4b8277be4436f0d093a79e3c4","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MAKVONotificationCenter?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MAKVONotificationCenter","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/289d78fe0b30cab4b8277be4436f0d093a79e3c4","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MAKVONotificationCenter?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/289d78fe0b30cab4b8277be4436f0d093a79e3c4","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MAKVONotificationCenter"}},{"name":"MALazykit","path":"Specs/MALazykit","sha":"7f4706507ceff0563e51f728ead2255dc6ab8ace","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MALazykit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MALazykit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7f4706507ceff0563e51f728ead2255dc6ab8ace","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MALazykit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7f4706507ceff0563e51f728ead2255dc6ab8ace","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MALazykit"}},{"name":"MAMirroredQueue","path":"Specs/MAMirroredQueue","sha":"5ef3109ff8f1bfa1e6c5e571fca77e9402804823","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MAMirroredQueue?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MAMirroredQueue","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5ef3109ff8f1bfa1e6c5e571fca77e9402804823","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MAMirroredQueue?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5ef3109ff8f1bfa1e6c5e571fca77e9402804823","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MAMirroredQueue"}},{"name":"MAObjCRuntime","path":"Specs/MAObjCRuntime","sha":"6700cc5cfb541372d19576052ecd3aada54ccc31","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MAObjCRuntime?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MAObjCRuntime","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6700cc5cfb541372d19576052ecd3aada54ccc31","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MAObjCRuntime?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6700cc5cfb541372d19576052ecd3aada54ccc31","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MAObjCRuntime"}},{"name":"MASPreferences","path":"Specs/MASPreferences","sha":"5e4bbe5b1340c2313066e5a26fa118e26d031f7e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MASPreferences?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MASPreferences","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5e4bbe5b1340c2313066e5a26fa118e26d031f7e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MASPreferences?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5e4bbe5b1340c2313066e5a26fa118e26d031f7e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MASPreferences"}},{"name":"MASShortcut","path":"Specs/MASShortcut","sha":"5f3c86a714bcec8834436adabb0d0373f68c4f11","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MASShortcut?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MASShortcut","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5f3c86a714bcec8834436adabb0d0373f68c4f11","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MASShortcut?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5f3c86a714bcec8834436adabb0d0373f68c4f11","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MASShortcut"}},{"name":"MAZeroingWeakRef","path":"Specs/MAZeroingWeakRef","sha":"157afecf8debf3f4c0f5b1eef498fbd0bdb83037","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MAZeroingWeakRef?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MAZeroingWeakRef","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/157afecf8debf3f4c0f5b1eef498fbd0bdb83037","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MAZeroingWeakRef?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/157afecf8debf3f4c0f5b1eef498fbd0bdb83037","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MAZeroingWeakRef"}},{"name":"MBAlertView","path":"Specs/MBAlertView","sha":"c88abaa473589b317007a400e93793241954b02b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MBAlertView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MBAlertView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c88abaa473589b317007a400e93793241954b02b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MBAlertView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c88abaa473589b317007a400e93793241954b02b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MBAlertView"}},{"name":"MBCategory","path":"Specs/MBCategory","sha":"7dd520530666f381103094b0ea091976ed748faa","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MBCategory?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MBCategory","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7dd520530666f381103094b0ea091976ed748faa","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MBCategory?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7dd520530666f381103094b0ea091976ed748faa","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MBCategory"}},{"name":"MBCommon","path":"Specs/MBCommon","sha":"57d846ebab65d2e0807679dd89e527be2acfa3d7","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MBCommon?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MBCommon","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/57d846ebab65d2e0807679dd89e527be2acfa3d7","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MBCommon?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/57d846ebab65d2e0807679dd89e527be2acfa3d7","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MBCommon"}},{"name":"MBProgressHUD","path":"Specs/MBProgressHUD","sha":"757a63a8f141035bac56021cb239e84d889a94d1","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MBProgressHUD?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MBProgressHUD","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/757a63a8f141035bac56021cb239e84d889a94d1","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MBProgressHUD?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/757a63a8f141035bac56021cb239e84d889a94d1","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MBProgressHUD"}},{"name":"MBPullDownController","path":"Specs/MBPullDownController","sha":"8538cc0335cbcd1834aaa5478f5a467a7e81ff07","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MBPullDownController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MBPullDownController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8538cc0335cbcd1834aaa5478f5a467a7e81ff07","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MBPullDownController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8538cc0335cbcd1834aaa5478f5a467a7e81ff07","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MBPullDownController"}},{"name":"MBRequest","path":"Specs/MBRequest","sha":"725f30678c47a6197ff28d87f2b368708a4e19fb","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MBRequest?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MBRequest","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/725f30678c47a6197ff28d87f2b368708a4e19fb","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MBRequest?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/725f30678c47a6197ff28d87f2b368708a4e19fb","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MBRequest"}},{"name":"MCAWSS3Client","path":"Specs/MCAWSS3Client","sha":"d187ea48305b18b3782fd170d968ee3adfb81f4e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MCAWSS3Client?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MCAWSS3Client","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d187ea48305b18b3782fd170d968ee3adfb81f4e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MCAWSS3Client?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d187ea48305b18b3782fd170d968ee3adfb81f4e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MCAWSS3Client"}},{"name":"MCColoredPageControl","path":"Specs/MCColoredPageControl","sha":"04c1dba502d3156b6363f4d6912ea5facde9aa4f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MCColoredPageControl?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MCColoredPageControl","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/04c1dba502d3156b6363f4d6912ea5facde9aa4f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MCColoredPageControl?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/04c1dba502d3156b6363f4d6912ea5facde9aa4f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MCColoredPageControl"}},{"name":"MCDateExtensions","path":"Specs/MCDateExtensions","sha":"8c7d9544e48d4d573595c77efcca330eb76368c9","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MCDateExtensions?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MCDateExtensions","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8c7d9544e48d4d573595c77efcca330eb76368c9","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MCDateExtensions?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8c7d9544e48d4d573595c77efcca330eb76368c9","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MCDateExtensions"}},{"name":"MCDebuggingTools","path":"Specs/MCDebuggingTools","sha":"868ece71810a63ef3408d157705b30efb5ecc8d5","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MCDebuggingTools?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MCDebuggingTools","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/868ece71810a63ef3408d157705b30efb5ecc8d5","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MCDebuggingTools?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/868ece71810a63ef3408d157705b30efb5ecc8d5","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MCDebuggingTools"}},{"name":"MCHTTPRequestLogger","path":"Specs/MCHTTPRequestLogger","sha":"2f7674350f1ff686663ab54d6c981070d69de153","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MCHTTPRequestLogger?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MCHTTPRequestLogger","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2f7674350f1ff686663ab54d6c981070d69de153","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MCHTTPRequestLogger?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2f7674350f1ff686663ab54d6c981070d69de153","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MCHTTPRequestLogger"}},{"name":"MCSMKeychainItem","path":"Specs/MCSMKeychainItem","sha":"be40636c5e509c6c72d5c611b4b1d10da0a60d31","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MCSMKeychainItem?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MCSMKeychainItem","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/be40636c5e509c6c72d5c611b4b1d10da0a60d31","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MCSMKeychainItem?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/be40636c5e509c6c72d5c611b4b1d10da0a60d31","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MCSMKeychainItem"}},{"name":"MCSwipeTableViewCell","path":"Specs/MCSwipeTableViewCell","sha":"5f2955d16866b72de8e6584437bfd4ec4ca68a11","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MCSwipeTableViewCell?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MCSwipeTableViewCell","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5f2955d16866b72de8e6584437bfd4ec4ca68a11","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MCSwipeTableViewCell?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5f2955d16866b72de8e6584437bfd4ec4ca68a11","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MCSwipeTableViewCell"}},{"name":"MCUIColorUtils","path":"Specs/MCUIColorUtils","sha":"b5d2f1dfea00beb3a954a2184f281464b95f9ca6","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MCUIColorUtils?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MCUIColorUtils","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b5d2f1dfea00beb3a954a2184f281464b95f9ca6","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MCUIColorUtils?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b5d2f1dfea00beb3a954a2184f281464b95f9ca6","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MCUIColorUtils"}},{"name":"MCUIImageAdvanced","path":"Specs/MCUIImageAdvanced","sha":"5554b352f6be3a12ead95a268ba9714db42467b3","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MCUIImageAdvanced?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MCUIImageAdvanced","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5554b352f6be3a12ead95a268ba9714db42467b3","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MCUIImageAdvanced?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5554b352f6be3a12ead95a268ba9714db42467b3","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MCUIImageAdvanced"}},{"name":"MD5Digest","path":"Specs/MD5Digest","sha":"95ce2b6799041b77fe18d22045525eb753e726df","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MD5Digest?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MD5Digest","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/95ce2b6799041b77fe18d22045525eb753e726df","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MD5Digest?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/95ce2b6799041b77fe18d22045525eb753e726df","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MD5Digest"}},{"name":"MDAboutController","path":"Specs/MDAboutController","sha":"3840435011de582452652875a56cbe63686953ea","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MDAboutController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MDAboutController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3840435011de582452652875a56cbe63686953ea","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MDAboutController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3840435011de582452652875a56cbe63686953ea","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MDAboutController"}},{"name":"MDCFocusView","path":"Specs/MDCFocusView","sha":"a84b2b2f3d3cbbcfd6c80a059b74cfea98837490","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MDCFocusView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MDCFocusView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a84b2b2f3d3cbbcfd6c80a059b74cfea98837490","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MDCFocusView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a84b2b2f3d3cbbcfd6c80a059b74cfea98837490","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MDCFocusView"}},{"name":"MDCParallaxView","path":"Specs/MDCParallaxView","sha":"087eb87057bd8af983cef55655e4b2c53e430312","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MDCParallaxView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MDCParallaxView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/087eb87057bd8af983cef55655e4b2c53e430312","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MDCParallaxView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/087eb87057bd8af983cef55655e4b2c53e430312","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MDCParallaxView"}},{"name":"MDCScrollBarLabel","path":"Specs/MDCScrollBarLabel","sha":"de065982c87d0aec79b3e7bc582f2c95a80b6c50","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MDCScrollBarLabel?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MDCScrollBarLabel","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/de065982c87d0aec79b3e7bc582f2c95a80b6c50","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MDCScrollBarLabel?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/de065982c87d0aec79b3e7bc582f2c95a80b6c50","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MDCScrollBarLabel"}},{"name":"MDCShineEffect","path":"Specs/MDCShineEffect","sha":"155fce187cc05d217c694e494a790a4d6e2f5da9","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MDCShineEffect?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MDCShineEffect","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/155fce187cc05d217c694e494a790a4d6e2f5da9","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MDCShineEffect?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/155fce187cc05d217c694e494a790a4d6e2f5da9","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MDCShineEffect"}},{"name":"MDRadialProgress","path":"Specs/MDRadialProgress","sha":"c7f8018bbf7fffa394d1a5d528f143b856915aac","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MDRadialProgress?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MDRadialProgress","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c7f8018bbf7fffa394d1a5d528f143b856915aac","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MDRadialProgress?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c7f8018bbf7fffa394d1a5d528f143b856915aac","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MDRadialProgress"}},{"name":"MEActionSheet","path":"Specs/MEActionSheet","sha":"76902558e7565bb521a2c112b0e1899f0bb06da1","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MEActionSheet?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MEActionSheet","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/76902558e7565bb521a2c112b0e1899f0bb06da1","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MEActionSheet?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/76902558e7565bb521a2c112b0e1899f0bb06da1","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MEActionSheet"}},{"name":"MEAlertView","path":"Specs/MEAlertView","sha":"fa133492d087853b5bc912bb486b747fd4548715","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MEAlertView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MEAlertView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fa133492d087853b5bc912bb486b747fd4548715","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MEAlertView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fa133492d087853b5bc912bb486b747fd4548715","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MEAlertView"}},{"name":"MFCache","path":"Specs/MFCache","sha":"83bda7452e3a4dbf9c752e39331f7131d54b8887","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MFCache?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MFCache","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/83bda7452e3a4dbf9c752e39331f7131d54b8887","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MFCache?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/83bda7452e3a4dbf9c752e39331f7131d54b8887","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MFCache"}},{"name":"MFFadeBackModalAnimation","path":"Specs/MFFadeBackModalAnimation","sha":"854117bc859ff2ffc1698508fea9616b0d54c1fe","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MFFadeBackModalAnimation?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MFFadeBackModalAnimation","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/854117bc859ff2ffc1698508fea9616b0d54c1fe","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MFFadeBackModalAnimation?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/854117bc859ff2ffc1698508fea9616b0d54c1fe","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MFFadeBackModalAnimation"}},{"name":"MFLicensing","path":"Specs/MFLicensing","sha":"1496a880eed2bafcf84b63eea12ca5f1e351d01e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MFLicensing?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MFLicensing","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1496a880eed2bafcf84b63eea12ca5f1e351d01e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MFLicensing?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1496a880eed2bafcf84b63eea12ca5f1e351d01e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MFLicensing"}},{"name":"MFMathLib","path":"Specs/MFMathLib","sha":"4d9c470d561f28cf4c66a7805428b832a0e06cde","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MFMathLib?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MFMathLib","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4d9c470d561f28cf4c66a7805428b832a0e06cde","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MFMathLib?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4d9c470d561f28cf4c66a7805428b832a0e06cde","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MFMathLib"}},{"name":"MFSideMenu","path":"Specs/MFSideMenu","sha":"c25db521d5d46ff8aa67373435d557e5f0fb9c47","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MFSideMenu?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MFSideMenu","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c25db521d5d46ff8aa67373435d557e5f0fb9c47","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MFSideMenu?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c25db521d5d46ff8aa67373435d557e5f0fb9c47","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MFSideMenu"}},{"name":"MGBenchmark","path":"Specs/MGBenchmark","sha":"ac08865d37f7ca8137a19abf982aa1d83f031d09","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MGBenchmark?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MGBenchmark","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ac08865d37f7ca8137a19abf982aa1d83f031d09","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MGBenchmark?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ac08865d37f7ca8137a19abf982aa1d83f031d09","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MGBenchmark"}},{"name":"MGBox","path":"Specs/MGBox","sha":"297f1ec4358b1f4b8f43218f3ef2e6d1ec059e1a","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MGBox?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MGBox","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/297f1ec4358b1f4b8f43218f3ef2e6d1ec059e1a","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MGBox?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/297f1ec4358b1f4b8f43218f3ef2e6d1ec059e1a","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MGBox"}},{"name":"MGBox2","path":"Specs/MGBox2","sha":"e2627e5c430cc84bb54b83660cba8d23cb5bfc68","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MGBox2?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MGBox2","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e2627e5c430cc84bb54b83660cba8d23cb5bfc68","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MGBox2?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e2627e5c430cc84bb54b83660cba8d23cb5bfc68","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MGBox2"}},{"name":"MGCommand","path":"Specs/MGCommand","sha":"40cfd17e3ad1b76a9c08d80f5d2dbfc669c80c69","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MGCommand?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MGCommand","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/40cfd17e3ad1b76a9c08d80f5d2dbfc669c80c69","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MGCommand?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/40cfd17e3ad1b76a9c08d80f5d2dbfc669c80c69","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MGCommand"}},{"name":"MGCommandConfig","path":"Specs/MGCommandConfig","sha":"1144ec013f09f1b60f262d2e9d9f0c78411cfc1b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MGCommandConfig?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MGCommandConfig","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1144ec013f09f1b60f262d2e9d9f0c78411cfc1b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MGCommandConfig?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1144ec013f09f1b60f262d2e9d9f0c78411cfc1b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MGCommandConfig"}},{"name":"MGCraftman","path":"Specs/MGCraftman","sha":"75bdcb99828436b2ef06173db60173cc7ced8c58","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MGCraftman?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MGCraftman","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/75bdcb99828436b2ef06173db60173cc7ced8c58","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MGCraftman?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/75bdcb99828436b2ef06173db60173cc7ced8c58","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MGCraftman"}},{"name":"MGImageUtilities","path":"Specs/MGImageUtilities","sha":"a9353fc97d59d2f896777d8866841bc747fc51f7","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MGImageUtilities?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MGImageUtilities","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a9353fc97d59d2f896777d8866841bc747fc51f7","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MGImageUtilities?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a9353fc97d59d2f896777d8866841bc747fc51f7","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MGImageUtilities"}},{"name":"MGPinViewController","path":"Specs/MGPinViewController","sha":"e0abb67bc9248958f6e9c83c7c7452251350e9e7","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MGPinViewController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MGPinViewController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e0abb67bc9248958f6e9c83c7c7452251350e9e7","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MGPinViewController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e0abb67bc9248958f6e9c83c7c7452251350e9e7","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MGPinViewController"}},{"name":"MGSplitViewController","path":"Specs/MGSplitViewController","sha":"50e8f4f7459d18df422d088bd1118d538c39ecf7","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MGSplitViewController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MGSplitViewController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/50e8f4f7459d18df422d088bd1118d538c39ecf7","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MGSplitViewController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/50e8f4f7459d18df422d088bd1118d538c39ecf7","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MGSplitViewController"}},{"name":"MGTileMenu","path":"Specs/MGTileMenu","sha":"cb336ab54222fed1c4a590a6aa8e97737f20333e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MGTileMenu?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MGTileMenu","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/cb336ab54222fed1c4a590a6aa8e97737f20333e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MGTileMenu?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/cb336ab54222fed1c4a590a6aa8e97737f20333e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MGTileMenu"}},{"name":"MHCustomTabBarController","path":"Specs/MHCustomTabBarController","sha":"93a9fe3c4cf36560cee1c5d1ee1320eadf2245bd","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MHCustomTabBarController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MHCustomTabBarController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/93a9fe3c4cf36560cee1c5d1ee1320eadf2245bd","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MHCustomTabBarController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/93a9fe3c4cf36560cee1c5d1ee1320eadf2245bd","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MHCustomTabBarController"}},{"name":"MHKitchenSink","path":"Specs/MHKitchenSink","sha":"1c2e34ba67908780708851b497e2f890717e1356","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MHKitchenSink?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MHKitchenSink","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1c2e34ba67908780708851b497e2f890717e1356","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MHKitchenSink?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1c2e34ba67908780708851b497e2f890717e1356","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MHKitchenSink"}},{"name":"MHPrettyDate","path":"Specs/MHPrettyDate","sha":"79bd370c8785bd90432d9d308f0e109b8d909edf","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MHPrettyDate?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MHPrettyDate","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/79bd370c8785bd90432d9d308f0e109b8d909edf","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MHPrettyDate?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/79bd370c8785bd90432d9d308f0e109b8d909edf","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MHPrettyDate"}},{"name":"MHTabBarController","path":"Specs/MHTabBarController","sha":"733ae80548462efd540d0600584cc63ef7884e64","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MHTabBarController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MHTabBarController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/733ae80548462efd540d0600584cc63ef7884e64","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MHTabBarController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/733ae80548462efd540d0600584cc63ef7884e64","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MHTabBarController"}},{"name":"MIHGradientView","path":"Specs/MIHGradientView","sha":"c35242ac76dea9bc515f704a616bc92c38161781","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MIHGradientView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MIHGradientView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c35242ac76dea9bc515f704a616bc92c38161781","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MIHGradientView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c35242ac76dea9bc515f704a616bc92c38161781","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MIHGradientView"}},{"name":"MIHSliderView","path":"Specs/MIHSliderView","sha":"de9f2ca8b4ff00c16117360c7aa4d0eef2e68da9","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MIHSliderView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MIHSliderView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/de9f2ca8b4ff00c16117360c7aa4d0eef2e68da9","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MIHSliderView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/de9f2ca8b4ff00c16117360c7aa4d0eef2e68da9","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MIHSliderView"}},{"name":"MJGFoundation","path":"Specs/MJGFoundation","sha":"3d763e1e3fb42c854581dd55fa509346a1c5dd96","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MJGFoundation?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MJGFoundation","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3d763e1e3fb42c854581dd55fa509346a1c5dd96","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MJGFoundation?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3d763e1e3fb42c854581dd55fa509346a1c5dd96","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MJGFoundation"}},{"name":"MJPopupViewController","path":"Specs/MJPopupViewController","sha":"8e4833900649dbd118c4c9647167ef42213a0f21","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MJPopupViewController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MJPopupViewController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8e4833900649dbd118c4c9647167ef42213a0f21","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MJPopupViewController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8e4833900649dbd118c4c9647167ef42213a0f21","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MJPopupViewController"}},{"name":"MKFoundation","path":"Specs/MKFoundation","sha":"84871593d542984ca1a599d89077dbc30d821579","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MKFoundation?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MKFoundation","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/84871593d542984ca1a599d89077dbc30d821579","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MKFoundation?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/84871593d542984ca1a599d89077dbc30d821579","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MKFoundation"}},{"name":"MKHorizMenu","path":"Specs/MKHorizMenu","sha":"812dc05ea5808e2eb3c5e3c15d1ea616e2542df4","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MKHorizMenu?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MKHorizMenu","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/812dc05ea5808e2eb3c5e3c15d1ea616e2542df4","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MKHorizMenu?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/812dc05ea5808e2eb3c5e3c15d1ea616e2542df4","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MKHorizMenu"}},{"name":"MKInfoPanel","path":"Specs/MKInfoPanel","sha":"35c3bb8589102b6fc91d5a648120867f35ab7956","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MKInfoPanel?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MKInfoPanel","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/35c3bb8589102b6fc91d5a648120867f35ab7956","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MKInfoPanel?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/35c3bb8589102b6fc91d5a648120867f35ab7956","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MKInfoPanel"}},{"name":"MKMapView+AttributionView","path":"Specs/MKMapView+AttributionView","sha":"be677795647fc71294ee1af04056f3835ea394ff","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MKMapView+AttributionView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MKMapView+AttributionView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/be677795647fc71294ee1af04056f3835ea394ff","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MKMapView+AttributionView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/be677795647fc71294ee1af04056f3835ea394ff","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MKMapView+AttributionView"}},{"name":"MKMapViewZoom","path":"Specs/MKMapViewZoom","sha":"5a5422be7669e3099be1626dedc6745297e7b239","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MKMapViewZoom?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MKMapViewZoom","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5a5422be7669e3099be1626dedc6745297e7b239","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MKMapViewZoom?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5a5422be7669e3099be1626dedc6745297e7b239","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MKMapViewZoom"}},{"name":"MKNetworkKit","path":"Specs/MKNetworkKit","sha":"c154ba84ff7db97dcd783f7f3afb04cf6cf4bd1f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MKNetworkKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MKNetworkKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c154ba84ff7db97dcd783f7f3afb04cf6cf4bd1f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MKNetworkKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c154ba84ff7db97dcd783f7f3afb04cf6cf4bd1f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MKNetworkKit"}},{"name":"MKReachableOperationQueue","path":"Specs/MKReachableOperationQueue","sha":"acf077b83dde17dba40fb0c51ccd6d2000666660","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MKReachableOperationQueue?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MKReachableOperationQueue","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/acf077b83dde17dba40fb0c51ccd6d2000666660","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MKReachableOperationQueue?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/acf077b83dde17dba40fb0c51ccd6d2000666660","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MKReachableOperationQueue"}},{"name":"MKStoreKit","path":"Specs/MKStoreKit","sha":"9c9bf09183257165929fc2f164d07654bb3b5678","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MKStoreKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MKStoreKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9c9bf09183257165929fc2f164d07654bb3b5678","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MKStoreKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9c9bf09183257165929fc2f164d07654bb3b5678","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MKStoreKit"}},{"name":"MKiCloudSync","path":"Specs/MKiCloudSync","sha":"95a36158c4e979d66dc00e6e599967d04efd97f3","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MKiCloudSync?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MKiCloudSync","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/95a36158c4e979d66dc00e6e599967d04efd97f3","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MKiCloudSync?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/95a36158c4e979d66dc00e6e599967d04efd97f3","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MKiCloudSync"}},{"name":"MLPAutoCompleteTextField","path":"Specs/MLPAutoCompleteTextField","sha":"6a30b798b8865fd1e01107528aabfa8ace4e2be3","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MLPAutoCompleteTextField?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MLPAutoCompleteTextField","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6a30b798b8865fd1e01107528aabfa8ace4e2be3","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MLPAutoCompleteTextField?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6a30b798b8865fd1e01107528aabfa8ace4e2be3","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MLPAutoCompleteTextField"}},{"name":"MLPSpotlight","path":"Specs/MLPSpotlight","sha":"1e6c9214fab48b6f58d5d03a772004f9be3464ca","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MLPSpotlight?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MLPSpotlight","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1e6c9214fab48b6f58d5d03a772004f9be3464ca","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MLPSpotlight?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1e6c9214fab48b6f58d5d03a772004f9be3464ca","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MLPSpotlight"}},{"name":"MLScreenshot","path":"Specs/MLScreenshot","sha":"1a732e8e34008b3688a98913e5d6bdea936d851e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MLScreenshot?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MLScreenshot","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1a732e8e34008b3688a98913e5d6bdea936d851e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MLScreenshot?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1a732e8e34008b3688a98913e5d6bdea936d851e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MLScreenshot"}},{"name":"MLUIColorAdditions","path":"Specs/MLUIColorAdditions","sha":"433ce2cb22a627f9f997d9f996d59bcd7e028533","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MLUIColorAdditions?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MLUIColorAdditions","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/433ce2cb22a627f9f997d9f996d59bcd7e028533","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MLUIColorAdditions?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/433ce2cb22a627f9f997d9f996d59bcd7e028533","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MLUIColorAdditions"}},{"name":"MMCounterView","path":"Specs/MMCounterView","sha":"fed252be6517b235974e52d0cf94de533c1a0525","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MMCounterView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MMCounterView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fed252be6517b235974e52d0cf94de533c1a0525","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MMCounterView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fed252be6517b235974e52d0cf94de533c1a0525","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MMCounterView"}},{"name":"MMDrawerController","path":"Specs/MMDrawerController","sha":"be89f27246939c605617a3df305431a7b432521d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MMDrawerController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MMDrawerController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/be89f27246939c605617a3df305431a7b432521d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MMDrawerController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/be89f27246939c605617a3df305431a7b432521d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MMDrawerController"}},{"name":"MMMarkdown","path":"Specs/MMMarkdown","sha":"0cb4178ad84483253258cf44c75af8a9295c07e5","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MMMarkdown?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MMMarkdown","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0cb4178ad84483253258cf44c75af8a9295c07e5","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MMMarkdown?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0cb4178ad84483253258cf44c75af8a9295c07e5","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MMMarkdown"}},{"name":"MMRecord","path":"Specs/MMRecord","sha":"16c296848a3731512e858f924b5792f50920227d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MMRecord?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MMRecord","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/16c296848a3731512e858f924b5792f50920227d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MMRecord?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/16c296848a3731512e858f924b5792f50920227d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MMRecord"}},{"name":"MNColorKit","path":"Specs/MNColorKit","sha":"0c6e0fc620868027150b649276f95b32d5f01a49","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MNColorKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MNColorKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0c6e0fc620868027150b649276f95b32d5f01a49","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MNColorKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0c6e0fc620868027150b649276f95b32d5f01a49","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MNColorKit"}},{"name":"MNMBottomPullToRefresh","path":"Specs/MNMBottomPullToRefresh","sha":"55b7a1d0296b06a5917c5987e06d4df95c6966f8","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MNMBottomPullToRefresh?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MNMBottomPullToRefresh","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/55b7a1d0296b06a5917c5987e06d4df95c6966f8","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MNMBottomPullToRefresh?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/55b7a1d0296b06a5917c5987e06d4df95c6966f8","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MNMBottomPullToRefresh"}},{"name":"MNMPullToRefresh","path":"Specs/MNMPullToRefresh","sha":"404c97b5ed8fd2b592c64480fb5b09b46da6aaa8","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MNMPullToRefresh?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MNMPullToRefresh","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/404c97b5ed8fd2b592c64480fb5b09b46da6aaa8","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MNMPullToRefresh?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/404c97b5ed8fd2b592c64480fb5b09b46da6aaa8","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MNMPullToRefresh"}},{"name":"MNMRadioGroup","path":"Specs/MNMRadioGroup","sha":"39874a77c3b85fcf084c47850219e029567a42e8","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MNMRadioGroup?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MNMRadioGroup","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/39874a77c3b85fcf084c47850219e029567a42e8","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MNMRadioGroup?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/39874a77c3b85fcf084c47850219e029567a42e8","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MNMRadioGroup"}},{"name":"MNStaticTableViewController","path":"Specs/MNStaticTableViewController","sha":"d554223c555ad891cd9c9490097132739bad8d83","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MNStaticTableViewController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MNStaticTableViewController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d554223c555ad891cd9c9490097132739bad8d83","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MNStaticTableViewController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d554223c555ad891cd9c9490097132739bad8d83","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MNStaticTableViewController"}},{"name":"MOOMaskedIconView","path":"Specs/MOOMaskedIconView","sha":"d5418cfcc14cdf36d0bf69f0e28349edc5a775fb","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MOOMaskedIconView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MOOMaskedIconView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d5418cfcc14cdf36d0bf69f0e28349edc5a775fb","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MOOMaskedIconView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d5418cfcc14cdf36d0bf69f0e28349edc5a775fb","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MOOMaskedIconView"}},{"name":"MPColorTools","path":"Specs/MPColorTools","sha":"f3054eccd49f5b44e8744d5d28b044329cb5727d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MPColorTools?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MPColorTools","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f3054eccd49f5b44e8744d5d28b044329cb5727d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MPColorTools?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f3054eccd49f5b44e8744d5d28b044329cb5727d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MPColorTools"}},{"name":"MPFlipViewController","path":"Specs/MPFlipViewController","sha":"76e772e6d95584da00e867cd6856db4be0c9c611","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MPFlipViewController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MPFlipViewController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/76e772e6d95584da00e867cd6856db4be0c9c611","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MPFlipViewController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/76e772e6d95584da00e867cd6856db4be0c9c611","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MPFlipViewController"}},{"name":"MPFoldTransition","path":"Specs/MPFoldTransition","sha":"7969d0809072c763577e04519f242e13000ed549","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MPFoldTransition?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MPFoldTransition","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7969d0809072c763577e04519f242e13000ed549","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MPFoldTransition?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7969d0809072c763577e04519f242e13000ed549","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MPFoldTransition"}},{"name":"MPNotificationView","path":"Specs/MPNotificationView","sha":"cafec933d66fcc0d1507cac060365b97d6c92b03","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MPNotificationView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MPNotificationView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/cafec933d66fcc0d1507cac060365b97d6c92b03","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MPNotificationView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/cafec933d66fcc0d1507cac060365b97d6c92b03","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MPNotificationView"}},{"name":"MRCEnumerable","path":"Specs/MRCEnumerable","sha":"99438364cef184f47460cc7841d81eeacb85b3ec","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MRCEnumerable?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MRCEnumerable","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/99438364cef184f47460cc7841d81eeacb85b3ec","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MRCEnumerable?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/99438364cef184f47460cc7841d81eeacb85b3ec","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MRCEnumerable"}},{"name":"MRCurrencyRound","path":"Specs/MRCurrencyRound","sha":"ffb6f3f32c8795d188f2cccec025e27cb2f65876","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MRCurrencyRound?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MRCurrencyRound","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ffb6f3f32c8795d188f2cccec025e27cb2f65876","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MRCurrencyRound?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ffb6f3f32c8795d188f2cccec025e27cb2f65876","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MRCurrencyRound"}},{"name":"MRSubtleButton","path":"Specs/MRSubtleButton","sha":"5e90a81e88b245641169089fb94186759e181b97","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MRSubtleButton?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MRSubtleButton","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5e90a81e88b245641169089fb94186759e181b97","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MRSubtleButton?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5e90a81e88b245641169089fb94186759e181b97","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MRSubtleButton"}},{"name":"MSCachedAsyncViewDrawing","path":"Specs/MSCachedAsyncViewDrawing","sha":"d6b1792b1e9113e50bb08be17c34073822aaa7d6","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MSCachedAsyncViewDrawing?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MSCachedAsyncViewDrawing","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d6b1792b1e9113e50bb08be17c34073822aaa7d6","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MSCachedAsyncViewDrawing?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d6b1792b1e9113e50bb08be17c34073822aaa7d6","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MSCachedAsyncViewDrawing"}},{"name":"MSCollectionViewCalendarLayout","path":"Specs/MSCollectionViewCalendarLayout","sha":"db9b8e707862b8b135a470da3424a1f360d69385","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MSCollectionViewCalendarLayout?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MSCollectionViewCalendarLayout","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/db9b8e707862b8b135a470da3424a1f360d69385","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MSCollectionViewCalendarLayout?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/db9b8e707862b8b135a470da3424a1f360d69385","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MSCollectionViewCalendarLayout"}},{"name":"MSCurrencyFormatter","path":"Specs/MSCurrencyFormatter","sha":"eb0ebb79d3c5d7f617e87cf840ee24c31940c4ac","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MSCurrencyFormatter?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MSCurrencyFormatter","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/eb0ebb79d3c5d7f617e87cf840ee24c31940c4ac","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MSCurrencyFormatter?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/eb0ebb79d3c5d7f617e87cf840ee24c31940c4ac","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MSCurrencyFormatter"}},{"name":"MSLabel","path":"Specs/MSLabel","sha":"8ad24f57f8499b539d1c6580377283b120eb0343","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MSLabel?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MSLabel","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8ad24f57f8499b539d1c6580377283b120eb0343","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MSLabel?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8ad24f57f8499b539d1c6580377283b120eb0343","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MSLabel"}},{"name":"MSMatrixController","path":"Specs/MSMatrixController","sha":"43990c7f2789c9592a7044f420a728f4be3faff0","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MSMatrixController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MSMatrixController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/43990c7f2789c9592a7044f420a728f4be3faff0","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MSMatrixController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/43990c7f2789c9592a7044f420a728f4be3faff0","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MSMatrixController"}},{"name":"MSNavigationPaneViewController","path":"Specs/MSNavigationPaneViewController","sha":"65062c5a6755abf2e333d09c1d7c8e30799251de","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MSNavigationPaneViewController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MSNavigationPaneViewController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/65062c5a6755abf2e333d09c1d7c8e30799251de","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MSNavigationPaneViewController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/65062c5a6755abf2e333d09c1d7c8e30799251de","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MSNavigationPaneViewController"}},{"name":"MSNavigationSwipeController","path":"Specs/MSNavigationSwipeController","sha":"21532f81dd31c7278a736791459c60a6ba77be57","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MSNavigationSwipeController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MSNavigationSwipeController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/21532f81dd31c7278a736791459c60a6ba77be57","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MSNavigationSwipeController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/21532f81dd31c7278a736791459c60a6ba77be57","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MSNavigationSwipeController"}},{"name":"MSPullToRefreshController","path":"Specs/MSPullToRefreshController","sha":"b22ea0a850a033031e001e39db94ff2b8b01d620","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MSPullToRefreshController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MSPullToRefreshController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b22ea0a850a033031e001e39db94ff2b8b01d620","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MSPullToRefreshController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b22ea0a850a033031e001e39db94ff2b8b01d620","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MSPullToRefreshController"}},{"name":"MSVCLeakHunter","path":"Specs/MSVCLeakHunter","sha":"5704541de4f5c1b643dd6045c0e5e4ef34659479","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MSVCLeakHunter?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MSVCLeakHunter","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5704541de4f5c1b643dd6045c0e5e4ef34659479","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MSVCLeakHunter?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5704541de4f5c1b643dd6045c0e5e4ef34659479","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MSVCLeakHunter"}},{"name":"MTAnimatedLabel","path":"Specs/MTAnimatedLabel","sha":"9ab82dbae66a111d86d09bb82dc81e87a7cf037d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTAnimatedLabel?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTAnimatedLabel","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9ab82dbae66a111d86d09bb82dc81e87a7cf037d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTAnimatedLabel?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9ab82dbae66a111d86d09bb82dc81e87a7cf037d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTAnimatedLabel"}},{"name":"MTAnimation","path":"Specs/MTAnimation","sha":"6e6c499d7482ef40f7f8383fc74cdd9caf2396da","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTAnimation?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTAnimation","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6e6c499d7482ef40f7f8383fc74cdd9caf2396da","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTAnimation?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6e6c499d7482ef40f7f8383fc74cdd9caf2396da","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTAnimation"}},{"name":"MTBlockAlertView","path":"Specs/MTBlockAlertView","sha":"6eb9cf9d1ae6709e70ee927aa9061fcf8b5a7389","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTBlockAlertView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTBlockAlertView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6eb9cf9d1ae6709e70ee927aa9061fcf8b5a7389","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTBlockAlertView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6eb9cf9d1ae6709e70ee927aa9061fcf8b5a7389","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTBlockAlertView"}},{"name":"MTBlockTableView","path":"Specs/MTBlockTableView","sha":"d495d3579f9347364584890add4bcd1f7b8f5bb2","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTBlockTableView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTBlockTableView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d495d3579f9347364584890add4bcd1f7b8f5bb2","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTBlockTableView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d495d3579f9347364584890add4bcd1f7b8f5bb2","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTBlockTableView"}},{"name":"MTCollectionOperators","path":"Specs/MTCollectionOperators","sha":"f2bff7ce9ac33c902b0b7d327b7ae35b67916a82","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTCollectionOperators?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTCollectionOperators","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f2bff7ce9ac33c902b0b7d327b7ae35b67916a82","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTCollectionOperators?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f2bff7ce9ac33c902b0b7d327b7ae35b67916a82","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTCollectionOperators"}},{"name":"MTColorDistance","path":"Specs/MTColorDistance","sha":"b23f563148690abd44ef7a917fbfb6aa89d9e936","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTColorDistance?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTColorDistance","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b23f563148690abd44ef7a917fbfb6aa89d9e936","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTColorDistance?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b23f563148690abd44ef7a917fbfb6aa89d9e936","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTColorDistance"}},{"name":"MTControl","path":"Specs/MTControl","sha":"53318a8725470aabc0fb9edfb27209640d215df9","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTControl?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTControl","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/53318a8725470aabc0fb9edfb27209640d215df9","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTControl?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/53318a8725470aabc0fb9edfb27209640d215df9","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTControl"}},{"name":"MTDateComponentsPicker","path":"Specs/MTDateComponentsPicker","sha":"d2cc28a0141dc54ebd8fc07ef4d7d736d1e4721b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTDateComponentsPicker?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTDateComponentsPicker","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d2cc28a0141dc54ebd8fc07ef4d7d736d1e4721b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTDateComponentsPicker?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d2cc28a0141dc54ebd8fc07ef4d7d736d1e4721b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTDateComponentsPicker"}},{"name":"MTDates","path":"Specs/MTDates","sha":"cd3bd3967cca7e25ab1ae91f4c429e3a357d028e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTDates?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTDates","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/cd3bd3967cca7e25ab1ae91f4c429e3a357d028e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTDates?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/cd3bd3967cca7e25ab1ae91f4c429e3a357d028e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTDates"}},{"name":"MTFittedScrollView","path":"Specs/MTFittedScrollView","sha":"ae6d8511ca296e200981e2d882fab58921e25850","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTFittedScrollView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTFittedScrollView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ae6d8511ca296e200981e2d882fab58921e25850","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTFittedScrollView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ae6d8511ca296e200981e2d882fab58921e25850","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTFittedScrollView"}},{"name":"MTGeometry","path":"Specs/MTGeometry","sha":"febe533ed90c10ac05fd2a1d85f9fb6829225e61","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTGeometry?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTGeometry","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/febe533ed90c10ac05fd2a1d85f9fb6829225e61","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTGeometry?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/febe533ed90c10ac05fd2a1d85f9fb6829225e61","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTGeometry"}},{"name":"MTJSONDictionary","path":"Specs/MTJSONDictionary","sha":"50e9efc0e8c9f42e72fb9ae8e43e2c199f96dfa7","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTJSONDictionary?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTJSONDictionary","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/50e9efc0e8c9f42e72fb9ae8e43e2c199f96dfa7","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTJSONDictionary?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/50e9efc0e8c9f42e72fb9ae8e43e2c199f96dfa7","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTJSONDictionary"}},{"name":"MTJSONUtils","path":"Specs/MTJSONUtils","sha":"9eb485e21493ffde6410578b0b496911e57b47bc","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTJSONUtils?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTJSONUtils","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9eb485e21493ffde6410578b0b496911e57b47bc","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTJSONUtils?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9eb485e21493ffde6410578b0b496911e57b47bc","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTJSONUtils"}},{"name":"MTLabel","path":"Specs/MTLabel","sha":"a5e7496a5f44ec46eb8272cdebd6e8b5d15c5b4a","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTLabel?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTLabel","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a5e7496a5f44ec46eb8272cdebd6e8b5d15c5b4a","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTLabel?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a5e7496a5f44ec46eb8272cdebd6e8b5d15c5b4a","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTLabel"}},{"name":"MTLocation","path":"Specs/MTLocation","sha":"d7d5c17ffb9b210a93f99783ad630a5d04b87f65","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTLocation?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTLocation","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d7d5c17ffb9b210a93f99783ad630a5d04b87f65","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTLocation?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d7d5c17ffb9b210a93f99783ad630a5d04b87f65","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTLocation"}},{"name":"MTMigration","path":"Specs/MTMigration","sha":"c5e880c8fce6981d453ec80165e85af135d7a7ca","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTMigration?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTMigration","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c5e880c8fce6981d453ec80165e85af135d7a7ca","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTMigration?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c5e880c8fce6981d453ec80165e85af135d7a7ca","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTMigration"}},{"name":"MTMultipleViewController","path":"Specs/MTMultipleViewController","sha":"1851c2f6145c1070977e787af980533971415ccc","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTMultipleViewController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTMultipleViewController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1851c2f6145c1070977e787af980533971415ccc","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTMultipleViewController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1851c2f6145c1070977e787af980533971415ccc","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTMultipleViewController"}},{"name":"MTPDF","path":"Specs/MTPDF","sha":"dbd2a5bab582bb4004a55804a16b5fc310319435","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTPDF?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTPDF","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/dbd2a5bab582bb4004a55804a16b5fc310319435","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTPDF?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/dbd2a5bab582bb4004a55804a16b5fc310319435","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTPDF"}},{"name":"MTPencil","path":"Specs/MTPencil","sha":"fa2ed1a68f28744430490f9424eef6ba91998d7e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTPencil?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTPencil","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fa2ed1a68f28744430490f9424eef6ba91998d7e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTPencil?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fa2ed1a68f28744430490f9424eef6ba91998d7e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTPencil"}},{"name":"MTPocket","path":"Specs/MTPocket","sha":"34325e18537454358ada2a7ed78c9d839de8373d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTPocket?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTPocket","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/34325e18537454358ada2a7ed78c9d839de8373d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTPocket?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/34325e18537454358ada2a7ed78c9d839de8373d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTPocket"}},{"name":"MTQueue","path":"Specs/MTQueue","sha":"cc34e29e661ca81cd4cf48980227f459aaebec2d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTQueue?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTQueue","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/cc34e29e661ca81cd4cf48980227f459aaebec2d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTQueue?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/cc34e29e661ca81cd4cf48980227f459aaebec2d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTQueue"}},{"name":"MTRecursiveKVC","path":"Specs/MTRecursiveKVC","sha":"84e810b38070602fc3943107cfd70374a29dec75","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTRecursiveKVC?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTRecursiveKVC","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/84e810b38070602fc3943107cfd70374a29dec75","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTRecursiveKVC?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/84e810b38070602fc3943107cfd70374a29dec75","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTRecursiveKVC"}},{"name":"MTStackViewController","path":"Specs/MTStackViewController","sha":"eb023cce769d91218356253f713a1cffc2395f6c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTStackViewController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTStackViewController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/eb023cce769d91218356253f713a1cffc2395f6c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTStackViewController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/eb023cce769d91218356253f713a1cffc2395f6c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTStackViewController"}},{"name":"MTStackableNavigationController","path":"Specs/MTStackableNavigationController","sha":"753d4142a48201f0743d71363a594c4f2c6cde15","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTStackableNavigationController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTStackableNavigationController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/753d4142a48201f0743d71363a594c4f2c6cde15","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTStackableNavigationController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/753d4142a48201f0743d71363a594c4f2c6cde15","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTStackableNavigationController"}},{"name":"MTStatusBarOverlay","path":"Specs/MTStatusBarOverlay","sha":"fac6b7096ec7401537e39fa0973c0ad7dddab064","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTStatusBarOverlay?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTStatusBarOverlay","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fac6b7096ec7401537e39fa0973c0ad7dddab064","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTStatusBarOverlay?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fac6b7096ec7401537e39fa0973c0ad7dddab064","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTStatusBarOverlay"}},{"name":"MTStringAttributes","path":"Specs/MTStringAttributes","sha":"2efbbf34f377da3dcf79a2e35f58f78451ad040c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTStringAttributes?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTStringAttributes","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2efbbf34f377da3dcf79a2e35f58f78451ad040c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTStringAttributes?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2efbbf34f377da3dcf79a2e35f58f78451ad040c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTStringAttributes"}},{"name":"MTZTiltReflectionSlider","path":"Specs/MTZTiltReflectionSlider","sha":"468950a747dca03d22e71d690d8ac3207b3874c2","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTZTiltReflectionSlider?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTZTiltReflectionSlider","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/468950a747dca03d22e71d690d8ac3207b3874c2","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTZTiltReflectionSlider?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/468950a747dca03d22e71d690d8ac3207b3874c2","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTZTiltReflectionSlider"}},{"name":"MTZoomWindow","path":"Specs/MTZoomWindow","sha":"bd309a4162529ce32dab199089fe8dbe157ec449","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTZoomWindow?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTZoomWindow","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/bd309a4162529ce32dab199089fe8dbe157ec449","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MTZoomWindow?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/bd309a4162529ce32dab199089fe8dbe157ec449","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MTZoomWindow"}},{"name":"MWFSlideNavigationViewController","path":"Specs/MWFSlideNavigationViewController","sha":"66a39cacaf785fd39a07b15514eca6721f943588","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MWFSlideNavigationViewController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MWFSlideNavigationViewController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/66a39cacaf785fd39a07b15514eca6721f943588","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MWFSlideNavigationViewController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/66a39cacaf785fd39a07b15514eca6721f943588","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MWFSlideNavigationViewController"}},{"name":"MWFeedParser","path":"Specs/MWFeedParser","sha":"6ef024ca6fb5cd38387b61b5333797b48c62035d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MWFeedParser?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MWFeedParser","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6ef024ca6fb5cd38387b61b5333797b48c62035d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MWFeedParser?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6ef024ca6fb5cd38387b61b5333797b48c62035d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MWFeedParser"}},{"name":"MWPhotoBrowser","path":"Specs/MWPhotoBrowser","sha":"4f42cd6f73ef6044759e1ee4e4855da229f5b442","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MWPhotoBrowser?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MWPhotoBrowser","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4f42cd6f73ef6044759e1ee4e4855da229f5b442","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MWPhotoBrowser?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4f42cd6f73ef6044759e1ee4e4855da229f5b442","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MWPhotoBrowser"}},{"name":"MYUtilities","path":"Specs/MYUtilities","sha":"c01a22369959767125137939a5f6294d0e40b6b6","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MYUtilities?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MYUtilities","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c01a22369959767125137939a5f6294d0e40b6b6","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MYUtilities?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c01a22369959767125137939a5f6294d0e40b6b6","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MYUtilities"}},{"name":"MZDayPicker","path":"Specs/MZDayPicker","sha":"a37612d11aa49774ce7526698afdc207e7016f2f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MZDayPicker?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MZDayPicker","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a37612d11aa49774ce7526698afdc207e7016f2f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MZDayPicker?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a37612d11aa49774ce7526698afdc207e7016f2f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MZDayPicker"}},{"name":"MacMapKit","path":"Specs/MacMapKit","sha":"e0eba456f59ef62fa7fa4f19c08012d477b8f884","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MacMapKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MacMapKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e0eba456f59ef62fa7fa4f19c08012d477b8f884","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MacMapKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e0eba456f59ef62fa7fa4f19c08012d477b8f884","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MacMapKit"}},{"name":"MagicalRecord","path":"Specs/MagicalRecord","sha":"f05a46de2da925a339b4abd79f998fb540b4a307","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MagicalRecord?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MagicalRecord","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f05a46de2da925a339b4abd79f998fb540b4a307","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MagicalRecord?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f05a46de2da925a339b4abd79f998fb540b4a307","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MagicalRecord"}},{"name":"Mailcheck-ObjectiveC","path":"Specs/Mailcheck-ObjectiveC","sha":"95ab194a1c9775dbbf4e2d8f82e40ea7a96efa58","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Mailcheck-ObjectiveC?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Mailcheck-ObjectiveC","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/95ab194a1c9775dbbf4e2d8f82e40ea7a96efa58","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Mailcheck-ObjectiveC?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/95ab194a1c9775dbbf4e2d8f82e40ea7a96efa58","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Mailcheck-ObjectiveC"}},{"name":"Mantle","path":"Specs/Mantle","sha":"f5fb54daf32881abb738c9d7ec7163c7d25f48fd","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Mantle?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Mantle","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f5fb54daf32881abb738c9d7ec7163c7d25f48fd","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Mantle?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f5fb54daf32881abb738c9d7ec7163c7d25f48fd","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Mantle"}},{"name":"MapBox","path":"Specs/MapBox","sha":"a218b3a804b2e5621b6f6263ede1a3ebd1327d00","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MapBox?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MapBox","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a218b3a804b2e5621b6f6263ede1a3ebd1327d00","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MapBox?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a218b3a804b2e5621b6f6263ede1a3ebd1327d00","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MapBox"}},{"name":"MarqueeLabel","path":"Specs/MarqueeLabel","sha":"55b8a0e3dce1cf7ea9e66d01f87a320bc3e37aa5","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MarqueeLabel?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MarqueeLabel","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/55b8a0e3dce1cf7ea9e66d01f87a320bc3e37aa5","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MarqueeLabel?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/55b8a0e3dce1cf7ea9e66d01f87a320bc3e37aa5","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MarqueeLabel"}},{"name":"MasterShareSDK","path":"Specs/MasterShareSDK","sha":"f2be866a3f58003bdd992bbe9366ab58ad552c27","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MasterShareSDK?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MasterShareSDK","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f2be866a3f58003bdd992bbe9366ab58ad552c27","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MasterShareSDK?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f2be866a3f58003bdd992bbe9366ab58ad552c27","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MasterShareSDK"}},{"name":"MendeleySDK","path":"Specs/MendeleySDK","sha":"c60b658ae86dd0db75c9aba52492f37ab15414a6","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MendeleySDK?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MendeleySDK","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c60b658ae86dd0db75c9aba52492f37ab15414a6","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MendeleySDK?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c60b658ae86dd0db75c9aba52492f37ab15414a6","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MendeleySDK"}},{"name":"MessagePack","path":"Specs/MessagePack","sha":"3656ea4d7b21d1ac1923b29b2f3f2c3a5d684533","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MessagePack?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MessagePack","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3656ea4d7b21d1ac1923b29b2f3f2c3a5d684533","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MessagePack?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3656ea4d7b21d1ac1923b29b2f3f2c3a5d684533","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MessagePack"}},{"name":"MessagesTableViewController","path":"Specs/MessagesTableViewController","sha":"b110da43fab50cd223a457542699e2a87d4c3035","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MessagesTableViewController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MessagesTableViewController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b110da43fab50cd223a457542699e2a87d4c3035","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MessagesTableViewController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b110da43fab50cd223a457542699e2a87d4c3035","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MessagesTableViewController"}},{"name":"MixiSDK","path":"Specs/MixiSDK","sha":"f714fc0ab86e1936d0ea815258d52d80416ba19f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MixiSDK?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MixiSDK","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f714fc0ab86e1936d0ea815258d52d80416ba19f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MixiSDK?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f714fc0ab86e1936d0ea815258d52d80416ba19f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MixiSDK"}},{"name":"Mixpanel","path":"Specs/Mixpanel","sha":"cd83ce830b24b162a1562ef9760dcd3827fa5c09","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Mixpanel?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Mixpanel","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/cd83ce830b24b162a1562ef9760dcd3827fa5c09","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Mixpanel?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/cd83ce830b24b162a1562ef9760dcd3827fa5c09","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Mixpanel"}},{"name":"MoPubClient","path":"Specs/MoPubClient","sha":"c11f013a1cdededb63b79efd2207d6ca30e9906c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MoPubClient?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MoPubClient","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c11f013a1cdededb63b79efd2207d6ca30e9906c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MoPubClient?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c11f013a1cdededb63b79efd2207d6ca30e9906c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MoPubClient"}},{"name":"MoPubSDK","path":"Specs/MoPubSDK","sha":"fb83c39c531b8161065eede6a02ef5747a7c1fa7","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MoPubSDK?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MoPubSDK","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fb83c39c531b8161065eede6a02ef5747a7c1fa7","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MoPubSDK?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fb83c39c531b8161065eede6a02ef5747a7c1fa7","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MoPubSDK"}},{"name":"MockInject","path":"Specs/MockInject","sha":"75fd8684133a4d1ec3aa66b572b20c3c779ca94b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MockInject?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MockInject","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/75fd8684133a4d1ec3aa66b572b20c3c779ca94b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MockInject?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/75fd8684133a4d1ec3aa66b572b20c3c779ca94b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MockInject"}},{"name":"Mocktail","path":"Specs/Mocktail","sha":"8095c29cee27ef81f534d405e88cdaea9225ec9f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Mocktail?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Mocktail","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8095c29cee27ef81f534d405e88cdaea9225ec9f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Mocktail?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8095c29cee27ef81f534d405e88cdaea9225ec9f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Mocktail"}},{"name":"Moodstocks-iOS-SDK","path":"Specs/Moodstocks-iOS-SDK","sha":"45e4666617ad82fca8f47ec169572872ae4c731a","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Moodstocks-iOS-SDK?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Moodstocks-iOS-SDK","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/45e4666617ad82fca8f47ec169572872ae4c731a","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Moodstocks-iOS-SDK?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/45e4666617ad82fca8f47ec169572872ae4c731a","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Moodstocks-iOS-SDK"}},{"name":"MosaicUI","path":"Specs/MosaicUI","sha":"763a623eaa908c3243f823b137a367f92e5dd07d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MosaicUI?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MosaicUI","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/763a623eaa908c3243f823b137a367f92e5dd07d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MosaicUI?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/763a623eaa908c3243f823b137a367f92e5dd07d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MosaicUI"}},{"name":"MultiDelegate","path":"Specs/MultiDelegate","sha":"0afb176dba64aa8c62b3061287dc65ce7742a550","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MultiDelegate?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MultiDelegate","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0afb176dba64aa8c62b3061287dc65ce7742a550","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MultiDelegate?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0afb176dba64aa8c62b3061287dc65ce7742a550","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MultiDelegate"}},{"name":"MulticastDelegate","path":"Specs/MulticastDelegate","sha":"02a42ea0112c32dfa9bff660e810d22d6d24c9d7","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MulticastDelegate?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MulticastDelegate","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/02a42ea0112c32dfa9bff660e810d22d6d24c9d7","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MulticastDelegate?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/02a42ea0112c32dfa9bff660e810d22d6d24c9d7","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MulticastDelegate"}},{"name":"MwfTableViewController","path":"Specs/MwfTableViewController","sha":"cb69a3b78cfe51002555c479f6ebee3f220c3d48","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MwfTableViewController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MwfTableViewController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/cb69a3b78cfe51002555c479f6ebee3f220c3d48","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/MwfTableViewController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/cb69a3b78cfe51002555c479f6ebee3f220c3d48","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/MwfTableViewController"}},{"name":"NBSoundCloudActivity","path":"Specs/NBSoundCloudActivity","sha":"83fc51640bd5fe0104a3320a51ea54a1e3f40a72","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NBSoundCloudActivity?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NBSoundCloudActivity","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/83fc51640bd5fe0104a3320a51ea54a1e3f40a72","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NBSoundCloudActivity?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/83fc51640bd5fe0104a3320a51ea54a1e3f40a72","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NBSoundCloudActivity"}},{"name":"NBUCore","path":"Specs/NBUCore","sha":"41eddb253a037c15b86810dd093555e090a491c8","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NBUCore?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NBUCore","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/41eddb253a037c15b86810dd093555e090a491c8","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NBUCore?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/41eddb253a037c15b86810dd093555e090a491c8","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NBUCore"}},{"name":"NCCWL","path":"Specs/NCCWL","sha":"544e150cbb6cb6b55dc4eb2849c8fde137dcdd58","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NCCWL?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NCCWL","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/544e150cbb6cb6b55dc4eb2849c8fde137dcdd58","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NCCWL?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/544e150cbb6cb6b55dc4eb2849c8fde137dcdd58","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NCCWL"}},{"name":"NCChineseConverter","path":"Specs/NCChineseConverter","sha":"a781ee7e30a9d7c774992be2a92483969dc9562e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NCChineseConverter?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NCChineseConverter","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a781ee7e30a9d7c774992be2a92483969dc9562e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NCChineseConverter?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a781ee7e30a9d7c774992be2a92483969dc9562e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NCChineseConverter"}},{"name":"NCMusicEngine","path":"Specs/NCMusicEngine","sha":"9208319bd04b46ac57df4f108091dab54ded45b2","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NCMusicEngine?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NCMusicEngine","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9208319bd04b46ac57df4f108091dab54ded45b2","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NCMusicEngine?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9208319bd04b46ac57df4f108091dab54ded45b2","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NCMusicEngine"}},{"name":"NCWeibo","path":"Specs/NCWeibo","sha":"308acfb2818c2d7fb17e8a5378dd80b341a925e1","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NCWeibo?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NCWeibo","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/308acfb2818c2d7fb17e8a5378dd80b341a925e1","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NCWeibo?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/308acfb2818c2d7fb17e8a5378dd80b341a925e1","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NCWeibo"}},{"name":"NGTabBarController","path":"Specs/NGTabBarController","sha":"b1779ea7374a5fd7ff3c7af6846b53940c8887f9","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NGTabBarController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NGTabBarController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b1779ea7374a5fd7ff3c7af6846b53940c8887f9","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NGTabBarController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b1779ea7374a5fd7ff3c7af6846b53940c8887f9","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NGTabBarController"}},{"name":"NGVaryingGridView","path":"Specs/NGVaryingGridView","sha":"58cb2bcd12383a3fbd662c97ea08a1dd0591a328","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NGVaryingGridView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NGVaryingGridView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/58cb2bcd12383a3fbd662c97ea08a1dd0591a328","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NGVaryingGridView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/58cb2bcd12383a3fbd662c97ea08a1dd0591a328","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NGVaryingGridView"}},{"name":"NICInfo","path":"Specs/NICInfo","sha":"b1712c891f71331b9f2e0ec974707d6df2c6bfac","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NICInfo?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NICInfo","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b1712c891f71331b9f2e0ec974707d6df2c6bfac","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NICInfo?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b1712c891f71331b9f2e0ec974707d6df2c6bfac","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NICInfo"}},{"name":"NJKWebViewProgress","path":"Specs/NJKWebViewProgress","sha":"7b84320be85a20ef65d0ae17018451387d28f2a4","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NJKWebViewProgress?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NJKWebViewProgress","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7b84320be85a20ef65d0ae17018451387d28f2a4","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NJKWebViewProgress?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7b84320be85a20ef65d0ae17018451387d28f2a4","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NJKWebViewProgress"}},{"name":"NLCoreData","path":"Specs/NLCoreData","sha":"d55722a19a71644b05a595f7c1d97bb9f3d05995","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NLCoreData?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NLCoreData","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d55722a19a71644b05a595f7c1d97bb9f3d05995","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NLCoreData?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d55722a19a71644b05a595f7c1d97bb9f3d05995","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NLCoreData"}},{"name":"NLKit","path":"Specs/NLKit","sha":"a0a11233f4dfb28d80f4d99e73b77d203ce3d74f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NLKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NLKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a0a11233f4dfb28d80f4d99e73b77d203ce3d74f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NLKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a0a11233f4dfb28d80f4d99e73b77d203ce3d74f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NLKit"}},{"name":"NLTHTTPStubServer","path":"Specs/NLTHTTPStubServer","sha":"528d5c0f3ab9f1a28de6a1c74a01e3de9a011734","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NLTHTTPStubServer?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NLTHTTPStubServer","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/528d5c0f3ab9f1a28de6a1c74a01e3de9a011734","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NLTHTTPStubServer?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/528d5c0f3ab9f1a28de6a1c74a01e3de9a011734","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NLTHTTPStubServer"}},{"name":"NLTQuickCheck","path":"Specs/NLTQuickCheck","sha":"55b20592255b5d5f7b2bacde65d0102d31562e4c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NLTQuickCheck?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NLTQuickCheck","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/55b20592255b5d5f7b2bacde65d0102d31562e4c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NLTQuickCheck?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/55b20592255b5d5f7b2bacde65d0102d31562e4c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NLTQuickCheck"}},{"name":"NMPaginator","path":"Specs/NMPaginator","sha":"381391a8ea9331e64d7a776bca770b3b5c3849d8","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NMPaginator?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NMPaginator","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/381391a8ea9331e64d7a776bca770b3b5c3849d8","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NMPaginator?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/381391a8ea9331e64d7a776bca770b3b5c3849d8","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NMPaginator"}},{"name":"NMRangeSlider","path":"Specs/NMRangeSlider","sha":"27c49b6ace3ef102e61c1ebc071b66b376b4feca","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NMRangeSlider?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NMRangeSlider","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/27c49b6ace3ef102e61c1ebc071b66b376b4feca","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NMRangeSlider?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/27c49b6ace3ef102e61c1ebc071b66b376b4feca","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NMRangeSlider"}},{"name":"NPReachability","path":"Specs/NPReachability","sha":"ea37defac286f287914298b6271619e348f0ed95","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NPReachability?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NPReachability","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ea37defac286f287914298b6271619e348f0ed95","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NPReachability?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ea37defac286f287914298b6271619e348f0ed95","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NPReachability"}},{"name":"NSArray+Functional","path":"Specs/NSArray+Functional","sha":"aac9ad626a4fe78d4d1f7c339c1f76c8b56aa310","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSArray+Functional?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSArray+Functional","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/aac9ad626a4fe78d4d1f7c339c1f76c8b56aa310","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSArray+Functional?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/aac9ad626a4fe78d4d1f7c339c1f76c8b56aa310","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSArray+Functional"}},{"name":"NSAssert+BackingActions","path":"Specs/NSAssert+BackingActions","sha":"b117e45f138e8ca0574f6154f631a31873ecfec9","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSAssert+BackingActions?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSAssert+BackingActions","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b117e45f138e8ca0574f6154f631a31873ecfec9","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSAssert+BackingActions?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b117e45f138e8ca0574f6154f631a31873ecfec9","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSAssert+BackingActions"}},{"name":"NSBKeyframeAnimation","path":"Specs/NSBKeyframeAnimation","sha":"519969c4f1f546c3e60d2567d382cfd2af63e97a","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSBKeyframeAnimation?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSBKeyframeAnimation","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/519969c4f1f546c3e60d2567d382cfd2af63e97a","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSBKeyframeAnimation?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/519969c4f1f546c3e60d2567d382cfd2af63e97a","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSBKeyframeAnimation"}},{"name":"NSClippy","path":"Specs/NSClippy","sha":"3c32e21208a5a6a01d687045d8a3b511a6d2aa09","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSClippy?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSClippy","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3c32e21208a5a6a01d687045d8a3b511a6d2aa09","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSClippy?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3c32e21208a5a6a01d687045d8a3b511a6d2aa09","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSClippy"}},{"name":"NSContainers-PrettyPrint","path":"Specs/NSContainers-PrettyPrint","sha":"0b9b96eaf430ad9310b2007b9aac0f3288eab0e7","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSContainers-PrettyPrint?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSContainers-PrettyPrint","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0b9b96eaf430ad9310b2007b9aac0f3288eab0e7","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSContainers-PrettyPrint?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0b9b96eaf430ad9310b2007b9aac0f3288eab0e7","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSContainers-PrettyPrint"}},{"name":"NSData+Base64","path":"Specs/NSData+Base64","sha":"fbc4049fab5ae760edd14034e7089cb14705b721","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSData+Base64?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSData+Base64","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fbc4049fab5ae760edd14034e7089cb14705b721","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSData+Base64?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fbc4049fab5ae760edd14034e7089cb14705b721","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSData+Base64"}},{"name":"NSData+MD5Digest","path":"Specs/NSData+MD5Digest","sha":"6507cd208d113d27b88243fabd6547462d8d1e49","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSData+MD5Digest?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSData+MD5Digest","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6507cd208d113d27b88243fabd6547462d8d1e49","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSData+MD5Digest?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6507cd208d113d27b88243fabd6547462d8d1e49","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSData+MD5Digest"}},{"name":"NSDate+Helper","path":"Specs/NSDate+Helper","sha":"51275a49896719a5fa8b817826af4125dd3bc081","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSDate+Helper?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSDate+Helper","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/51275a49896719a5fa8b817826af4125dd3bc081","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSDate+Helper?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/51275a49896719a5fa8b817826af4125dd3bc081","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSDate+Helper"}},{"name":"NSDate-Extensions","path":"Specs/NSDate-Extensions","sha":"f092b5b718e2e8bfad995d93075c07616480ced6","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSDate-Extensions?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSDate-Extensions","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f092b5b718e2e8bfad995d93075c07616480ced6","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSDate-Extensions?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f092b5b718e2e8bfad995d93075c07616480ced6","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSDate-Extensions"}},{"name":"NSDate-TKExtensions","path":"Specs/NSDate-TKExtensions","sha":"987aa8c413946e9f23ce3bc01f38832966318516","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSDate-TKExtensions?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSDate-TKExtensions","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/987aa8c413946e9f23ce3bc01f38832966318516","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSDate-TKExtensions?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/987aa8c413946e9f23ce3bc01f38832966318516","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSDate-TKExtensions"}},{"name":"NSDate-TimeDifference","path":"Specs/NSDate-TimeDifference","sha":"5ec756ad95e61663ce21f71b3bd6e0cc009f9c03","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSDate-TimeDifference?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSDate-TimeDifference","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5ec756ad95e61663ce21f71b3bd6e0cc009f9c03","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSDate-TimeDifference?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5ec756ad95e61663ce21f71b3bd6e0cc009f9c03","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSDate-TimeDifference"}},{"name":"NSDictionary+TRVSUnderscoreCamelCaseAdditions","path":"Specs/NSDictionary+TRVSUnderscoreCamelCaseAdditions","sha":"edc869c60bac052a2e85523c5b561f99db1dc154","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSDictionary+TRVSUnderscoreCamelCaseAdditions?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSDictionary+TRVSUnderscoreCamelCaseAdditions","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/edc869c60bac052a2e85523c5b561f99db1dc154","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSDictionary+TRVSUnderscoreCamelCaseAdditions?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/edc869c60bac052a2e85523c5b561f99db1dc154","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSDictionary+TRVSUnderscoreCamelCaseAdditions"}},{"name":"NSEnumeratorLinq","path":"Specs/NSEnumeratorLinq","sha":"19409fb12718bb63899c4f1bfc6a23341992337c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSEnumeratorLinq?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSEnumeratorLinq","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/19409fb12718bb63899c4f1bfc6a23341992337c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSEnumeratorLinq?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/19409fb12718bb63899c4f1bfc6a23341992337c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSEnumeratorLinq"}},{"name":"NSHash","path":"Specs/NSHash","sha":"f0a920eab1ca2b1bc8ad8f8fe8773397fc356b5b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSHash?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSHash","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f0a920eab1ca2b1bc8ad8f8fe8773397fc356b5b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSHash?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f0a920eab1ca2b1bc8ad8f8fe8773397fc356b5b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSHash"}},{"name":"NSLayoutConstraint+ExpressionFormat","path":"Specs/NSLayoutConstraint+ExpressionFormat","sha":"c4108f6f4fbb01de11e855f4481cb171d0e0d9ea","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSLayoutConstraint+ExpressionFormat?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSLayoutConstraint+ExpressionFormat","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c4108f6f4fbb01de11e855f4481cb171d0e0d9ea","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSLayoutConstraint+ExpressionFormat?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c4108f6f4fbb01de11e855f4481cb171d0e0d9ea","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSLayoutConstraint+ExpressionFormat"}},{"name":"NSLayoutEquations","path":"Specs/NSLayoutEquations","sha":"ef33ef3f11292bac7f415df034ab5c0e914063fe","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSLayoutEquations?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSLayoutEquations","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ef33ef3f11292bac7f415df034ab5c0e914063fe","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSLayoutEquations?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ef33ef3f11292bac7f415df034ab5c0e914063fe","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSLayoutEquations"}},{"name":"NSLogger-CocoaLumberjack-connector","path":"Specs/NSLogger-CocoaLumberjack-connector","sha":"b6f8a99f510b68e1f3fb328e74876be5e90a0e04","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSLogger-CocoaLumberjack-connector?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSLogger-CocoaLumberjack-connector","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b6f8a99f510b68e1f3fb328e74876be5e90a0e04","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSLogger-CocoaLumberjack-connector?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b6f8a99f510b68e1f3fb328e74876be5e90a0e04","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSLogger-CocoaLumberjack-connector"}},{"name":"NSLogger","path":"Specs/NSLogger","sha":"22959adf5c99893c38aa93b885d28c7bef332d67","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSLogger?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSLogger","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/22959adf5c99893c38aa93b885d28c7bef332d67","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSLogger?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/22959adf5c99893c38aa93b885d28c7bef332d67","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSLogger"}},{"name":"NSMutableArrayRearrangingExtensions","path":"Specs/NSMutableArrayRearrangingExtensions","sha":"fb13b42d40fa92e1df2d74d37c32c6757d954ca3","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSMutableArrayRearrangingExtensions?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSMutableArrayRearrangingExtensions","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fb13b42d40fa92e1df2d74d37c32c6757d954ca3","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSMutableArrayRearrangingExtensions?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fb13b42d40fa92e1df2d74d37c32c6757d954ca3","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSMutableArrayRearrangingExtensions"}},{"name":"NSObject-AutomagicCoding","path":"Specs/NSObject-AutomagicCoding","sha":"29fe0ec3e7489c38c9dabaf6484fa42d35e75628","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSObject-AutomagicCoding?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSObject-AutomagicCoding","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/29fe0ec3e7489c38c9dabaf6484fa42d35e75628","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSObject-AutomagicCoding?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/29fe0ec3e7489c38c9dabaf6484fa42d35e75628","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSObject-AutomagicCoding"}},{"name":"NSObject-Tap","path":"Specs/NSObject-Tap","sha":"5031d8207871c5f7eeef26405101713acfe4b7fd","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSObject-Tap?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSObject-Tap","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5031d8207871c5f7eeef26405101713acfe4b7fd","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSObject-Tap?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5031d8207871c5f7eeef26405101713acfe4b7fd","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSObject-Tap"}},{"name":"NSRails","path":"Specs/NSRails","sha":"30aa0f2f209d74b8f932d1b5c15c4363c020f1cf","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSRails?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSRails","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/30aa0f2f209d74b8f932d1b5c15c4363c020f1cf","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSRails?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/30aa0f2f209d74b8f932d1b5c15c4363c020f1cf","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSRails"}},{"name":"NSRemoteLog","path":"Specs/NSRemoteLog","sha":"92d95223b312ce0db58647c4f2a6289f6a0a43f6","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSRemoteLog?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSRemoteLog","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/92d95223b312ce0db58647c4f2a6289f6a0a43f6","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSRemoteLog?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/92d95223b312ce0db58647c4f2a6289f6a0a43f6","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSRemoteLog"}},{"name":"NSString+Emoji","path":"Specs/NSString+Emoji","sha":"49bce58f1e73e48e394f86c551f520516a21c1d5","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSString+Emoji?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSString+Emoji","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/49bce58f1e73e48e394f86c551f520516a21c1d5","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSString+Emoji?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/49bce58f1e73e48e394f86c551f520516a21c1d5","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSString+Emoji"}},{"name":"NSString+RMURLEncoding","path":"Specs/NSString+RMURLEncoding","sha":"23ff4c5bcfd2934fecd15cc05444a220f3af03ae","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSString+RMURLEncoding?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSString+RMURLEncoding","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/23ff4c5bcfd2934fecd15cc05444a220f3af03ae","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSString+RMURLEncoding?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/23ff4c5bcfd2934fecd15cc05444a220f3af03ae","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSString+RMURLEncoding"}},{"name":"NSString+TextAndNumberValidation","path":"Specs/NSString+TextAndNumberValidation","sha":"cc1c0e0b12c4a8cc49f199a7a0bdd2b8522433d0","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSString+TextAndNumberValidation?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSString+TextAndNumberValidation","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/cc1c0e0b12c4a8cc49f199a7a0bdd2b8522433d0","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSString+TextAndNumberValidation?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/cc1c0e0b12c4a8cc49f199a7a0bdd2b8522433d0","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSString+TextAndNumberValidation"}},{"name":"NSString-HTML","path":"Specs/NSString-HTML","sha":"d43ffc609e5e0595bb6190bf18675fe21c82d89d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSString-HTML?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSString-HTML","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d43ffc609e5e0595bb6190bf18675fe21c82d89d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSString-HTML?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d43ffc609e5e0595bb6190bf18675fe21c82d89d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSString-HTML"}},{"name":"NSString-Hashes","path":"Specs/NSString-Hashes","sha":"7b18bdee4cc0d82b2b9b0288c6c65b561ab6d255","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSString-Hashes?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSString-Hashes","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7b18bdee4cc0d82b2b9b0288c6c65b561ab6d255","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSString-Hashes?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7b18bdee4cc0d82b2b9b0288c6c65b561ab6d255","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSString-Hashes"}},{"name":"NSString-Ruby","path":"Specs/NSString-Ruby","sha":"c49ffe318d038575ad6d31a5ec5da4d4ff6ba009","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSString-Ruby?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSString-Ruby","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c49ffe318d038575ad6d31a5ec5da4d4ff6ba009","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSString-Ruby?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c49ffe318d038575ad6d31a5ec5da4d4ff6ba009","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSString-Ruby"}},{"name":"NSStringEmojize","path":"Specs/NSStringEmojize","sha":"d2e5acde6446425203f3e30d41bd78ae6f315153","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSStringEmojize?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSStringEmojize","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d2e5acde6446425203f3e30d41bd78ae6f315153","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSStringEmojize?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d2e5acde6446425203f3e30d41bd78ae6f315153","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSStringEmojize"}},{"name":"NSStringMask","path":"Specs/NSStringMask","sha":"1de7e581b4388339da10465f0ce33a95999befea","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSStringMask?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSStringMask","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1de7e581b4388339da10465f0ce33a95999befea","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSStringMask?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1de7e581b4388339da10465f0ce33a95999befea","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSStringMask"}},{"name":"NSTimer-Blocks","path":"Specs/NSTimer-Blocks","sha":"1e14ca1748866c6947941a196f29431e9429db09","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSTimer-Blocks?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSTimer-Blocks","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1e14ca1748866c6947941a196f29431e9429db09","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSTimer-Blocks?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1e14ca1748866c6947941a196f29431e9429db09","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSTimer-Blocks"}},{"name":"NSURLConnection-Blocks","path":"Specs/NSURLConnection-Blocks","sha":"92fe32f34d077314dfd5c4875b0c02318f4d904f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSURLConnection-Blocks?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSURLConnection-Blocks","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/92fe32f34d077314dfd5c4875b0c02318f4d904f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSURLConnection-Blocks?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/92fe32f34d077314dfd5c4875b0c02318f4d904f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSURLConnection-Blocks"}},{"name":"NSURLConnectionVCR","path":"Specs/NSURLConnectionVCR","sha":"53ac18ae7d601b641a2365221aa19135674f56a5","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSURLConnectionVCR?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSURLConnectionVCR","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/53ac18ae7d601b641a2365221aa19135674f56a5","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSURLConnectionVCR?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/53ac18ae7d601b641a2365221aa19135674f56a5","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSURLConnectionVCR"}},{"name":"NSUUID","path":"Specs/NSUUID","sha":"2c784e8fa141ee03ae6e024e00f2ce6b5d9f5fde","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSUUID?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSUUID","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2c784e8fa141ee03ae6e024e00f2ce6b5d9f5fde","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSUUID?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2c784e8fa141ee03ae6e024e00f2ce6b5d9f5fde","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSUUID"}},{"name":"NSUnit","path":"Specs/NSUnit","sha":"dbf2a58a394f2cafc6ac3952388f198557c4535b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSUnit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSUnit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/dbf2a58a394f2cafc6ac3952388f198557c4535b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSUnit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/dbf2a58a394f2cafc6ac3952388f198557c4535b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSUnit"}},{"name":"NSView+LinenBackground","path":"Specs/NSView+LinenBackground","sha":"e66ec72944669d2743848f62b58cab9990b3e1aa","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSView+LinenBackground?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSView+LinenBackground","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e66ec72944669d2743848f62b58cab9990b3e1aa","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSView+LinenBackground?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e66ec72944669d2743848f62b58cab9990b3e1aa","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSView+LinenBackground"}},{"name":"NSXtensions","path":"Specs/NSXtensions","sha":"b1416043a45b49a8cecb07fbb5abb8b858c025e5","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSXtensions?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSXtensions","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b1416043a45b49a8cecb07fbb5abb8b858c025e5","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NSXtensions?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b1416043a45b49a8cecb07fbb5abb8b858c025e5","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NSXtensions"}},{"name":"NUI","path":"Specs/NUI","sha":"6f0838e81182690a1b0dc7d0d55e79849b42168f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NUI?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NUI","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6f0838e81182690a1b0dc7d0d55e79849b42168f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NUI?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6f0838e81182690a1b0dc7d0d55e79849b42168f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NUI"}},{"name":"NVSlideMenuController","path":"Specs/NVSlideMenuController","sha":"5c9aff067305b85169c56092228b4609296c9f20","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NVSlideMenuController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NVSlideMenuController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5c9aff067305b85169c56092228b4609296c9f20","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NVSlideMenuController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5c9aff067305b85169c56092228b4609296c9f20","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NVSlideMenuController"}},{"name":"NVUIGradientButton","path":"Specs/NVUIGradientButton","sha":"d8fafddf4086edb12ae3e10b23e6977a95f5feb9","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NVUIGradientButton?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NVUIGradientButton","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d8fafddf4086edb12ae3e10b23e6977a95f5feb9","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NVUIGradientButton?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d8fafddf4086edb12ae3e10b23e6977a95f5feb9","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NVUIGradientButton"}},{"name":"NXActivities","path":"Specs/NXActivities","sha":"e5f13577bbbe1627bd998041802d7e47b74a96d9","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NXActivities?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NXActivities","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e5f13577bbbe1627bd998041802d7e47b74a96d9","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NXActivities?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e5f13577bbbe1627bd998041802d7e47b74a96d9","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NXActivities"}},{"name":"NXOAuth2Client","path":"Specs/NXOAuth2Client","sha":"3c88d53f05f484d18021049959716d33e8080266","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NXOAuth2Client?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NXOAuth2Client","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3c88d53f05f484d18021049959716d33e8080266","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NXOAuth2Client?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3c88d53f05f484d18021049959716d33e8080266","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NXOAuth2Client"}},{"name":"NYXImagesKit","path":"Specs/NYXImagesKit","sha":"e9f528b4d8d6c0e99ae23c8df97385368f886fdb","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NYXImagesKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NYXImagesKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e9f528b4d8d6c0e99ae23c8df97385368f886fdb","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NYXImagesKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e9f528b4d8d6c0e99ae23c8df97385368f886fdb","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NYXImagesKit"}},{"name":"NanoStore","path":"Specs/NanoStore","sha":"54a9e68377062b23259e109b7c55ca464775e27d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NanoStore?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NanoStore","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/54a9e68377062b23259e109b7c55ca464775e27d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NanoStore?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/54a9e68377062b23259e109b7c55ca464775e27d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NanoStore"}},{"name":"Neptune","path":"Specs/Neptune","sha":"d03ec91540946d671e65b58c8abd2294b5e28bd7","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Neptune?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Neptune","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d03ec91540946d671e65b58c8abd2294b5e28bd7","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Neptune?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d03ec91540946d671e65b58c8abd2294b5e28bd7","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Neptune"}},{"name":"NetworkKit","path":"Specs/NetworkKit","sha":"a7f99a15546b9debdb404d2cfcdf8b71418ddb07","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NetworkKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NetworkKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a7f99a15546b9debdb404d2cfcdf8b71418ddb07","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NetworkKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a7f99a15546b9debdb404d2cfcdf8b71418ddb07","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NetworkKit"}},{"name":"NewRelicAgent","path":"Specs/NewRelicAgent","sha":"64d1fc9739e3489f85ef313aaaba05c8656824d2","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NewRelicAgent?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NewRelicAgent","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/64d1fc9739e3489f85ef313aaaba05c8656824d2","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NewRelicAgent?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/64d1fc9739e3489f85ef313aaaba05c8656824d2","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NewRelicAgent"}},{"name":"Nimbus","path":"Specs/Nimbus","sha":"897c0bac98b1498b551c6f2c4765cdd0ff86e71f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Nimbus?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Nimbus","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/897c0bac98b1498b551c6f2c4765cdd0ff86e71f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Nimbus?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/897c0bac98b1498b551c6f2c4765cdd0ff86e71f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Nimbus"}},{"name":"Nocilla","path":"Specs/Nocilla","sha":"0579bc749175fca979b837e66eb1df7a388051b2","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Nocilla?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Nocilla","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0579bc749175fca979b837e66eb1df7a388051b2","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Nocilla?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0579bc749175fca979b837e66eb1df7a388051b2","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Nocilla"}},{"name":"NoodleKit","path":"Specs/NoodleKit","sha":"78c89dc8bb29f14d3e337ff8eddcfe308c22bd8d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NoodleKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NoodleKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/78c89dc8bb29f14d3e337ff8eddcfe308c22bd8d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NoodleKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/78c89dc8bb29f14d3e337ff8eddcfe308c22bd8d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NoodleKit"}},{"name":"NoticeView","path":"Specs/NoticeView","sha":"29bb3125145516b5b9a2982134f8a54360b1215b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NoticeView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NoticeView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/29bb3125145516b5b9a2982134f8a54360b1215b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NoticeView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/29bb3125145516b5b9a2982134f8a54360b1215b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NoticeView"}},{"name":"Novocaine","path":"Specs/Novocaine","sha":"25e0f87ea630b9c2fcc326b5269df1b202ff76f8","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Novocaine?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Novocaine","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/25e0f87ea630b9c2fcc326b5269df1b202ff76f8","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Novocaine?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/25e0f87ea630b9c2fcc326b5269df1b202ff76f8","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Novocaine"}},{"name":"NullSafe","path":"Specs/NullSafe","sha":"a15d8928cee0727a949ac22397be22f57d22b6b4","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NullSafe?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NullSafe","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a15d8928cee0727a949ac22397be22f57d22b6b4","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NullSafe?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a15d8928cee0727a949ac22397be22f57d22b6b4","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NullSafe"}},{"name":"NyaruDB","path":"Specs/NyaruDB","sha":"2c0dc4aee761f952a8a291a6f0f7a2fcfada2027","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NyaruDB?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NyaruDB","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2c0dc4aee761f952a8a291a6f0f7a2fcfada2027","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/NyaruDB?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2c0dc4aee761f952a8a291a6f0f7a2fcfada2027","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/NyaruDB"}},{"name":"OAuthCore","path":"Specs/OAuthCore","sha":"e704e4fc2b559e0a0ae1098d11ad770fe4aada72","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/OAuthCore?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/OAuthCore","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e704e4fc2b559e0a0ae1098d11ad770fe4aada72","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/OAuthCore?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e704e4fc2b559e0a0ae1098d11ad770fe4aada72","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/OAuthCore"}},{"name":"OBMenuBarWindow","path":"Specs/OBMenuBarWindow","sha":"b78303eeed4132715242f6d4806e04f371c9db5b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/OBMenuBarWindow?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/OBMenuBarWindow","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b78303eeed4132715242f6d4806e04f371c9db5b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/OBMenuBarWindow?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b78303eeed4132715242f6d4806e04f371c9db5b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/OBMenuBarWindow"}},{"name":"OBShapedButton","path":"Specs/OBShapedButton","sha":"5cb76e7ef1ff7d5e71e6ad32c2728b73989025b3","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/OBShapedButton?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/OBShapedButton","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5cb76e7ef1ff7d5e71e6ad32c2728b73989025b3","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/OBShapedButton?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5cb76e7ef1ff7d5e71e6ad32c2728b73989025b3","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/OBShapedButton"}},{"name":"OBSlider","path":"Specs/OBSlider","sha":"68943b471df55b2a311294fef0e5ffd0487bca16","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/OBSlider?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/OBSlider","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/68943b471df55b2a311294fef0e5ffd0487bca16","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/OBSlider?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/68943b471df55b2a311294fef0e5ffd0487bca16","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/OBSlider"}},{"name":"OBTabBarController","path":"Specs/OBTabBarController","sha":"230a9510de8e41c1bad9779129bec071cd654e0f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/OBTabBarController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/OBTabBarController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/230a9510de8e41c1bad9779129bec071cd654e0f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/OBTabBarController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/230a9510de8e41c1bad9779129bec071cd654e0f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/OBTabBarController"}},{"name":"OCCalendar","path":"Specs/OCCalendar","sha":"56fe54f5c137cdd458c491eaa3774f0feccc906e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/OCCalendar?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/OCCalendar","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/56fe54f5c137cdd458c491eaa3774f0feccc906e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/OCCalendar?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/56fe54f5c137cdd458c491eaa3774f0feccc906e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/OCCalendar"}},{"name":"OCHamcrest","path":"Specs/OCHamcrest","sha":"2c3e4b769fe198ceffc6a4951468ea4237aa3af1","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/OCHamcrest?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/OCHamcrest","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2c3e4b769fe198ceffc6a4951468ea4237aa3af1","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/OCHamcrest?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2c3e4b769fe198ceffc6a4951468ea4237aa3af1","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/OCHamcrest"}},{"name":"OCLogTemplate","path":"Specs/OCLogTemplate","sha":"f9944b8c36b2f557336f9e140a5ea7611f919997","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/OCLogTemplate?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/OCLogTemplate","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f9944b8c36b2f557336f9e140a5ea7611f919997","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/OCLogTemplate?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f9944b8c36b2f557336f9e140a5ea7611f919997","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/OCLogTemplate"}},{"name":"OCMapView","path":"Specs/OCMapView","sha":"0e2b22634475dcbb5fce9c34ae165fd176c0f8f8","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/OCMapView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/OCMapView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0e2b22634475dcbb5fce9c34ae165fd176c0f8f8","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/OCMapView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0e2b22634475dcbb5fce9c34ae165fd176c0f8f8","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/OCMapView"}},{"name":"OCMock","path":"Specs/OCMock","sha":"9131e4faea6f9ed510b88809667642dbd7373ed0","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/OCMock?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/OCMock","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9131e4faea6f9ed510b88809667642dbd7373ed0","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/OCMock?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9131e4faea6f9ed510b88809667642dbd7373ed0","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/OCMock"}},{"name":"OCMockito","path":"Specs/OCMockito","sha":"65be12ee3e7faa97d1cfee5e0524bb72e7ad0e52","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/OCMockito?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/OCMockito","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/65be12ee3e7faa97d1cfee5e0524bb72e7ad0e52","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/OCMockito?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/65be12ee3e7faa97d1cfee5e0524bb72e7ad0e52","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/OCMockito"}},{"name":"OCTotallyLazy","path":"Specs/OCTotallyLazy","sha":"7ef05d287586b0cb5fd7548263f644d9345c5c4f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/OCTotallyLazy?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/OCTotallyLazy","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7ef05d287586b0cb5fd7548263f644d9345c5c4f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/OCTotallyLazy?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7ef05d287586b0cb5fd7548263f644d9345c5c4f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/OCTotallyLazy"}},{"name":"ODIN","path":"Specs/ODIN","sha":"1ce7cc6940367e180a5758b2b18867f979b414ea","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ODIN?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ODIN","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1ce7cc6940367e180a5758b2b18867f979b414ea","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ODIN?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1ce7cc6940367e180a5758b2b18867f979b414ea","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ODIN"}},{"name":"ODRefreshControl","path":"Specs/ODRefreshControl","sha":"c56dd530bcc50ff95182fe68fc33f3662f3a021c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ODRefreshControl?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ODRefreshControl","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c56dd530bcc50ff95182fe68fc33f3662f3a021c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ODRefreshControl?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c56dd530bcc50ff95182fe68fc33f3662f3a021c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ODRefreshControl"}},{"name":"OEGFlamingJune","path":"Specs/OEGFlamingJune","sha":"6b4813fc0663732a168f229025f9387a3714291d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/OEGFlamingJune?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/OEGFlamingJune","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6b4813fc0663732a168f229025f9387a3714291d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/OEGFlamingJune?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6b4813fc0663732a168f229025f9387a3714291d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/OEGFlamingJune"}},{"name":"OGImage","path":"Specs/OGImage","sha":"3c78d6eb1fdb2dc29f60899edc58769ad3ae645a","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/OGImage?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/OGImage","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3c78d6eb1fdb2dc29f60899edc58769ad3ae645a","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/OGImage?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3c78d6eb1fdb2dc29f60899edc58769ad3ae645a","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/OGImage"}},{"name":"OHAttributedLabel","path":"Specs/OHAttributedLabel","sha":"5a1eb7b945adce60902fc65caf7dc47a51e73fa6","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/OHAttributedLabel?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/OHAttributedLabel","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5a1eb7b945adce60902fc65caf7dc47a51e73fa6","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/OHAttributedLabel?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5a1eb7b945adce60902fc65caf7dc47a51e73fa6","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/OHAttributedLabel"}},{"name":"OHHTTPStubs","path":"Specs/OHHTTPStubs","sha":"0c590cdecd358c23d0a24b1cb6d707e7a2b3442b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/OHHTTPStubs?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/OHHTTPStubs","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0c590cdecd358c23d0a24b1cb6d707e7a2b3442b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/OHHTTPStubs?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0c590cdecd358c23d0a24b1cb6d707e7a2b3442b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/OHHTTPStubs"}},{"name":"OJFSegmentedProgressView","path":"Specs/OJFSegmentedProgressView","sha":"d420a9ff770cd81699aa332c28fe8e89907d768d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/OJFSegmentedProgressView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/OJFSegmentedProgressView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d420a9ff770cd81699aa332c28fe8e89907d768d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/OJFSegmentedProgressView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d420a9ff770cd81699aa332c28fe8e89907d768d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/OJFSegmentedProgressView"}},{"name":"OLGhostAlertView","path":"Specs/OLGhostAlertView","sha":"fd7d2e9e75b2c29a148b782cd0c69c8d9d02afe8","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/OLGhostAlertView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/OLGhostAlertView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fd7d2e9e75b2c29a148b782cd0c69c8d9d02afe8","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/OLGhostAlertView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fd7d2e9e75b2c29a148b782cd0c69c8d9d02afe8","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/OLGhostAlertView"}},{"name":"OLImageView","path":"Specs/OLImageView","sha":"7154591bdf0b899ff39ffafa6a7b04695a7a0ded","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/OLImageView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/OLImageView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7154591bdf0b899ff39ffafa6a7b04695a7a0ded","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/OLImageView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7154591bdf0b899ff39ffafa6a7b04695a7a0ded","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/OLImageView"}},{"name":"OMGFramework","path":"Specs/OMGFramework","sha":"e77b53da57f511864d68bbaaf315ddcf3a44e8e7","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/OMGFramework?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/OMGFramework","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e77b53da57f511864d68bbaaf315ddcf3a44e8e7","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/OMGFramework?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e77b53da57f511864d68bbaaf315ddcf3a44e8e7","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/OMGFramework"}},{"name":"ORKeyboardReactingApplication","path":"Specs/ORKeyboardReactingApplication","sha":"874486384de5427738dd453936054a1ec07ded93","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ORKeyboardReactingApplication?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ORKeyboardReactingApplication","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/874486384de5427738dd453936054a1ec07ded93","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ORKeyboardReactingApplication?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/874486384de5427738dd453936054a1ec07ded93","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ORKeyboardReactingApplication"}},{"name":"OROpenSubtitleDownloader","path":"Specs/OROpenSubtitleDownloader","sha":"a9c847c8475d9762240687bebb44e88288c52519","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/OROpenSubtitleDownloader?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/OROpenSubtitleDownloader","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a9c847c8475d9762240687bebb44e88288c52519","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/OROpenSubtitleDownloader?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a9c847c8475d9762240687bebb44e88288c52519","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/OROpenSubtitleDownloader"}},{"name":"ORSSerialPort","path":"Specs/ORSSerialPort","sha":"94a01b445be3820003fdbd6984b70f3b138ff98e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ORSSerialPort?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ORSSerialPort","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/94a01b445be3820003fdbd6984b70f3b138ff98e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ORSSerialPort?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/94a01b445be3820003fdbd6984b70f3b138ff98e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ORSSerialPort"}},{"name":"OZTabBarController","path":"Specs/OZTabBarController","sha":"c7a2a9a8d4aa51cce87bc76c24ac676bb32ea4f5","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/OZTabBarController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/OZTabBarController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c7a2a9a8d4aa51cce87bc76c24ac676bb32ea4f5","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/OZTabBarController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c7a2a9a8d4aa51cce87bc76c24ac676bb32ea4f5","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/OZTabBarController"}},{"name":"ObjC-StatelyNotificationRobot","path":"Specs/ObjC-StatelyNotificationRobot","sha":"eb676df6f271aa882595e3c3debde9583e232851","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ObjC-StatelyNotificationRobot?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ObjC-StatelyNotificationRobot","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/eb676df6f271aa882595e3c3debde9583e232851","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ObjC-StatelyNotificationRobot?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/eb676df6f271aa882595e3c3debde9583e232851","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ObjC-StatelyNotificationRobot"}},{"name":"ObjQREncoder","path":"Specs/ObjQREncoder","sha":"7a8edb949407fb2fe81fdf470aff64b523071baf","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ObjQREncoder?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ObjQREncoder","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7a8edb949407fb2fe81fdf470aff64b523071baf","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ObjQREncoder?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7a8edb949407fb2fe81fdf470aff64b523071baf","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ObjQREncoder"}},{"name":"ObjcAssociatedObjectHelpers","path":"Specs/ObjcAssociatedObjectHelpers","sha":"4c5ff5ea2574f0fd6d4330444fb4ee562b3de6bb","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ObjcAssociatedObjectHelpers?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ObjcAssociatedObjectHelpers","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4c5ff5ea2574f0fd6d4330444fb4ee562b3de6bb","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ObjcAssociatedObjectHelpers?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4c5ff5ea2574f0fd6d4330444fb4ee562b3de6bb","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ObjcAssociatedObjectHelpers"}},{"name":"ObjectAL-for-iPhone","path":"Specs/ObjectAL-for-iPhone","sha":"79299fba82e8db0a6d79b9d41f1d14d1ebc3e30d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ObjectAL-for-iPhone?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ObjectAL-for-iPhone","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/79299fba82e8db0a6d79b9d41f1d14d1ebc3e30d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ObjectAL-for-iPhone?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/79299fba82e8db0a6d79b9d41f1d14d1ebc3e30d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ObjectAL-for-iPhone"}},{"name":"ObjectXML","path":"Specs/ObjectXML","sha":"d556d89e9dbfee0f0f3fe3ef97ad670aeaf12ec1","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ObjectXML?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ObjectXML","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d556d89e9dbfee0f0f3fe3ef97ad670aeaf12ec1","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ObjectXML?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d556d89e9dbfee0f0f3fe3ef97ad670aeaf12ec1","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ObjectXML"}},{"name":"Objection","path":"Specs/Objection","sha":"16d611fa8be54388214e1bd883df9bdc3674cbd4","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Objection?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Objection","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/16d611fa8be54388214e1bd883df9bdc3674cbd4","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Objection?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/16d611fa8be54388214e1bd883df9bdc3674cbd4","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Objection"}},{"name":"Objective-C-HMTL-Parser","path":"Specs/Objective-C-HMTL-Parser","sha":"a4b1cc54c7771d1fe571e18178a85306a317c552","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Objective-C-HMTL-Parser?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Objective-C-HMTL-Parser","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a4b1cc54c7771d1fe571e18178a85306a317c552","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Objective-C-HMTL-Parser?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a4b1cc54c7771d1fe571e18178a85306a317c552","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Objective-C-HMTL-Parser"}},{"name":"ObjectiveGit","path":"Specs/ObjectiveGit","sha":"781d67f9d9fa7c2bba5c11cf33ffa8d69f47a914","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ObjectiveGit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ObjectiveGit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/781d67f9d9fa7c2bba5c11cf33ffa8d69f47a914","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ObjectiveGit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/781d67f9d9fa7c2bba5c11cf33ffa8d69f47a914","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ObjectiveGit"}},{"name":"ObjectiveLibModbus","path":"Specs/ObjectiveLibModbus","sha":"8bc619438b6ce049e93c555b216fdaed0f552dc7","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ObjectiveLibModbus?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ObjectiveLibModbus","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8bc619438b6ce049e93c555b216fdaed0f552dc7","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ObjectiveLibModbus?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8bc619438b6ce049e93c555b216fdaed0f552dc7","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ObjectiveLibModbus"}},{"name":"ObjectiveLuhn","path":"Specs/ObjectiveLuhn","sha":"ab3e2bc489dc536683dc25b9b303f0f7d317e434","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ObjectiveLuhn?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ObjectiveLuhn","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ab3e2bc489dc536683dc25b9b303f0f7d317e434","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ObjectiveLuhn?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ab3e2bc489dc536683dc25b9b303f0f7d317e434","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ObjectiveLuhn"}},{"name":"ObjectiveMetrics","path":"Specs/ObjectiveMetrics","sha":"ce9e443a6ec52b9c92339d174da5e9a5614400f8","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ObjectiveMetrics?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ObjectiveMetrics","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ce9e443a6ec52b9c92339d174da5e9a5614400f8","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ObjectiveMetrics?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ce9e443a6ec52b9c92339d174da5e9a5614400f8","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ObjectiveMetrics"}},{"name":"ObjectiveMixin","path":"Specs/ObjectiveMixin","sha":"497b455eba8d4afe06e9e22dbbd5e5de47d430c0","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ObjectiveMixin?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ObjectiveMixin","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/497b455eba8d4afe06e9e22dbbd5e5de47d430c0","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ObjectiveMixin?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/497b455eba8d4afe06e9e22dbbd5e5de47d430c0","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ObjectiveMixin"}},{"name":"ObjectiveRecord","path":"Specs/ObjectiveRecord","sha":"a39f280299dcad9ffdb5256874d5a788f87e82e3","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ObjectiveRecord?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ObjectiveRecord","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a39f280299dcad9ffdb5256874d5a788f87e82e3","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ObjectiveRecord?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a39f280299dcad9ffdb5256874d5a788f87e82e3","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ObjectiveRecord"}},{"name":"ObjectiveSugar","path":"Specs/ObjectiveSugar","sha":"dea8ea9f4f49b11d0bd9f456a2df2a88ba93221b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ObjectiveSugar?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ObjectiveSugar","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/dea8ea9f4f49b11d0bd9f456a2df2a88ba93221b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ObjectiveSugar?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/dea8ea9f4f49b11d0bd9f456a2df2a88ba93221b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ObjectiveSugar"}},{"name":"ObjectiveTumblr","path":"Specs/ObjectiveTumblr","sha":"7e75adb4cee3aeb00d7160baf74e134507cc6b50","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ObjectiveTumblr?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ObjectiveTumblr","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7e75adb4cee3aeb00d7160baf74e134507cc6b50","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ObjectiveTumblr?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7e75adb4cee3aeb00d7160baf74e134507cc6b50","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ObjectiveTumblr"}},{"name":"Omazing","path":"Specs/Omazing","sha":"0e4600feea3c657a8bf0e7c9368527c84d389d89","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Omazing?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Omazing","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0e4600feea3c657a8bf0e7c9368527c84d389d89","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Omazing?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0e4600feea3c657a8bf0e7c9368527c84d389d89","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Omazing"}},{"name":"Ooyala","path":"Specs/Ooyala","sha":"da6fced63d806000ba3f3044d9288f985ad0cbe5","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Ooyala?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Ooyala","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/da6fced63d806000ba3f3044d9288f985ad0cbe5","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Ooyala?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/da6fced63d806000ba3f3044d9288f985ad0cbe5","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Ooyala"}},{"name":"OpenCV","path":"Specs/OpenCV","sha":"d282bc3f280d51e7ee8c21602caea319f4666806","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/OpenCV?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/OpenCV","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d282bc3f280d51e7ee8c21602caea319f4666806","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/OpenCV?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d282bc3f280d51e7ee8c21602caea319f4666806","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/OpenCV"}},{"name":"OpenInChrome","path":"Specs/OpenInChrome","sha":"e679c284e232220009f985d523b3c30e37aa70ec","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/OpenInChrome?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/OpenInChrome","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e679c284e232220009f985d523b3c30e37aa70ec","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/OpenInChrome?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e679c284e232220009f985d523b3c30e37aa70ec","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/OpenInChrome"}},{"name":"OpenTokSDK-WebRTC","path":"Specs/OpenTokSDK-WebRTC","sha":"be71501a3922b7ea4b15467ec6e17619db655211","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/OpenTokSDK-WebRTC?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/OpenTokSDK-WebRTC","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/be71501a3922b7ea4b15467ec6e17619db655211","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/OpenTokSDK-WebRTC?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/be71501a3922b7ea4b15467ec6e17619db655211","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/OpenTokSDK-WebRTC"}},{"name":"OpenTokSDK","path":"Specs/OpenTokSDK","sha":"46e07b9674619b42de6dbf6334c0f8eb26db9176","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/OpenTokSDK?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/OpenTokSDK","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/46e07b9674619b42de6dbf6334c0f8eb26db9176","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/OpenTokSDK?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/46e07b9674619b42de6dbf6334c0f8eb26db9176","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/OpenTokSDK"}},{"name":"OpenUDID","path":"Specs/OpenUDID","sha":"a567398459e4dc92d127efd0fab50bcd139785a1","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/OpenUDID?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/OpenUDID","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a567398459e4dc92d127efd0fab50bcd139785a1","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/OpenUDID?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a567398459e4dc92d127efd0fab50bcd139785a1","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/OpenUDID"}},{"name":"Orbiter","path":"Specs/Orbiter","sha":"78730fcc89686586263915f670950b7b7225edff","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Orbiter?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Orbiter","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/78730fcc89686586263915f670950b7b7225edff","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Orbiter?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/78730fcc89686586263915f670950b7b7225edff","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Orbiter"}},{"name":"Overline-BlocksKit","path":"Specs/Overline-BlocksKit","sha":"8b82d7ce4cca52d6762933bbe968fc75a785a0e1","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Overline-BlocksKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Overline-BlocksKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8b82d7ce4cca52d6762933bbe968fc75a785a0e1","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Overline-BlocksKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8b82d7ce4cca52d6762933bbe968fc75a785a0e1","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Overline-BlocksKit"}},{"name":"Overline","path":"Specs/Overline","sha":"55d748146cf74f1b30f09048a7cc95701669de5c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Overline?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Overline","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/55d748146cf74f1b30f09048a7cc95701669de5c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Overline?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/55d748146cf74f1b30f09048a7cc95701669de5c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Overline"}},{"name":"PAPasscode","path":"Specs/PAPasscode","sha":"3499784be6242f1d8d0a52d1dbc5d8f145bfc559","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PAPasscode?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PAPasscode","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3499784be6242f1d8d0a52d1dbc5d8f145bfc559","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PAPasscode?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3499784be6242f1d8d0a52d1dbc5d8f145bfc559","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PAPasscode"}},{"name":"PBWebViewController","path":"Specs/PBWebViewController","sha":"10b8ea8b740fb956532f2faf643c691a88531c40","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PBWebViewController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PBWebViewController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/10b8ea8b740fb956532f2faf643c691a88531c40","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PBWebViewController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/10b8ea8b740fb956532f2faf643c691a88531c40","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PBWebViewController"}},{"name":"PBYouTubeVideoViewController","path":"Specs/PBYouTubeVideoViewController","sha":"fdca480ecb2b86cf3111618ba1dba649c181c7bc","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PBYouTubeVideoViewController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PBYouTubeVideoViewController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fdca480ecb2b86cf3111618ba1dba649c181c7bc","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PBYouTubeVideoViewController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fdca480ecb2b86cf3111618ba1dba649c181c7bc","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PBYouTubeVideoViewController"}},{"name":"PDKeychainBindingsController","path":"Specs/PDKeychainBindingsController","sha":"5b206052627554d058ac45d57d9ccbd577599f45","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PDKeychainBindingsController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PDKeychainBindingsController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5b206052627554d058ac45d57d9ccbd577599f45","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PDKeychainBindingsController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5b206052627554d058ac45d57d9ccbd577599f45","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PDKeychainBindingsController"}},{"name":"PDTiledView","path":"Specs/PDTiledView","sha":"5750b23b96a873e333811c8f4f24e4408ef4a560","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PDTiledView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PDTiledView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5750b23b96a873e333811c8f4f24e4408ef4a560","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PDTiledView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5750b23b96a873e333811c8f4f24e4408ef4a560","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PDTiledView"}},{"name":"PDUtils","path":"Specs/PDUtils","sha":"40e65ce9fe627a17f7aa2ab334ab544b295a4176","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PDUtils?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PDUtils","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/40e65ce9fe627a17f7aa2ab334ab544b295a4176","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PDUtils?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/40e65ce9fe627a17f7aa2ab334ab544b295a4176","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PDUtils"}},{"name":"PHFArrayComparator","path":"Specs/PHFArrayComparator","sha":"00b29693e100e12fdb85cea957ef37a7334d3e59","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PHFArrayComparator?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PHFArrayComparator","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/00b29693e100e12fdb85cea957ef37a7334d3e59","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PHFArrayComparator?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/00b29693e100e12fdb85cea957ef37a7334d3e59","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PHFArrayComparator"}},{"name":"PHFComposeBarView","path":"Specs/PHFComposeBarView","sha":"aa9052a21d8eb24397d487a539729a4f87887dfc","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PHFComposeBarView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PHFComposeBarView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/aa9052a21d8eb24397d487a539729a4f87887dfc","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PHFComposeBarView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/aa9052a21d8eb24397d487a539729a4f87887dfc","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PHFComposeBarView"}},{"name":"PHFDelegateChain","path":"Specs/PHFDelegateChain","sha":"28d49baf69379abc456e5c37c89ed0533c8bad68","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PHFDelegateChain?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PHFDelegateChain","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/28d49baf69379abc456e5c37c89ed0533c8bad68","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PHFDelegateChain?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/28d49baf69379abc456e5c37c89ed0533c8bad68","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PHFDelegateChain"}},{"name":"PHFRefreshControl","path":"Specs/PHFRefreshControl","sha":"1b306dfebc182e189da946755b82b6088274b0aa","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PHFRefreshControl?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PHFRefreshControl","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1b306dfebc182e189da946755b82b6088274b0aa","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PHFRefreshControl?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1b306dfebc182e189da946755b82b6088274b0aa","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PHFRefreshControl"}},{"name":"PINView","path":"Specs/PINView","sha":"9c9032fc657511ef512d447215dba6b7e61640e1","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PINView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PINView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9c9032fc657511ef512d447215dba6b7e61640e1","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PINView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9c9032fc657511ef512d447215dba6b7e61640e1","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PINView"}},{"name":"PKRevealController","path":"Specs/PKRevealController","sha":"fbfd163a8cafe828d2afc62fad991242d5e99e3d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PKRevealController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PKRevealController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fbfd163a8cafe828d2afc62fad991242d5e99e3d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PKRevealController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fbfd163a8cafe828d2afc62fad991242d5e99e3d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PKRevealController"}},{"name":"PLWeakCompatibility","path":"Specs/PLWeakCompatibility","sha":"fc622afb8f4814213b5796d19208465f727a3628","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PLWeakCompatibility?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PLWeakCompatibility","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fc622afb8f4814213b5796d19208465f727a3628","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PLWeakCompatibility?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fc622afb8f4814213b5796d19208465f727a3628","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PLWeakCompatibility"}},{"name":"PMCalendar","path":"Specs/PMCalendar","sha":"947559adc329adec03ee5c7097452dfc6c968695","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PMCalendar?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PMCalendar","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/947559adc329adec03ee5c7097452dfc6c968695","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PMCalendar?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/947559adc329adec03ee5c7097452dfc6c968695","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PMCalendar"}},{"name":"PMPKVObservation","path":"Specs/PMPKVObservation","sha":"2642fb7a91b21665cd94d8af0fd32789e1dca174","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PMPKVObservation?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PMPKVObservation","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2642fb7a91b21665cd94d8af0fd32789e1dca174","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PMPKVObservation?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2642fb7a91b21665cd94d8af0fd32789e1dca174","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PMPKVObservation"}},{"name":"PNDUserDefaultsController","path":"Specs/PNDUserDefaultsController","sha":"cbccf0d325ef8e08b3363734ef6562a69cfff77d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PNDUserDefaultsController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PNDUserDefaultsController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/cbccf0d325ef8e08b3363734ef6562a69cfff77d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PNDUserDefaultsController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/cbccf0d325ef8e08b3363734ef6562a69cfff77d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PNDUserDefaultsController"}},{"name":"POViewFrameBuilder","path":"Specs/POViewFrameBuilder","sha":"4483e700993a1165b3e8d89bfa57a4f95bc51c6b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/POViewFrameBuilder?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/POViewFrameBuilder","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4483e700993a1165b3e8d89bfa57a4f95bc51c6b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/POViewFrameBuilder?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4483e700993a1165b3e8d89bfa57a4f95bc51c6b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/POViewFrameBuilder"}},{"name":"PPRevealSideViewController","path":"Specs/PPRevealSideViewController","sha":"de180076e1e0c0d8a296d4f56375ebfbf8bad9f8","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PPRevealSideViewController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PPRevealSideViewController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/de180076e1e0c0d8a296d4f56375ebfbf8bad9f8","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PPRevealSideViewController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/de180076e1e0c0d8a296d4f56375ebfbf8bad9f8","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PPRevealSideViewController"}},{"name":"PRTween","path":"Specs/PRTween","sha":"1f7ed5c89e1080e978ee8e290fbf3e674942d24b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PRTween?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PRTween","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1f7ed5c89e1080e978ee8e290fbf3e674942d24b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PRTween?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1f7ed5c89e1080e978ee8e290fbf3e674942d24b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PRTween"}},{"name":"PSAlertView","path":"Specs/PSAlertView","sha":"e5999087f01d61afacca2c1d6e2f8cb2cd1d3cc1","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PSAlertView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PSAlertView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e5999087f01d61afacca2c1d6e2f8cb2cd1d3cc1","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PSAlertView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e5999087f01d61afacca2c1d6e2f8cb2cd1d3cc1","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PSAlertView"}},{"name":"PSCollectionView","path":"Specs/PSCollectionView","sha":"b68c2e28ce7dd8ca00f11058b601242d522aecdc","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PSCollectionView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PSCollectionView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b68c2e28ce7dd8ca00f11058b601242d522aecdc","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PSCollectionView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b68c2e28ce7dd8ca00f11058b601242d522aecdc","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PSCollectionView"}},{"name":"PSMenuItem","path":"Specs/PSMenuItem","sha":"6f96183c0b2ea19c3a1904ccd3efb19bba512d55","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PSMenuItem?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PSMenuItem","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6f96183c0b2ea19c3a1904ccd3efb19bba512d55","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PSMenuItem?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6f96183c0b2ea19c3a1904ccd3efb19bba512d55","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PSMenuItem"}},{"name":"PSPushPopPressView","path":"Specs/PSPushPopPressView","sha":"1a4784513c9b70471f90f6b7c89a4859b84b36e5","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PSPushPopPressView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PSPushPopPressView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1a4784513c9b70471f90f6b7c89a4859b84b36e5","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PSPushPopPressView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1a4784513c9b70471f90f6b7c89a4859b84b36e5","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PSPushPopPressView"}},{"name":"PSStackedView","path":"Specs/PSStackedView","sha":"eb6fbc960ee9a195d0c92a9e499458b4d9efa66a","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PSStackedView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PSStackedView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/eb6fbc960ee9a195d0c92a9e499458b4d9efa66a","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PSStackedView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/eb6fbc960ee9a195d0c92a9e499458b4d9efa66a","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PSStackedView"}},{"name":"PSStoreButton","path":"Specs/PSStoreButton","sha":"5eecffa084d9e7a0bddc9b546e85b80f2690be74","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PSStoreButton?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PSStoreButton","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5eecffa084d9e7a0bddc9b546e85b80f2690be74","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PSStoreButton?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5eecffa084d9e7a0bddc9b546e85b80f2690be74","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PSStoreButton"}},{"name":"PSTCollectionView","path":"Specs/PSTCollectionView","sha":"9a62a8823ad45a28ebf2ba9644acd63b5d56438b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PSTCollectionView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PSTCollectionView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9a62a8823ad45a28ebf2ba9644acd63b5d56438b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PSTCollectionView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9a62a8823ad45a28ebf2ba9644acd63b5d56438b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PSTCollectionView"}},{"name":"PSUpdateApp","path":"Specs/PSUpdateApp","sha":"8881f46be800319191839a92c0158639b42bf183","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PSUpdateApp?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PSUpdateApp","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8881f46be800319191839a92c0158639b42bf183","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PSUpdateApp?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8881f46be800319191839a92c0158639b42bf183","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PSUpdateApp"}},{"name":"PTImageAlbumViewController","path":"Specs/PTImageAlbumViewController","sha":"b977c6d975075a97b0d6148ce460e03c55b74c7b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PTImageAlbumViewController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PTImageAlbumViewController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b977c6d975075a97b0d6148ce460e03c55b74c7b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PTImageAlbumViewController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b977c6d975075a97b0d6148ce460e03c55b74c7b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PTImageAlbumViewController"}},{"name":"PWLoadMoreTableFooter","path":"Specs/PWLoadMoreTableFooter","sha":"2ab51720e10f2dd32c4d5e59de3ee91d44ef6826","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PWLoadMoreTableFooter?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PWLoadMoreTableFooter","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2ab51720e10f2dd32c4d5e59de3ee91d44ef6826","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PWLoadMoreTableFooter?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2ab51720e10f2dd32c4d5e59de3ee91d44ef6826","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PWLoadMoreTableFooter"}},{"name":"PXListView","path":"Specs/PXListView","sha":"ac47b901e3f9592f8dc40678d8a943b2f8eff3ad","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PXListView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PXListView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ac47b901e3f9592f8dc40678d8a943b2f8eff3ad","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PXListView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ac47b901e3f9592f8dc40678d8a943b2f8eff3ad","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PXListView"}},{"name":"PXSourceList","path":"Specs/PXSourceList","sha":"dcadf04afcb131215da6afc6fd18df7905555cc2","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PXSourceList?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PXSourceList","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/dcadf04afcb131215da6afc6fd18df7905555cc2","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PXSourceList?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/dcadf04afcb131215da6afc6fd18df7905555cc2","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PXSourceList"}},{"name":"PagedFlowView","path":"Specs/PagedFlowView","sha":"fca3f05b0a7ec43658ea8de28ae66648df0f2cb3","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PagedFlowView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PagedFlowView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fca3f05b0a7ec43658ea8de28ae66648df0f2cb3","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PagedFlowView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fca3f05b0a7ec43658ea8de28ae66648df0f2cb3","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PagedFlowView"}},{"name":"PanicAR","path":"Specs/PanicAR","sha":"caeedfb54049436dc5e58d288db0b1c048f5f81f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PanicAR?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PanicAR","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/caeedfb54049436dc5e58d288db0b1c048f5f81f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PanicAR?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/caeedfb54049436dc5e58d288db0b1c048f5f81f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PanicAR"}},{"name":"PaperFold","path":"Specs/PaperFold","sha":"81730cc395f71e03da9cdcdf0c11d2b899b66808","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PaperFold?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PaperFold","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/81730cc395f71e03da9cdcdf0c11d2b899b66808","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PaperFold?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/81730cc395f71e03da9cdcdf0c11d2b899b66808","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PaperFold"}},{"name":"PaperFoldMenuController","path":"Specs/PaperFoldMenuController","sha":"996e91a8b6b4495a655d0a1de92ba1a13ec3a51d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PaperFoldMenuController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PaperFoldMenuController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/996e91a8b6b4495a655d0a1de92ba1a13ec3a51d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PaperFoldMenuController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/996e91a8b6b4495a655d0a1de92ba1a13ec3a51d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PaperFoldMenuController"}},{"name":"Parcoa","path":"Specs/Parcoa","sha":"6dc7b7c5b6bbf111710d970a7486d9b86206d42e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Parcoa?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Parcoa","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6dc7b7c5b6bbf111710d970a7486d9b86206d42e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Parcoa?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6dc7b7c5b6bbf111710d970a7486d9b86206d42e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Parcoa"}},{"name":"Parse","path":"Specs/Parse","sha":"75fa12d5f62fda84d7a16779ac21f8de36b1bf1c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Parse?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Parse","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/75fa12d5f62fda84d7a16779ac21f8de36b1bf1c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Parse?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/75fa12d5f62fda84d7a16779ac21f8de36b1bf1c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Parse"}},{"name":"ParseKit","path":"Specs/ParseKit","sha":"648bdf1ef6fa99cdc6f4513688bf45d219c79f22","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ParseKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ParseKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/648bdf1ef6fa99cdc6f4513688bf45d219c79f22","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ParseKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/648bdf1ef6fa99cdc6f4513688bf45d219c79f22","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ParseKit"}},{"name":"PassSlot","path":"Specs/PassSlot","sha":"c4da599c75a73301e61be944019145f46f4d9705","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PassSlot?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PassSlot","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c4da599c75a73301e61be944019145f46f4d9705","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PassSlot?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c4da599c75a73301e61be944019145f46f4d9705","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PassSlot"}},{"name":"PayPal-iOS-SDK","path":"Specs/PayPal-iOS-SDK","sha":"1f7e4e50395ffe41875ee2c9113e44c72a9eab3c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PayPal-iOS-SDK?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PayPal-iOS-SDK","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1f7e4e50395ffe41875ee2c9113e44c72a9eab3c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PayPal-iOS-SDK?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1f7e4e50395ffe41875ee2c9113e44c72a9eab3c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PayPal-iOS-SDK"}},{"name":"PeerTalk","path":"Specs/PeerTalk","sha":"4776bb5e030e2eb6ffbf4f096b9f21a81f414e62","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PeerTalk?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PeerTalk","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4776bb5e030e2eb6ffbf4f096b9f21a81f414e62","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PeerTalk?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4776bb5e030e2eb6ffbf4f096b9f21a81f414e62","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PeerTalk"}},{"name":"Pensive","path":"Specs/Pensive","sha":"5d4ac84a06a1f21fcec398bd856be2d1967343e1","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Pensive?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Pensive","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5d4ac84a06a1f21fcec398bd856be2d1967343e1","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Pensive?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5d4ac84a06a1f21fcec398bd856be2d1967343e1","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Pensive"}},{"name":"PgMdAtom","path":"Specs/PgMdAtom","sha":"f7d0225279e522ee4739ff06fb76722be8364f31","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PgMdAtom?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PgMdAtom","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f7d0225279e522ee4739ff06fb76722be8364f31","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PgMdAtom?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f7d0225279e522ee4739ff06fb76722be8364f31","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PgMdAtom"}},{"name":"PhoneNumberFormatter","path":"Specs/PhoneNumberFormatter","sha":"373f79709202310401d976cb72af25dd0b11cddb","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PhoneNumberFormatter?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PhoneNumberFormatter","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/373f79709202310401d976cb72af25dd0b11cddb","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PhoneNumberFormatter?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/373f79709202310401d976cb72af25dd0b11cddb","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PhoneNumberFormatter"}},{"name":"PinEntry","path":"Specs/PinEntry","sha":"07fa189da102efe5e03826b7d0aeb3fae644bce1","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PinEntry?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PinEntry","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/07fa189da102efe5e03826b7d0aeb3fae644bce1","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PinEntry?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/07fa189da102efe5e03826b7d0aeb3fae644bce1","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PinEntry"}},{"name":"PivotalCoreKit","path":"Specs/PivotalCoreKit","sha":"3286c5cb25ed68dc67264173ad86e2d483dfe222","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PivotalCoreKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PivotalCoreKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3286c5cb25ed68dc67264173ad86e2d483dfe222","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PivotalCoreKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3286c5cb25ed68dc67264173ad86e2d483dfe222","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PivotalCoreKit"}},{"name":"PlayHavenSDK","path":"Specs/PlayHavenSDK","sha":"1687a131c19407c1fbe8885a2bf92cd37a4127dc","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PlayHavenSDK?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PlayHavenSDK","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1687a131c19407c1fbe8885a2bf92cd37a4127dc","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PlayHavenSDK?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1687a131c19407c1fbe8885a2bf92cd37a4127dc","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PlayHavenSDK"}},{"name":"PocketAPI","path":"Specs/PocketAPI","sha":"8bb3f23e1c3b9ba92e5c58c375a3e5926675a28d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PocketAPI?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PocketAPI","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8bb3f23e1c3b9ba92e5c58c375a3e5926675a28d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PocketAPI?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8bb3f23e1c3b9ba92e5c58c375a3e5926675a28d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PocketAPI"}},{"name":"PocketChangeSDK","path":"Specs/PocketChangeSDK","sha":"e6bd46f79ddd5dd034eb81649f78c98f738c60f3","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PocketChangeSDK?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PocketChangeSDK","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e6bd46f79ddd5dd034eb81649f78c98f738c60f3","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PocketChangeSDK?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e6bd46f79ddd5dd034eb81649f78c98f738c60f3","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PocketChangeSDK"}},{"name":"PodioKit","path":"Specs/PodioKit","sha":"b8dd721c40d3e5a4b51bd25381103f4a621755de","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PodioKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PodioKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b8dd721c40d3e5a4b51bd25381103f4a621755de","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PodioKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b8dd721c40d3e5a4b51bd25381103f4a621755de","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PodioKit"}},{"name":"PonyDebugger","path":"Specs/PonyDebugger","sha":"50fe95ec81d2b959f61b37bcae7b59fec6b6fd6b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PonyDebugger?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PonyDebugger","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/50fe95ec81d2b959f61b37bcae7b59fec6b6fd6b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PonyDebugger?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/50fe95ec81d2b959f61b37bcae7b59fec6b6fd6b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PonyDebugger"}},{"name":"PopoverView","path":"Specs/PopoverView","sha":"54dad5296b59997a3e01284cb4ea4dffce807496","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PopoverView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PopoverView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/54dad5296b59997a3e01284cb4ea4dffce807496","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PopoverView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/54dad5296b59997a3e01284cb4ea4dffce807496","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PopoverView"}},{"name":"Posit","path":"Specs/Posit","sha":"d271ccc33647697b5c5e80361e7f076a6266fdac","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Posit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Posit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d271ccc33647697b5c5e80361e7f076a6266fdac","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Posit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d271ccc33647697b5c5e80361e7f076a6266fdac","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Posit"}},{"name":"PostageKit","path":"Specs/PostageKit","sha":"4a410dc19d55af58e871f5fc39b5878e31d5f31f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PostageKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PostageKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4a410dc19d55af58e871f5fc39b5878e31d5f31f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PostageKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4a410dc19d55af58e871f5fc39b5878e31d5f31f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PostageKit"}},{"name":"PosterousObjC","path":"Specs/PosterousObjC","sha":"2baaba2235ea1c7c19c6b2ee3a0c9e0ad30268a3","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PosterousObjC?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PosterousObjC","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2baaba2235ea1c7c19c6b2ee3a0c9e0ad30268a3","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PosterousObjC?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2baaba2235ea1c7c19c6b2ee3a0c9e0ad30268a3","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PosterousObjC"}},{"name":"PrettyKit","path":"Specs/PrettyKit","sha":"11b709146a783d1e98d95c719ab105a8e56da7d2","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PrettyKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PrettyKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/11b709146a783d1e98d95c719ab105a8e56da7d2","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PrettyKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/11b709146a783d1e98d95c719ab105a8e56da7d2","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PrettyKit"}},{"name":"ProtobufObjC","path":"Specs/ProtobufObjC","sha":"908bc1c173bd04c001018834ee5b823e753e9670","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ProtobufObjC?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ProtobufObjC","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/908bc1c173bd04c001018834ee5b823e753e9670","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ProtobufObjC?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/908bc1c173bd04c001018834ee5b823e753e9670","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ProtobufObjC"}},{"name":"PublicAutomation","path":"Specs/PublicAutomation","sha":"e5a2768bb4da985e5110ddaa16f83625587b0bf5","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PublicAutomation?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PublicAutomation","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e5a2768bb4da985e5110ddaa16f83625587b0bf5","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PublicAutomation?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e5a2768bb4da985e5110ddaa16f83625587b0bf5","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PublicAutomation"}},{"name":"PullToRefresh","path":"Specs/PullToRefresh","sha":"2965b08078b5e88780f8fb3e4ecdfe97ebfa1952","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PullToRefresh?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PullToRefresh","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2965b08078b5e88780f8fb3e4ecdfe97ebfa1952","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PullToRefresh?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2965b08078b5e88780f8fb3e4ecdfe97ebfa1952","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PullToRefresh"}},{"name":"PullToRefreshView","path":"Specs/PullToRefreshView","sha":"d88369ecf1a3ef2ecef7018c13a9bf4bfe407d2b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PullToRefreshView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PullToRefreshView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d88369ecf1a3ef2ecef7018c13a9bf4bfe407d2b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PullToRefreshView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d88369ecf1a3ef2ecef7018c13a9bf4bfe407d2b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PullToRefreshView"}},{"name":"PunchScrollView","path":"Specs/PunchScrollView","sha":"915ff3831e2bcaa53d68b8ead56e05487c90d2e6","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PunchScrollView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PunchScrollView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/915ff3831e2bcaa53d68b8ead56e05487c90d2e6","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/PunchScrollView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/915ff3831e2bcaa53d68b8ead56e05487c90d2e6","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/PunchScrollView"}},{"name":"QBImagePickerController","path":"Specs/QBImagePickerController","sha":"6252bfcd41b248e154b237c8d149854d25a76322","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/QBImagePickerController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/QBImagePickerController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6252bfcd41b248e154b237c8d149854d25a76322","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/QBImagePickerController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6252bfcd41b248e154b237c8d149854d25a76322","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/QBImagePickerController"}},{"name":"QBKOverlayMenuView","path":"Specs/QBKOverlayMenuView","sha":"4489fa353d735b84937f59921c3cd289e88ff5b2","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/QBKOverlayMenuView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/QBKOverlayMenuView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4489fa353d735b84937f59921c3cd289e88ff5b2","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/QBKOverlayMenuView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4489fa353d735b84937f59921c3cd289e88ff5b2","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/QBKOverlayMenuView"}},{"name":"QBPopupMenu","path":"Specs/QBPopupMenu","sha":"dc3dd78b540fab1fff5bb57e69ce9c1d8ab073b3","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/QBPopupMenu?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/QBPopupMenu","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/dc3dd78b540fab1fff5bb57e69ce9c1d8ab073b3","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/QBPopupMenu?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/dc3dd78b540fab1fff5bb57e69ce9c1d8ab073b3","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/QBPopupMenu"}},{"name":"QNDAnimations","path":"Specs/QNDAnimations","sha":"92e1560b01dbf3da0b931c7b7565d41d6cd81e33","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/QNDAnimations?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/QNDAnimations","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/92e1560b01dbf3da0b931c7b7565d41d6cd81e33","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/QNDAnimations?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/92e1560b01dbf3da0b931c7b7565d41d6cd81e33","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/QNDAnimations"}},{"name":"QUnit.m","path":"Specs/QUnit.m","sha":"c73bfd2bccf0ba79d90631270ca5c3fe2a026fcd","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/QUnit.m?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/QUnit.m","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c73bfd2bccf0ba79d90631270ca5c3fe2a026fcd","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/QUnit.m?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c73bfd2bccf0ba79d90631270ca5c3fe2a026fcd","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/QUnit.m"}},{"name":"QuadCurveMenu","path":"Specs/QuadCurveMenu","sha":"ba8f0532407e490aae1d716da9e1436f3b26eec0","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/QuadCurveMenu?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/QuadCurveMenu","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ba8f0532407e490aae1d716da9e1436f3b26eec0","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/QuadCurveMenu?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ba8f0532407e490aae1d716da9e1436f3b26eec0","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/QuadCurveMenu"}},{"name":"Quantcast-Measure-iOS4","path":"Specs/Quantcast-Measure-iOS4","sha":"1338ab51bd683865b49f2937dde8f18e406a5e74","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Quantcast-Measure-iOS4?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Quantcast-Measure-iOS4","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1338ab51bd683865b49f2937dde8f18e406a5e74","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Quantcast-Measure-iOS4?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1338ab51bd683865b49f2937dde8f18e406a5e74","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Quantcast-Measure-iOS4"}},{"name":"Quantcast-Measure","path":"Specs/Quantcast-Measure","sha":"c7c7aa366b25e5e91ad2821823b19c20edf446e0","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Quantcast-Measure?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Quantcast-Measure","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c7c7aa366b25e5e91ad2821823b19c20edf446e0","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Quantcast-Measure?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c7c7aa366b25e5e91ad2821823b19c20edf446e0","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Quantcast-Measure"}},{"name":"Quayboard","path":"Specs/Quayboard","sha":"2d378cb2f6b242e6c99d7fe43e475c0870eed7a2","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Quayboard?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Quayboard","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2d378cb2f6b242e6c99d7fe43e475c0870eed7a2","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Quayboard?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2d378cb2f6b242e6c99d7fe43e475c0870eed7a2","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Quayboard"}},{"name":"QuickDialog","path":"Specs/QuickDialog","sha":"a8382a2717180b1c7ed51f783f8e5654a8f7054c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/QuickDialog?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/QuickDialog","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a8382a2717180b1c7ed51f783f8e5654a8f7054c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/QuickDialog?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a8382a2717180b1c7ed51f783f8e5654a8f7054c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/QuickDialog"}},{"name":"QuincyKit","path":"Specs/QuincyKit","sha":"d70bfecb556d1ac132f043f9fcf2ecdf6e9c3a1d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/QuincyKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/QuincyKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d70bfecb556d1ac132f043f9fcf2ecdf6e9c3a1d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/QuincyKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d70bfecb556d1ac132f043f9fcf2ecdf6e9c3a1d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/QuincyKit"}},{"name":"RAPageViewController","path":"Specs/RAPageViewController","sha":"b468f14b0fa47aa8c653b263458994aa90056f78","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RAPageViewController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RAPageViewController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b468f14b0fa47aa8c653b263458994aa90056f78","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RAPageViewController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b468f14b0fa47aa8c653b263458994aa90056f78","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RAPageViewController"}},{"name":"RBStoryboardLink","path":"Specs/RBStoryboardLink","sha":"ba45122b3b6416ec1f30aa69781ed63eb6124ab1","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RBStoryboardLink?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RBStoryboardLink","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ba45122b3b6416ec1f30aa69781ed63eb6124ab1","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RBStoryboardLink?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ba45122b3b6416ec1f30aa69781ed63eb6124ab1","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RBStoryboardLink"}},{"name":"RCLocationManager","path":"Specs/RCLocationManager","sha":"e168f8a7ccfeddda2bf6edc4ce3586731ebaacda","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RCLocationManager?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RCLocationManager","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e168f8a7ccfeddda2bf6edc4ce3586731ebaacda","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RCLocationManager?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e168f8a7ccfeddda2bf6edc4ce3586731ebaacda","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RCLocationManager"}},{"name":"RCPopoverView","path":"Specs/RCPopoverView","sha":"8fffb312a5fca152261ff485c06e79d17c620085","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RCPopoverView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RCPopoverView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8fffb312a5fca152261ff485c06e79d17c620085","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RCPopoverView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8fffb312a5fca152261ff485c06e79d17c620085","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RCPopoverView"}},{"name":"RDActionSheet","path":"Specs/RDActionSheet","sha":"3ad3f182c5015ad197f58c6432e86b596168e7c2","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RDActionSheet?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RDActionSheet","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3ad3f182c5015ad197f58c6432e86b596168e7c2","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RDActionSheet?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3ad3f182c5015ad197f58c6432e86b596168e7c2","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RDActionSheet"}},{"name":"REActivityViewController","path":"Specs/REActivityViewController","sha":"bfb3aec1a0c78bf1f861cdec793eddcfe4bb174d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/REActivityViewController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/REActivityViewController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/bfb3aec1a0c78bf1f861cdec793eddcfe4bb174d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/REActivityViewController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/bfb3aec1a0c78bf1f861cdec793eddcfe4bb174d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/REActivityViewController"}},{"name":"REComposeViewController","path":"Specs/REComposeViewController","sha":"7a5c42c5bc2683b8317314e281ece5f104dd3077","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/REComposeViewController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/REComposeViewController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7a5c42c5bc2683b8317314e281ece5f104dd3077","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/REComposeViewController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7a5c42c5bc2683b8317314e281ece5f104dd3077","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/REComposeViewController"}},{"name":"RECurtainViewController","path":"Specs/RECurtainViewController","sha":"2c43cdea2d20bbc2dac4c41750619b3b52bcf43c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RECurtainViewController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RECurtainViewController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2c43cdea2d20bbc2dac4c41750619b3b52bcf43c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RECurtainViewController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2c43cdea2d20bbc2dac4c41750619b3b52bcf43c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RECurtainViewController"}},{"name":"REDebugClient","path":"Specs/REDebugClient","sha":"8a2cd6e2c63e4a0926038cd1dd5c5bc972ce1971","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/REDebugClient?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/REDebugClient","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8a2cd6e2c63e4a0926038cd1dd5c5bc972ce1971","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/REDebugClient?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8a2cd6e2c63e4a0926038cd1dd5c5bc972ce1971","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/REDebugClient"}},{"name":"REFormattedNumberField","path":"Specs/REFormattedNumberField","sha":"a142b78f906d6baeba4c38d448b3cfd206f743fc","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/REFormattedNumberField?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/REFormattedNumberField","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a142b78f906d6baeba4c38d448b3cfd206f743fc","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/REFormattedNumberField?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a142b78f906d6baeba4c38d448b3cfd206f743fc","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/REFormattedNumberField"}},{"name":"REImageSprite","path":"Specs/REImageSprite","sha":"168fb078e8141aace693d892e4dc560a07e17265","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/REImageSprite?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/REImageSprite","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/168fb078e8141aace693d892e4dc560a07e17265","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/REImageSprite?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/168fb078e8141aace693d892e4dc560a07e17265","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/REImageSprite"}},{"name":"REKit","path":"Specs/REKit","sha":"85a905653a50b606195afb1e19f71bc1393fc103","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/REKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/REKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/85a905653a50b606195afb1e19f71bc1393fc103","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/REKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/85a905653a50b606195afb1e19f71bc1393fc103","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/REKit"}},{"name":"REMarkerClusterer","path":"Specs/REMarkerClusterer","sha":"cb76aecb98cc524769240c7c8a3437ae9c7584ec","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/REMarkerClusterer?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/REMarkerClusterer","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/cb76aecb98cc524769240c7c8a3437ae9c7584ec","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/REMarkerClusterer?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/cb76aecb98cc524769240c7c8a3437ae9c7584ec","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/REMarkerClusterer"}},{"name":"REMenu","path":"Specs/REMenu","sha":"9ea6930d5e1a2a2196cede046344882ffdaf37ec","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/REMenu?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/REMenu","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9ea6930d5e1a2a2196cede046344882ffdaf37ec","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/REMenu?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9ea6930d5e1a2a2196cede046344882ffdaf37ec","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/REMenu"}},{"name":"REPhotoCollectionController","path":"Specs/REPhotoCollectionController","sha":"552051817667584db80e46bf8b7464d9eb569324","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/REPhotoCollectionController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/REPhotoCollectionController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/552051817667584db80e46bf8b7464d9eb569324","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/REPhotoCollectionController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/552051817667584db80e46bf8b7464d9eb569324","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/REPhotoCollectionController"}},{"name":"RESTMagic","path":"Specs/RESTMagic","sha":"621c754cb4396d7cd1ac0e80a8bb5b67ad0ffbbd","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RESTMagic?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RESTMagic","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/621c754cb4396d7cd1ac0e80a8bb5b67ad0ffbbd","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RESTMagic?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/621c754cb4396d7cd1ac0e80a8bb5b67ad0ffbbd","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RESTMagic"}},{"name":"RESwitch","path":"Specs/RESwitch","sha":"60ad5075650f6ea7d5745018d96ccc6a7797b818","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RESwitch?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RESwitch","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/60ad5075650f6ea7d5745018d96ccc6a7797b818","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RESwitch?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/60ad5075650f6ea7d5745018d96ccc6a7797b818","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RESwitch"}},{"name":"RETrimControl","path":"Specs/RETrimControl","sha":"5824ebf4ddcfb9b8e6ff65dcef0e01817e73a4cf","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RETrimControl?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RETrimControl","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5824ebf4ddcfb9b8e6ff65dcef0e01817e73a4cf","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RETrimControl?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5824ebf4ddcfb9b8e6ff65dcef0e01817e73a4cf","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RETrimControl"}},{"name":"REVClusterMap","path":"Specs/REVClusterMap","sha":"4048d7439c2eb128e05ba4eb71fe7a708d328f99","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/REVClusterMap?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/REVClusterMap","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4048d7439c2eb128e05ba4eb71fe7a708d328f99","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/REVClusterMap?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4048d7439c2eb128e05ba4eb71fe7a708d328f99","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/REVClusterMap"}},{"name":"RFKeychain","path":"Specs/RFKeychain","sha":"5ea0e816a0f1b362d9bdf6381369854362a12d5d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RFKeychain?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RFKeychain","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5ea0e816a0f1b362d9bdf6381369854362a12d5d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RFKeychain?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5ea0e816a0f1b362d9bdf6381369854362a12d5d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RFKeychain"}},{"name":"RFOverlayScrollView","path":"Specs/RFOverlayScrollView","sha":"7aaaf1c56a7505bc2a27819ea99ea9345498e45c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RFOverlayScrollView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RFOverlayScrollView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7aaaf1c56a7505bc2a27819ea99ea9345498e45c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RFOverlayScrollView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7aaaf1c56a7505bc2a27819ea99ea9345498e45c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RFOverlayScrollView"}},{"name":"RFQuiltLayout","path":"Specs/RFQuiltLayout","sha":"3a0f60a48c633e56491296cb52dbce8c1d6fe5d7","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RFQuiltLayout?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RFQuiltLayout","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3a0f60a48c633e56491296cb52dbce8c1d6fe5d7","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RFQuiltLayout?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3a0f60a48c633e56491296cb52dbce8c1d6fe5d7","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RFQuiltLayout"}},{"name":"RHAdditions","path":"Specs/RHAdditions","sha":"4b5c5bd7d10d7da149c58e3315bc4e0edd310e3b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RHAdditions?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RHAdditions","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4b5c5bd7d10d7da149c58e3315bc4e0edd310e3b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RHAdditions?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4b5c5bd7d10d7da149c58e3315bc4e0edd310e3b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RHAdditions"}},{"name":"RHAddressBook","path":"Specs/RHAddressBook","sha":"99a50e632a439082c6bb5f505fd013d41e1943ad","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RHAddressBook?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RHAddressBook","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/99a50e632a439082c6bb5f505fd013d41e1943ad","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RHAddressBook?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/99a50e632a439082c6bb5f505fd013d41e1943ad","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RHAddressBook"}},{"name":"RHPreferences","path":"Specs/RHPreferences","sha":"948c18b9e463d74729576930120d7755ef2e7cdd","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RHPreferences?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RHPreferences","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/948c18b9e463d74729576930120d7755ef2e7cdd","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RHPreferences?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/948c18b9e463d74729576930120d7755ef2e7cdd","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RHPreferences"}},{"name":"RHTableViewProvider","path":"Specs/RHTableViewProvider","sha":"201d8627ce65e53418da55785d1cf0f445c2dbea","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RHTableViewProvider?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RHTableViewProvider","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/201d8627ce65e53418da55785d1cf0f445c2dbea","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RHTableViewProvider?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/201d8627ce65e53418da55785d1cf0f445c2dbea","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RHTableViewProvider"}},{"name":"RKKiwiMatchers","path":"Specs/RKKiwiMatchers","sha":"c71422f2baa60196fbbd1814b543b5719539040d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RKKiwiMatchers?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RKKiwiMatchers","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c71422f2baa60196fbbd1814b543b5719539040d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RKKiwiMatchers?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c71422f2baa60196fbbd1814b543b5719539040d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RKKiwiMatchers"}},{"name":"RLPageControl","path":"Specs/RLPageControl","sha":"05fd46d9821af8157b46009e0523225feca8e8a9","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RLPageControl?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RLPageControl","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/05fd46d9821af8157b46009e0523225feca8e8a9","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RLPageControl?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/05fd46d9821af8157b46009e0523225feca8e8a9","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RLPageControl"}},{"name":"RMErrorRecoveryAttempter","path":"Specs/RMErrorRecoveryAttempter","sha":"4512dcfafa9adfd2857eaaa997e37367df08ea7b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RMErrorRecoveryAttempter?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RMErrorRecoveryAttempter","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4512dcfafa9adfd2857eaaa997e37367df08ea7b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RMErrorRecoveryAttempter?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4512dcfafa9adfd2857eaaa997e37367df08ea7b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RMErrorRecoveryAttempter"}},{"name":"RMShapedImageView","path":"Specs/RMShapedImageView","sha":"6e583a478d6b02ea334c78027a737ea67e2d62d1","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RMShapedImageView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RMShapedImageView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6e583a478d6b02ea334c78027a737ea67e2d62d1","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RMShapedImageView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6e583a478d6b02ea334c78027a737ea67e2d62d1","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RMShapedImageView"}},{"name":"RNCachingURLProtocol","path":"Specs/RNCachingURLProtocol","sha":"185e5709210c4db62ac72e89d45a446b4fb6aee3","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RNCachingURLProtocol?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RNCachingURLProtocol","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/185e5709210c4db62ac72e89d45a446b4fb6aee3","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RNCachingURLProtocol?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/185e5709210c4db62ac72e89d45a446b4fb6aee3","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RNCachingURLProtocol"}},{"name":"RNCryptor","path":"Specs/RNCryptor","sha":"9f1f48855660036d0f8fbe51d4ce1c952aded3ad","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RNCryptor?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RNCryptor","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9f1f48855660036d0f8fbe51d4ce1c952aded3ad","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RNCryptor?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9f1f48855660036d0f8fbe51d4ce1c952aded3ad","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RNCryptor"}},{"name":"RNTextStatistics","path":"Specs/RNTextStatistics","sha":"3ec91fd10f5af3f6224ab89873b133b073b6f15d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RNTextStatistics?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RNTextStatistics","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3ec91fd10f5af3f6224ab89873b133b073b6f15d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RNTextStatistics?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3ec91fd10f5af3f6224ab89873b133b073b6f15d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RNTextStatistics"}},{"name":"RNThemeManager","path":"Specs/RNThemeManager","sha":"9482453bf2e2d5e522a76a54ceec5f5e3c65ad34","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RNThemeManager?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RNThemeManager","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9482453bf2e2d5e522a76a54ceec5f5e3c65ad34","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RNThemeManager?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9482453bf2e2d5e522a76a54ceec5f5e3c65ad34","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RNThemeManager"}},{"name":"RSActionSheet","path":"Specs/RSActionSheet","sha":"787559d017012180d4983ad3596699a91e0c7779","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RSActionSheet?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RSActionSheet","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/787559d017012180d4983ad3596699a91e0c7779","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RSActionSheet?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/787559d017012180d4983ad3596699a91e0c7779","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RSActionSheet"}},{"name":"RSMenuController","path":"Specs/RSMenuController","sha":"701b0ed72afb1c33def63d317bd7dc3d2124e387","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RSMenuController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RSMenuController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/701b0ed72afb1c33def63d317bd7dc3d2124e387","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RSMenuController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/701b0ed72afb1c33def63d317bd7dc3d2124e387","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RSMenuController"}},{"name":"RSMenuView","path":"Specs/RSMenuView","sha":"f168fb74ba3eb00e24f59680dc0afdb78262bc9a","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RSMenuView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RSMenuView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f168fb74ba3eb00e24f59680dc0afdb78262bc9a","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RSMenuView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f168fb74ba3eb00e24f59680dc0afdb78262bc9a","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RSMenuView"}},{"name":"RSOAuthEngine","path":"Specs/RSOAuthEngine","sha":"01aa78205be538c75d9f864b13aec7cb4b21846d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RSOAuthEngine?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RSOAuthEngine","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/01aa78205be538c75d9f864b13aec7cb4b21846d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RSOAuthEngine?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/01aa78205be538c75d9f864b13aec7cb4b21846d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RSOAuthEngine"}},{"name":"RSSecrets","path":"Specs/RSSecrets","sha":"8b1dca6cf08689a9d80f4922c407a0d2192cdc84","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RSSecrets?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RSSecrets","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8b1dca6cf08689a9d80f4922c407a0d2192cdc84","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RSSecrets?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8b1dca6cf08689a9d80f4922c407a0d2192cdc84","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RSSecrets"}},{"name":"RTLabel","path":"Specs/RTLabel","sha":"574faee0ab5369997f8f0f955777dee2863a567c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RTLabel?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RTLabel","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/574faee0ab5369997f8f0f955777dee2863a567c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RTLabel?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/574faee0ab5369997f8f0f955777dee2863a567c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RTLabel"}},{"name":"RXCollections","path":"Specs/RXCollections","sha":"581ec71b5cd077edf8dc320ec92fef51cd6adb7a","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RXCollections?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RXCollections","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/581ec71b5cd077edf8dc320ec92fef51cd6adb7a","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RXCollections?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/581ec71b5cd077edf8dc320ec92fef51cd6adb7a","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RXCollections"}},{"name":"RZCollectionList","path":"Specs/RZCollectionList","sha":"6df1a1d94d94dde4932ef9f1959bf2d698f76f94","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RZCollectionList?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RZCollectionList","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6df1a1d94d94dde4932ef9f1959bf2d698f76f94","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RZCollectionList?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6df1a1d94d94dde4932ef9f1959bf2d698f76f94","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RZCollectionList"}},{"name":"RangeSlider","path":"Specs/RangeSlider","sha":"e674c275acb2de1b5ba1577679c5c7b6ef16a0aa","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RangeSlider?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RangeSlider","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e674c275acb2de1b5ba1577679c5c7b6ef16a0aa","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RangeSlider?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e674c275acb2de1b5ba1577679c5c7b6ef16a0aa","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RangeSlider"}},{"name":"RaptureXML","path":"Specs/RaptureXML","sha":"b0fcff777ec25efc30699a743124c04b46260361","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RaptureXML?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RaptureXML","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b0fcff777ec25efc30699a743124c04b46260361","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RaptureXML?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b0fcff777ec25efc30699a743124c04b46260361","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RaptureXML"}},{"name":"RaptureXML@siuying","path":"Specs/RaptureXML@siuying","sha":"c0786ebdf2b2937e8b1b58cdbe96555f279c239f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RaptureXML@siuying?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RaptureXML@siuying","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c0786ebdf2b2937e8b1b58cdbe96555f279c239f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RaptureXML@siuying?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c0786ebdf2b2937e8b1b58cdbe96555f279c239f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RaptureXML@siuying"}},{"name":"RateStars","path":"Specs/RateStars","sha":"cc33d8a8004de12ae3350c2c09047f6408fbef56","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RateStars?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RateStars","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/cc33d8a8004de12ae3350c2c09047f6408fbef56","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RateStars?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/cc33d8a8004de12ae3350c2c09047f6408fbef56","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RateStars"}},{"name":"Raven","path":"Specs/Raven","sha":"3c21088b5d814de8272b38fe2a383dc9bb776a17","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Raven?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Raven","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3c21088b5d814de8272b38fe2a383dc9bb776a17","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Raven?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3c21088b5d814de8272b38fe2a383dc9bb776a17","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Raven"}},{"name":"Reachability","path":"Specs/Reachability","sha":"d3e347a7c5719945dec37db6994617fd9f02bd9e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Reachability?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Reachability","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d3e347a7c5719945dec37db6994617fd9f02bd9e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Reachability?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d3e347a7c5719945dec37db6994617fd9f02bd9e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Reachability"}},{"name":"ReactiveCocoa","path":"Specs/ReactiveCocoa","sha":"792c635423bb0b304fe58030f7c5747aad296a24","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ReactiveCocoa?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ReactiveCocoa","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/792c635423bb0b304fe58030f7c5747aad296a24","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ReactiveCocoa?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/792c635423bb0b304fe58030f7c5747aad296a24","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ReactiveCocoa"}},{"name":"ReactiveCocoaLayout","path":"Specs/ReactiveCocoaLayout","sha":"5f9a78bc0d5bac2eedcb2f617d533e4d717c4cd9","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ReactiveCocoaLayout?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ReactiveCocoaLayout","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5f9a78bc0d5bac2eedcb2f617d533e4d717c4cd9","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ReactiveCocoaLayout?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5f9a78bc0d5bac2eedcb2f617d533e4d717c4cd9","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ReactiveCocoaLayout"}},{"name":"Rebel","path":"Specs/Rebel","sha":"bb4e7e247f8188bab31f886b455a357101c684f0","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Rebel?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Rebel","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/bb4e7e247f8188bab31f886b455a357101c684f0","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Rebel?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/bb4e7e247f8188bab31f886b455a357101c684f0","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Rebel"}},{"name":"RedGreen","path":"Specs/RedGreen","sha":"7685c78360bbddebf9be7ef4b47d91fd27eb1d1a","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RedGreen?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RedGreen","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7685c78360bbddebf9be7ef4b47d91fd27eb1d1a","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RedGreen?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7685c78360bbddebf9be7ef4b47d91fd27eb1d1a","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RedGreen"}},{"name":"RegexKitLite","path":"Specs/RegexKitLite","sha":"2cde5664d7f02bc69ef01d78488142ddd9a98573","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RegexKitLite?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RegexKitLite","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2cde5664d7f02bc69ef01d78488142ddd9a98573","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RegexKitLite?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2cde5664d7f02bc69ef01d78488142ddd9a98573","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RegexKitLite"}},{"name":"RemoteConfig","path":"Specs/RemoteConfig","sha":"407003dabdc15c61f963af8f08754704b2e48953","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RemoteConfig?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RemoteConfig","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/407003dabdc15c61f963af8f08754704b2e48953","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RemoteConfig?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/407003dabdc15c61f963af8f08754704b2e48953","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RemoteConfig"}},{"name":"RestKit","path":"Specs/RestKit","sha":"cd595b3dc56e903f4f835530727c0573b85ad1c4","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RestKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RestKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/cd595b3dc56e903f4f835530727c0573b85ad1c4","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RestKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/cd595b3dc56e903f4f835530727c0573b85ad1c4","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RestKit"}},{"name":"RevMobSDK","path":"Specs/RevMobSDK","sha":"f439bbfa1e1b0cdb9f4a392850284563ea6009e2","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RevMobSDK?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RevMobSDK","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f439bbfa1e1b0cdb9f4a392850284563ea6009e2","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RevMobSDK?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f439bbfa1e1b0cdb9f4a392850284563ea6009e2","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RevMobSDK"}},{"name":"Rivet","path":"Specs/Rivet","sha":"662fca37343df7e21ea1caae1a1c7be4515efbb0","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Rivet?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Rivet","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/662fca37343df7e21ea1caae1a1c7be4515efbb0","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Rivet?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/662fca37343df7e21ea1caae1a1c7be4515efbb0","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Rivet"}},{"name":"RouletteWheelCollectionViewLayout","path":"Specs/RouletteWheelCollectionViewLayout","sha":"4227bfb2033266a002235ec3330e6ed510f927a2","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RouletteWheelCollectionViewLayout?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RouletteWheelCollectionViewLayout","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4227bfb2033266a002235ec3330e6ed510f927a2","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RouletteWheelCollectionViewLayout?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4227bfb2033266a002235ec3330e6ed510f927a2","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RouletteWheelCollectionViewLayout"}},{"name":"Routable","path":"Specs/Routable","sha":"07af7475d601500143889fd502c64b09ef7ff0da","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Routable?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Routable","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/07af7475d601500143889fd502c64b09ef7ff0da","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Routable?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/07af7475d601500143889fd502c64b09ef7ff0da","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Routable"}},{"name":"RoutingHTTPServer","path":"Specs/RoutingHTTPServer","sha":"4c92a4d239a22850b622fee68e73540257aa2504","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RoutingHTTPServer?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RoutingHTTPServer","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4c92a4d239a22850b622fee68e73540257aa2504","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RoutingHTTPServer?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4c92a4d239a22850b622fee68e73540257aa2504","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RoutingHTTPServer"}},{"name":"RubyCocoaString","path":"Specs/RubyCocoaString","sha":"81098995d21658bc26b00ade6f5e1b55c6620803","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RubyCocoaString?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RubyCocoaString","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/81098995d21658bc26b00ade6f5e1b55c6620803","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/RubyCocoaString?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/81098995d21658bc26b00ade6f5e1b55c6620803","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/RubyCocoaString"}},{"name":"SASlideMenu","path":"Specs/SASlideMenu","sha":"106ca6a91f4bb49673b1c32cb3bd594a6a12c834","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SASlideMenu?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SASlideMenu","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/106ca6a91f4bb49673b1c32cb3bd594a6a12c834","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SASlideMenu?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/106ca6a91f4bb49673b1c32cb3bd594a6a12c834","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SASlideMenu"}},{"name":"SAXyOX","path":"Specs/SAXyOX","sha":"86f3381b59c39b8148ead9315c15748e8ea9f4aa","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SAXyOX?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SAXyOX","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/86f3381b59c39b8148ead9315c15748e8ea9f4aa","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SAXyOX?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/86f3381b59c39b8148ead9315c15748e8ea9f4aa","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SAXyOX"}},{"name":"SBJson","path":"Specs/SBJson","sha":"e4f61a6d71f7e602c17f91f02988a3e8e5dbaf82","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SBJson?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SBJson","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e4f61a6d71f7e602c17f91f02988a3e8e5dbaf82","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SBJson?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e4f61a6d71f7e602c17f91f02988a3e8e5dbaf82","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SBJson"}},{"name":"SBSegmentedViewController","path":"Specs/SBSegmentedViewController","sha":"82bcc9f519fb571545eec9b91006798162bc92e8","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SBSegmentedViewController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SBSegmentedViewController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/82bcc9f519fb571545eec9b91006798162bc92e8","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SBSegmentedViewController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/82bcc9f519fb571545eec9b91006798162bc92e8","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SBSegmentedViewController"}},{"name":"SBTickerView","path":"Specs/SBTickerView","sha":"4417292783a3332a9a7b4c869bfad607bf308e78","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SBTickerView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SBTickerView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4417292783a3332a9a7b4c869bfad607bf308e78","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SBTickerView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4417292783a3332a9a7b4c869bfad607bf308e78","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SBTickerView"}},{"name":"SCKit","path":"Specs/SCKit","sha":"0385fb3430119bbfcc5b593e1974ec183965e5e2","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SCKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SCKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0385fb3430119bbfcc5b593e1974ec183965e5e2","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SCKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0385fb3430119bbfcc5b593e1974ec183965e5e2","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SCKit"}},{"name":"SCNetworkReachability","path":"Specs/SCNetworkReachability","sha":"06c436634a2629c5faa80bc858c5646dbbfc992c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SCNetworkReachability?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SCNetworkReachability","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/06c436634a2629c5faa80bc858c5646dbbfc992c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SCNetworkReachability?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/06c436634a2629c5faa80bc858c5646dbbfc992c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SCNetworkReachability"}},{"name":"SCPageScrubberBar","path":"Specs/SCPageScrubberBar","sha":"5c9b81c8c87e5757e32f6e917321023d9048328c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SCPageScrubberBar?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SCPageScrubberBar","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5c9b81c8c87e5757e32f6e917321023d9048328c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SCPageScrubberBar?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5c9b81c8c87e5757e32f6e917321023d9048328c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SCPageScrubberBar"}},{"name":"SDNetworkActivityIndicator","path":"Specs/SDNetworkActivityIndicator","sha":"81a8cc69ddb763797e45be13785f7e43301c019f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SDNetworkActivityIndicator?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SDNetworkActivityIndicator","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/81a8cc69ddb763797e45be13785f7e43301c019f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SDNetworkActivityIndicator?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/81a8cc69ddb763797e45be13785f7e43301c019f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SDNetworkActivityIndicator"}},{"name":"SDSegmentedControl","path":"Specs/SDSegmentedControl","sha":"6503d6d9073e790527a91fb59fed3a9a459a3fa7","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SDSegmentedControl?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SDSegmentedControl","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6503d6d9073e790527a91fb59fed3a9a459a3fa7","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SDSegmentedControl?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6503d6d9073e790527a91fb59fed3a9a459a3fa7","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SDSegmentedControl"}},{"name":"SDURLCache","path":"Specs/SDURLCache","sha":"45f7274d55850a2fe61f99c36d45b76ba97ee359","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SDURLCache?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SDURLCache","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/45f7274d55850a2fe61f99c36d45b76ba97ee359","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SDURLCache?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/45f7274d55850a2fe61f99c36d45b76ba97ee359","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SDURLCache"}},{"name":"SDWebImage","path":"Specs/SDWebImage","sha":"34993db4dad1e8a692b4c19c0939c6f45532625b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SDWebImage?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SDWebImage","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/34993db4dad1e8a692b4c19c0939c6f45532625b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SDWebImage?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/34993db4dad1e8a692b4c19c0939c6f45532625b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SDWebImage"}},{"name":"SEBeamMeUpScotty","path":"Specs/SEBeamMeUpScotty","sha":"e0afccb6ccb8bc8470615c0f41fe467cf9cc9382","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SEBeamMeUpScotty?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SEBeamMeUpScotty","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e0afccb6ccb8bc8470615c0f41fe467cf9cc9382","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SEBeamMeUpScotty?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e0afccb6ccb8bc8470615c0f41fe467cf9cc9382","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SEBeamMeUpScotty"}},{"name":"SEDraggable","path":"Specs/SEDraggable","sha":"a4701e0a63d247394612c99831add2ddbe01bc17","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SEDraggable?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SEDraggable","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a4701e0a63d247394612c99831add2ddbe01bc17","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SEDraggable?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a4701e0a63d247394612c99831add2ddbe01bc17","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SEDraggable"}},{"name":"SEEActivityIndicatorView","path":"Specs/SEEActivityIndicatorView","sha":"3b62341b712af84db4e5934e1db1010cb181d0b4","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SEEActivityIndicatorView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SEEActivityIndicatorView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3b62341b712af84db4e5934e1db1010cb181d0b4","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SEEActivityIndicatorView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3b62341b712af84db4e5934e1db1010cb181d0b4","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SEEActivityIndicatorView"}},{"name":"SEEPhoneNumberFormatter","path":"Specs/SEEPhoneNumberFormatter","sha":"6f1796293b20097db2c9e758f1706926809aadbc","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SEEPhoneNumberFormatter?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SEEPhoneNumberFormatter","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6f1796293b20097db2c9e758f1706926809aadbc","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SEEPhoneNumberFormatter?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6f1796293b20097db2c9e758f1706926809aadbc","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SEEPhoneNumberFormatter"}},{"name":"SEFilterControl","path":"Specs/SEFilterControl","sha":"182242dc752667e135ed623bead2160533381817","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SEFilterControl?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SEFilterControl","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/182242dc752667e135ed623bead2160533381817","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SEFilterControl?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/182242dc752667e135ed623bead2160533381817","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SEFilterControl"}},{"name":"SEHumanizedTimeDiff","path":"Specs/SEHumanizedTimeDiff","sha":"e8c02929ee04d1e88dc384eea179322ea4bd0c84","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SEHumanizedTimeDiff?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SEHumanizedTimeDiff","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e8c02929ee04d1e88dc384eea179322ea4bd0c84","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SEHumanizedTimeDiff?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e8c02929ee04d1e88dc384eea179322ea4bd0c84","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SEHumanizedTimeDiff"}},{"name":"SESpringBoard","path":"Specs/SESpringBoard","sha":"f07628099e044c73209a3d030362e3f11e0bcbba","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SESpringBoard?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SESpringBoard","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f07628099e044c73209a3d030362e3f11e0bcbba","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SESpringBoard?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f07628099e044c73209a3d030362e3f11e0bcbba","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SESpringBoard"}},{"name":"SFHFKeychainUtils","path":"Specs/SFHFKeychainUtils","sha":"6a8c7e60bd136433a33576e800cc4b4cff988f71","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SFHFKeychainUtils?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SFHFKeychainUtils","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6a8c7e60bd136433a33576e800cc4b4cff988f71","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SFHFKeychainUtils?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6a8c7e60bd136433a33576e800cc4b4cff988f71","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SFHFKeychainUtils"}},{"name":"SFObservers","path":"Specs/SFObservers","sha":"5c7acc023139062dd63b7929ab9653b6d19318bf","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SFObservers?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SFObservers","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5c7acc023139062dd63b7929ab9653b6d19318bf","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SFObservers?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5c7acc023139062dd63b7929ab9653b6d19318bf","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SFObservers"}},{"name":"SFSocialFacebook","path":"Specs/SFSocialFacebook","sha":"b5a47d982a0ac13e5a17ff141e816dfff96e56aa","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SFSocialFacebook?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SFSocialFacebook","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b5a47d982a0ac13e5a17ff141e816dfff96e56aa","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SFSocialFacebook?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b5a47d982a0ac13e5a17ff141e816dfff96e56aa","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SFSocialFacebook"}},{"name":"SGBDrillDownController","path":"Specs/SGBDrillDownController","sha":"f27f9a1bbda28276a3eaf2ee7e09d97e728f6c00","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SGBDrillDownController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SGBDrillDownController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f27f9a1bbda28276a3eaf2ee7e09d97e728f6c00","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SGBDrillDownController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f27f9a1bbda28276a3eaf2ee7e09d97e728f6c00","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SGBDrillDownController"}},{"name":"SGHotKeysLib","path":"Specs/SGHotKeysLib","sha":"0992bf97e11c202cf772b502fe9096edd99a4973","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SGHotKeysLib?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SGHotKeysLib","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0992bf97e11c202cf772b502fe9096edd99a4973","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SGHotKeysLib?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0992bf97e11c202cf772b502fe9096edd99a4973","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SGHotKeysLib"}},{"name":"SHAccountManager","path":"Specs/SHAccountManager","sha":"72d2465edc4b132aba30fcbd1935f165c975ce50","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SHAccountManager?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SHAccountManager","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/72d2465edc4b132aba30fcbd1935f165c975ce50","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SHAccountManager?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/72d2465edc4b132aba30fcbd1935f165c975ce50","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SHAccountManager"}},{"name":"SHAccountStore","path":"Specs/SHAccountStore","sha":"fb5c1e16bdf41fc1f23906f2b6611c34b4ef6b34","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SHAccountStore?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SHAccountStore","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fb5c1e16bdf41fc1f23906f2b6611c34b4ef6b34","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SHAccountStore?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fb5c1e16bdf41fc1f23906f2b6611c34b4ef6b34","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SHAccountStore"}},{"name":"SHAlert","path":"Specs/SHAlert","sha":"47ae1a8c40491966173d62c9798a651bfd80b6cf","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SHAlert?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SHAlert","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/47ae1a8c40491966173d62c9798a651bfd80b6cf","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SHAlert?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/47ae1a8c40491966173d62c9798a651bfd80b6cf","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SHAlert"}},{"name":"SHGameCenter","path":"Specs/SHGameCenter","sha":"3d7b6be109cbd26543b1bf927d78e76e3ef0e814","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SHGameCenter?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SHGameCenter","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3d7b6be109cbd26543b1bf927d78e76e3ef0e814","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SHGameCenter?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3d7b6be109cbd26543b1bf927d78e76e3ef0e814","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SHGameCenter"}},{"name":"SHOmniAuth","path":"Specs/SHOmniAuth","sha":"9b05e87ef0a05d57177971923a3d7239d1df1b64","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SHOmniAuth?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SHOmniAuth","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9b05e87ef0a05d57177971923a3d7239d1df1b64","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SHOmniAuth?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9b05e87ef0a05d57177971923a3d7239d1df1b64","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SHOmniAuth"}},{"name":"SHOmniAuthFacebook","path":"Specs/SHOmniAuthFacebook","sha":"daefe3880a4bfbfb3ae2275ebee240197b9adc67","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SHOmniAuthFacebook?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SHOmniAuthFacebook","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/daefe3880a4bfbfb3ae2275ebee240197b9adc67","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SHOmniAuthFacebook?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/daefe3880a4bfbfb3ae2275ebee240197b9adc67","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SHOmniAuthFacebook"}},{"name":"SHOmniAuthFlickr","path":"Specs/SHOmniAuthFlickr","sha":"7abc5c5fa0633ea95594edeb19697dd7a37a6b9e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SHOmniAuthFlickr?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SHOmniAuthFlickr","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7abc5c5fa0633ea95594edeb19697dd7a37a6b9e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SHOmniAuthFlickr?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7abc5c5fa0633ea95594edeb19697dd7a37a6b9e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SHOmniAuthFlickr"}},{"name":"SHOmniAuthLinkedIn","path":"Specs/SHOmniAuthLinkedIn","sha":"96c72db6ec3997f1f7217ca1326e0f1ff2e2f9a0","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SHOmniAuthLinkedIn?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SHOmniAuthLinkedIn","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/96c72db6ec3997f1f7217ca1326e0f1ff2e2f9a0","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SHOmniAuthLinkedIn?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/96c72db6ec3997f1f7217ca1326e0f1ff2e2f9a0","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SHOmniAuthLinkedIn"}},{"name":"SHOmniAuthTwitter","path":"Specs/SHOmniAuthTwitter","sha":"5d2348dc5772ad6fc7461eff27671d4c324d8b49","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SHOmniAuthTwitter?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SHOmniAuthTwitter","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5d2348dc5772ad6fc7461eff27671d4c324d8b49","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SHOmniAuthTwitter?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5d2348dc5772ad6fc7461eff27671d4c324d8b49","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SHOmniAuthTwitter"}},{"name":"SHRequest","path":"Specs/SHRequest","sha":"d7f35a7e297c13e716b806360fed141408f2033e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SHRequest?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SHRequest","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d7f35a7e297c13e716b806360fed141408f2033e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SHRequest?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d7f35a7e297c13e716b806360fed141408f2033e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SHRequest"}},{"name":"SHSPhoneComponent","path":"Specs/SHSPhoneComponent","sha":"733cc5315d5f692fea70c4a7054de5d623e99d2d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SHSPhoneComponent?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SHSPhoneComponent","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/733cc5315d5f692fea70c4a7054de5d623e99d2d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SHSPhoneComponent?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/733cc5315d5f692fea70c4a7054de5d623e99d2d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SHSPhoneComponent"}},{"name":"SJNotificationViewController","path":"Specs/SJNotificationViewController","sha":"a5d92821d2b2917276b63f860ef9444682aba6fe","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SJNotificationViewController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SJNotificationViewController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a5d92821d2b2917276b63f860ef9444682aba6fe","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SJNotificationViewController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a5d92821d2b2917276b63f860ef9444682aba6fe","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SJNotificationViewController"}},{"name":"SJOPaperboy","path":"Specs/SJOPaperboy","sha":"82aae6ff70fcc2d941795db735929304107ff952","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SJOPaperboy?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SJOPaperboy","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/82aae6ff70fcc2d941795db735929304107ff952","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SJOPaperboy?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/82aae6ff70fcc2d941795db735929304107ff952","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SJOPaperboy"}},{"name":"SKBindingManager","path":"Specs/SKBindingManager","sha":"f2d2202a4a5cfa06b2e4c159f777d5e2167f277e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SKBindingManager?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SKBindingManager","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f2d2202a4a5cfa06b2e4c159f777d5e2167f277e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SKBindingManager?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f2d2202a4a5cfa06b2e4c159f777d5e2167f277e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SKBindingManager"}},{"name":"SKBounceAnimation","path":"Specs/SKBounceAnimation","sha":"6ef441181e6e30f7ec37643da430204434f63391","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SKBounceAnimation?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SKBounceAnimation","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6ef441181e6e30f7ec37643da430204434f63391","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SKBounceAnimation?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6ef441181e6e30f7ec37643da430204434f63391","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SKBounceAnimation"}},{"name":"SKInnerShadowLayer","path":"Specs/SKInnerShadowLayer","sha":"6b94c70bcd4b377516e8167028bf26327f3501ae","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SKInnerShadowLayer?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SKInnerShadowLayer","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6b94c70bcd4b377516e8167028bf26327f3501ae","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SKInnerShadowLayer?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6b94c70bcd4b377516e8167028bf26327f3501ae","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SKInnerShadowLayer"}},{"name":"SLCoreDataStack","path":"Specs/SLCoreDataStack","sha":"188f5e06a4faca26c83c720f43ceafd304c7f9f1","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SLCoreDataStack?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SLCoreDataStack","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/188f5e06a4faca26c83c720f43ceafd304c7f9f1","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SLCoreDataStack?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/188f5e06a4faca26c83c720f43ceafd304c7f9f1","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SLCoreDataStack"}},{"name":"SLGlowingTextField","path":"Specs/SLGlowingTextField","sha":"4f77e550416daa63337e15981663296c2a5cb9c9","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SLGlowingTextField?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SLGlowingTextField","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4f77e550416daa63337e15981663296c2a5cb9c9","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SLGlowingTextField?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4f77e550416daa63337e15981663296c2a5cb9c9","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SLGlowingTextField"}},{"name":"SLObjectiveCRuntimeAdditions","path":"Specs/SLObjectiveCRuntimeAdditions","sha":"aed8d9b11b411319fe0f52cb1ea6dde764a88ce0","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SLObjectiveCRuntimeAdditions?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SLObjectiveCRuntimeAdditions","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/aed8d9b11b411319fe0f52cb1ea6dde764a88ce0","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SLObjectiveCRuntimeAdditions?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/aed8d9b11b411319fe0f52cb1ea6dde764a88ce0","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SLObjectiveCRuntimeAdditions"}},{"name":"SLRESTfulCoreData","path":"Specs/SLRESTfulCoreData","sha":"e9fef70850fbd38a9d65728f8b6acf05d50545d4","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SLRESTfulCoreData?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SLRESTfulCoreData","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e9fef70850fbd38a9d65728f8b6acf05d50545d4","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SLRESTfulCoreData?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e9fef70850fbd38a9d65728f8b6acf05d50545d4","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SLRESTfulCoreData"}},{"name":"SMCalloutView","path":"Specs/SMCalloutView","sha":"29f01f25a8a6c909d45aa47b2de4fdccc321abed","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SMCalloutView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SMCalloutView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/29f01f25a8a6c909d45aa47b2de4fdccc321abed","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SMCalloutView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/29f01f25a8a6c909d45aa47b2de4fdccc321abed","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SMCalloutView"}},{"name":"SMGridView","path":"Specs/SMGridView","sha":"b92f58ee2a082bf2d4cc71d692de3a3c553f7f7c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SMGridView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SMGridView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b92f58ee2a082bf2d4cc71d692de3a3c553f7f7c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SMGridView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b92f58ee2a082bf2d4cc71d692de3a3c553f7f7c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SMGridView"}},{"name":"SMPageControl","path":"Specs/SMPageControl","sha":"0f3d449c4f813dcd3b8ba22b947acd97c7ff8d13","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SMPageControl?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SMPageControl","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0f3d449c4f813dcd3b8ba22b947acd97c7ff8d13","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SMPageControl?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0f3d449c4f813dcd3b8ba22b947acd97c7ff8d13","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SMPageControl"}},{"name":"SMWebRequest","path":"Specs/SMWebRequest","sha":"1b4613acf043e704140b1869b79f83da4cf08fb5","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SMWebRequest?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SMWebRequest","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1b4613acf043e704140b1869b79f83da4cf08fb5","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SMWebRequest?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1b4613acf043e704140b1869b79f83da4cf08fb5","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SMWebRequest"}},{"name":"SMXMLDocument","path":"Specs/SMXMLDocument","sha":"4e986f2bac911dfaa1c0546f57787f05b66f766a","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SMXMLDocument?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SMXMLDocument","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4e986f2bac911dfaa1c0546f57787f05b66f766a","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SMXMLDocument?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4e986f2bac911dfaa1c0546f57787f05b66f766a","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SMXMLDocument"}},{"name":"SMXObject","path":"Specs/SMXObject","sha":"552f0ac63b845121eff80781f4233cbb5d777925","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SMXObject?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SMXObject","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/552f0ac63b845121eff80781f4233cbb5d777925","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SMXObject?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/552f0ac63b845121eff80781f4233cbb5d777925","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SMXObject"}},{"name":"SNRFetchedResultsController","path":"Specs/SNRFetchedResultsController","sha":"f85c500efce19aa4a3f1ff43ccba91ad39ea51e9","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SNRFetchedResultsController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SNRFetchedResultsController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f85c500efce19aa4a3f1ff43ccba91ad39ea51e9","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SNRFetchedResultsController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f85c500efce19aa4a3f1ff43ccba91ad39ea51e9","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SNRFetchedResultsController"}},{"name":"SNRHUDKit","path":"Specs/SNRHUDKit","sha":"5feae3fd927aebb3d27a6e714cec53725bf00fc9","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SNRHUDKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SNRHUDKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5feae3fd927aebb3d27a6e714cec53725bf00fc9","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SNRHUDKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5feae3fd927aebb3d27a6e714cec53725bf00fc9","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SNRHUDKit"}},{"name":"SOCKit","path":"Specs/SOCKit","sha":"55113166330b4839c4ee1dd64f10c8c8cef40913","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SOCKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SOCKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/55113166330b4839c4ee1dd64f10c8c8cef40913","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SOCKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/55113166330b4839c4ee1dd64f10c8c8cef40913","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SOCKit"}},{"name":"SORelativeDateTransformer","path":"Specs/SORelativeDateTransformer","sha":"23369db11d878aabe31558bec3155cff57b4dd04","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SORelativeDateTransformer?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SORelativeDateTransformer","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/23369db11d878aabe31558bec3155cff57b4dd04","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SORelativeDateTransformer?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/23369db11d878aabe31558bec3155cff57b4dd04","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SORelativeDateTransformer"}},{"name":"SPSuccinct","path":"Specs/SPSuccinct","sha":"5a52f4b9335e3f4dcbebbf61ec1acb6f69a81875","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SPSuccinct?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SPSuccinct","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5a52f4b9335e3f4dcbebbf61ec1acb6f69a81875","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SPSuccinct?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5a52f4b9335e3f4dcbebbf61ec1acb6f69a81875","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SPSuccinct"}},{"name":"SPTabBarController","path":"Specs/SPTabBarController","sha":"b1b52d79c0d19ad957eb6428d5c3a96ff8c9cd7d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SPTabBarController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SPTabBarController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b1b52d79c0d19ad957eb6428d5c3a96ff8c9cd7d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SPTabBarController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b1b52d79c0d19ad957eb6428d5c3a96ff8c9cd7d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SPTabBarController"}},{"name":"SQLCipher","path":"Specs/SQLCipher","sha":"96ca1d634c9698095416d88a6b12d274988a5b37","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SQLCipher?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SQLCipher","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/96ca1d634c9698095416d88a6b12d274988a5b37","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SQLCipher?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/96ca1d634c9698095416d88a6b12d274988a5b37","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SQLCipher"}},{"name":"SRMonthPicker","path":"Specs/SRMonthPicker","sha":"5edcf470b365c18226bf5d7da213772a37e3cdc1","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SRMonthPicker?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SRMonthPicker","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5edcf470b365c18226bf5d7da213772a37e3cdc1","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SRMonthPicker?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5edcf470b365c18226bf5d7da213772a37e3cdc1","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SRMonthPicker"}},{"name":"SSCheckBoxView","path":"Specs/SSCheckBoxView","sha":"eea002b40882ee8c7c64a1701de670d924516c60","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SSCheckBoxView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SSCheckBoxView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/eea002b40882ee8c7c64a1701de670d924516c60","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SSCheckBoxView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/eea002b40882ee8c7c64a1701de670d924516c60","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SSCheckBoxView"}},{"name":"SSDataKit","path":"Specs/SSDataKit","sha":"7bdbd773e4782a8b82f098df44b94bd73bad843b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SSDataKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SSDataKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7bdbd773e4782a8b82f098df44b94bd73bad843b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SSDataKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7bdbd773e4782a8b82f098df44b94bd73bad843b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SSDataKit"}},{"name":"SSKeychain","path":"Specs/SSKeychain","sha":"a0e9919e02a0d2f2f38105d3168540bde59242f7","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SSKeychain?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SSKeychain","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a0e9919e02a0d2f2f38105d3168540bde59242f7","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SSKeychain?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a0e9919e02a0d2f2f38105d3168540bde59242f7","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SSKeychain"}},{"name":"SSPullToRefresh","path":"Specs/SSPullToRefresh","sha":"4ff4486608cc8629c25ec5dab81cc19b3e362c75","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SSPullToRefresh?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SSPullToRefresh","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4ff4486608cc8629c25ec5dab81cc19b3e362c75","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SSPullToRefresh?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4ff4486608cc8629c25ec5dab81cc19b3e362c75","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SSPullToRefresh"}},{"name":"SSToolkit","path":"Specs/SSToolkit","sha":"3fa8bf8b24d3759245cbd274481c24392bf891db","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SSToolkit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SSToolkit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3fa8bf8b24d3759245cbd274481c24392bf891db","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SSToolkit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3fa8bf8b24d3759245cbd274481c24392bf891db","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SSToolkit"}},{"name":"SSXboxLeaders","path":"Specs/SSXboxLeaders","sha":"e7862f679c1b63b0ef69ebced2d681a905e29d87","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SSXboxLeaders?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SSXboxLeaders","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e7862f679c1b63b0ef69ebced2d681a905e29d87","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SSXboxLeaders?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e7862f679c1b63b0ef69ebced2d681a905e29d87","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SSXboxLeaders"}},{"name":"SSZipArchive","path":"Specs/SSZipArchive","sha":"df577805c82e4ed1751fa9e31609846051e384e0","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SSZipArchive?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SSZipArchive","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/df577805c82e4ed1751fa9e31609846051e384e0","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SSZipArchive?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/df577805c82e4ed1751fa9e31609846051e384e0","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SSZipArchive"}},{"name":"STLOAuth","path":"Specs/STLOAuth","sha":"7d062cc11a92a8d77d791fbc869ce5b22b7d6c4a","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/STLOAuth?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/STLOAuth","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7d062cc11a92a8d77d791fbc869ce5b22b7d6c4a","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/STLOAuth?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7d062cc11a92a8d77d791fbc869ce5b22b7d6c4a","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/STLOAuth"}},{"name":"STScratchView","path":"Specs/STScratchView","sha":"e4355493623da5ddf96db1edc8f3f25434bcc981","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/STScratchView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/STScratchView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e4355493623da5ddf96db1edc8f3f25434bcc981","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/STScratchView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e4355493623da5ddf96db1edc8f3f25434bcc981","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/STScratchView"}},{"name":"STTimeSlider","path":"Specs/STTimeSlider","sha":"c8358f38907eaff4e02d75ad519c5ea3c45f5f8e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/STTimeSlider?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/STTimeSlider","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c8358f38907eaff4e02d75ad519c5ea3c45f5f8e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/STTimeSlider?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c8358f38907eaff4e02d75ad519c5ea3c45f5f8e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/STTimeSlider"}},{"name":"STTweetLabel","path":"Specs/STTweetLabel","sha":"25424af97c5001b8d892c142160b014aab4efe4c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/STTweetLabel?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/STTweetLabel","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/25424af97c5001b8d892c142160b014aab4efe4c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/STTweetLabel?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/25424af97c5001b8d892c142160b014aab4efe4c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/STTweetLabel"}},{"name":"STableViewController","path":"Specs/STableViewController","sha":"7f58a834903701eee8b8781f595482d1b6d994ad","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/STableViewController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/STableViewController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7f58a834903701eee8b8781f595482d1b6d994ad","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/STableViewController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7f58a834903701eee8b8781f595482d1b6d994ad","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/STableViewController"}},{"name":"SVGKit","path":"Specs/SVGKit","sha":"4508831fb92667c98d76cbd612bb3e0a47a630ca","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SVGKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SVGKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4508831fb92667c98d76cbd612bb3e0a47a630ca","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SVGKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4508831fb92667c98d76cbd612bb3e0a47a630ca","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SVGKit"}},{"name":"SVGeocoder","path":"Specs/SVGeocoder","sha":"e857d5a60e841cb0b2417922c9d596e3d7182651","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SVGeocoder?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SVGeocoder","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e857d5a60e841cb0b2417922c9d596e3d7182651","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SVGeocoder?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e857d5a60e841cb0b2417922c9d596e3d7182651","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SVGeocoder"}},{"name":"SVHTTPRequest","path":"Specs/SVHTTPRequest","sha":"86b00dda238984f9b1f461fd63d7a6da4f5ed6f0","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SVHTTPRequest?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SVHTTPRequest","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/86b00dda238984f9b1f461fd63d7a6da4f5ed6f0","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SVHTTPRequest?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/86b00dda238984f9b1f461fd63d7a6da4f5ed6f0","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SVHTTPRequest"}},{"name":"SVProgressHUD","path":"Specs/SVProgressHUD","sha":"0e8ba88260d32a4f0e34e23a628e4c45a82d2c2c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SVProgressHUD?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SVProgressHUD","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0e8ba88260d32a4f0e34e23a628e4c45a82d2c2c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SVProgressHUD?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0e8ba88260d32a4f0e34e23a628e4c45a82d2c2c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SVProgressHUD"}},{"name":"SVPullToRefresh","path":"Specs/SVPullToRefresh","sha":"1fd2d0caa8367a28002b9c80a796d7bec40b40e9","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SVPullToRefresh?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SVPullToRefresh","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1fd2d0caa8367a28002b9c80a796d7bec40b40e9","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SVPullToRefresh?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1fd2d0caa8367a28002b9c80a796d7bec40b40e9","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SVPullToRefresh"}},{"name":"SVPulsingAnnotationView","path":"Specs/SVPulsingAnnotationView","sha":"76dcb47b65264e21069df7283c2c04cbd42b7a9c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SVPulsingAnnotationView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SVPulsingAnnotationView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/76dcb47b65264e21069df7283c2c04cbd42b7a9c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SVPulsingAnnotationView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/76dcb47b65264e21069df7283c2c04cbd42b7a9c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SVPulsingAnnotationView"}},{"name":"SVSegmentedControl.deARCed","path":"Specs/SVSegmentedControl.deARCed","sha":"6491d981e4e34adbd11dd935ab970b2f71e429da","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SVSegmentedControl.deARCed?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SVSegmentedControl.deARCed","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6491d981e4e34adbd11dd935ab970b2f71e429da","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SVSegmentedControl.deARCed?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6491d981e4e34adbd11dd935ab970b2f71e429da","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SVSegmentedControl.deARCed"}},{"name":"SVSegmentedControl","path":"Specs/SVSegmentedControl","sha":"7eb267e53c6dda073bd31babda0aa49a527178f5","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SVSegmentedControl?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SVSegmentedControl","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7eb267e53c6dda073bd31babda0aa49a527178f5","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SVSegmentedControl?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7eb267e53c6dda073bd31babda0aa49a527178f5","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SVSegmentedControl"}},{"name":"SVStatusHUD","path":"Specs/SVStatusHUD","sha":"aa4f28df4146a8ed63a187d499c5108ac1c7f642","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SVStatusHUD?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SVStatusHUD","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/aa4f28df4146a8ed63a187d499c5108ac1c7f642","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SVStatusHUD?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/aa4f28df4146a8ed63a187d499c5108ac1c7f642","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SVStatusHUD"}},{"name":"SVWebViewController","path":"Specs/SVWebViewController","sha":"3d26fdc94647599f737a471c13ce87fe2b916d91","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SVWebViewController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SVWebViewController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3d26fdc94647599f737a471c13ce87fe2b916d91","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SVWebViewController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3d26fdc94647599f737a471c13ce87fe2b916d91","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SVWebViewController"}},{"name":"SWRevealViewController","path":"Specs/SWRevealViewController","sha":"15a480c78828270adfc8f3ab41567c806e6a0995","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SWRevealViewController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SWRevealViewController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/15a480c78828270adfc8f3ab41567c806e6a0995","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SWRevealViewController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/15a480c78828270adfc8f3ab41567c806e6a0995","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SWRevealViewController"}},{"name":"SWSnapshotStackView","path":"Specs/SWSnapshotStackView","sha":"998dbb0b970312c10f50e8edff4e50b9b362815e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SWSnapshotStackView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SWSnapshotStackView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/998dbb0b970312c10f50e8edff4e50b9b362815e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SWSnapshotStackView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/998dbb0b970312c10f50e8edff4e50b9b362815e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SWSnapshotStackView"}},{"name":"SYCache","path":"Specs/SYCache","sha":"5b2eaf4794312304300971363cdbf553ef4a21e0","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SYCache?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SYCache","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5b2eaf4794312304300971363cdbf553ef4a21e0","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SYCache?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5b2eaf4794312304300971363cdbf553ef4a21e0","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SYCache"}},{"name":"SYPaginator","path":"Specs/SYPaginator","sha":"0c8eef0f7cb0da7c2f538d9d30dfaa29e4250efd","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SYPaginator?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SYPaginator","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0c8eef0f7cb0da7c2f538d9d30dfaa29e4250efd","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SYPaginator?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0c8eef0f7cb0da7c2f538d9d30dfaa29e4250efd","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SYPaginator"}},{"name":"SZNAltmetric","path":"Specs/SZNAltmetric","sha":"a61866be44c79a3840a3e3bf4499abd983d80f2d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SZNAltmetric?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SZNAltmetric","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a61866be44c79a3840a3e3bf4499abd983d80f2d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SZNAltmetric?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a61866be44c79a3840a3e3bf4499abd983d80f2d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SZNAltmetric"}},{"name":"ScrollToRefresh","path":"Specs/ScrollToRefresh","sha":"1250e59645a3a19f0e5c1e1a051015e38f52def2","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ScrollToRefresh?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ScrollToRefresh","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1250e59645a3a19f0e5c1e1a051015e38f52def2","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ScrollToRefresh?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1250e59645a3a19f0e5c1e1a051015e38f52def2","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ScrollToRefresh"}},{"name":"Sealant","path":"Specs/Sealant","sha":"a7179b016f6e0f44de3f6ef103182562faaf5970","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Sealant?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Sealant","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a7179b016f6e0f44de3f6ef103182562faaf5970","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Sealant?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a7179b016f6e0f44de3f6ef103182562faaf5970","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Sealant"}},{"name":"SecureUDID","path":"Specs/SecureUDID","sha":"965abfd2aaba96a1ce4247ea72f8ca0a7c81e920","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SecureUDID?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SecureUDID","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/965abfd2aaba96a1ce4247ea72f8ca0a7c81e920","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SecureUDID?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/965abfd2aaba96a1ce4247ea72f8ca0a7c81e920","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SecureUDID"}},{"name":"SenTestingKitAsync","path":"Specs/SenTestingKitAsync","sha":"e99dc4736912a13e79e00a13b34b4bc69b428eed","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SenTestingKitAsync?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SenTestingKitAsync","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e99dc4736912a13e79e00a13b34b4bc69b428eed","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SenTestingKitAsync?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e99dc4736912a13e79e00a13b34b4bc69b428eed","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SenTestingKitAsync"}},{"name":"Sequencer","path":"Specs/Sequencer","sha":"b7f7b811b55773aaa9b45bd0245869967d74a91d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Sequencer?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Sequencer","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b7f7b811b55773aaa9b45bd0245869967d74a91d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Sequencer?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b7f7b811b55773aaa9b45bd0245869967d74a91d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Sequencer"}},{"name":"Seriously","path":"Specs/Seriously","sha":"25468ff9391584d550500732d1373bc2432eb3cf","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Seriously?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Seriously","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/25468ff9391584d550500732d1373bc2432eb3cf","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Seriously?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/25468ff9391584d550500732d1373bc2432eb3cf","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Seriously"}},{"name":"Shakedown","path":"Specs/Shakedown","sha":"5ad050c34fc783171b98f0acc9f1d1e9dd1cbb45","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Shakedown?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Shakedown","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5ad050c34fc783171b98f0acc9f1d1e9dd1cbb45","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Shakedown?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5ad050c34fc783171b98f0acc9f1d1e9dd1cbb45","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Shakedown"}},{"name":"ShakingAlertView","path":"Specs/ShakingAlertView","sha":"f4e3e50cad38965d7108a56e24e523f482271cf0","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ShakingAlertView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ShakingAlertView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f4e3e50cad38965d7108a56e24e523f482271cf0","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ShakingAlertView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f4e3e50cad38965d7108a56e24e523f482271cf0","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ShakingAlertView"}},{"name":"ShallWeAdSDK","path":"Specs/ShallWeAdSDK","sha":"8e4dc1f4685c7a54fcf8a6d49d286ce46cfe6d31","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ShallWeAdSDK?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ShallWeAdSDK","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8e4dc1f4685c7a54fcf8a6d49d286ce46cfe6d31","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ShallWeAdSDK?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8e4dc1f4685c7a54fcf8a6d49d286ce46cfe6d31","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ShallWeAdSDK"}},{"name":"ShapeKit","path":"Specs/ShapeKit","sha":"1c3324ea7116c7b66aaf2340cfd8b924a60e6f4e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ShapeKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ShapeKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1c3324ea7116c7b66aaf2340cfd8b924a60e6f4e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ShapeKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1c3324ea7116c7b66aaf2340cfd8b924a60e6f4e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ShapeKit"}},{"name":"ShareKit","path":"Specs/ShareKit","sha":"714b544b0cc67b861a88c5a84639eb7035f7e5c5","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ShareKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ShareKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/714b544b0cc67b861a88c5a84639eb7035f7e5c5","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ShareKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/714b544b0cc67b861a88c5a84639eb7035f7e5c5","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ShareKit"}},{"name":"ShareThis","path":"Specs/ShareThis","sha":"841a93ecbf4fa88a801dc9fb8ce8f8317c3727b0","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ShareThis?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ShareThis","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/841a93ecbf4fa88a801dc9fb8ce8f8317c3727b0","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ShareThis?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/841a93ecbf4fa88a801dc9fb8ce8f8317c3727b0","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ShareThis"}},{"name":"Shelley","path":"Specs/Shelley","sha":"ee0df88e27ca1581c4cef3e6f04544b63b4cd985","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Shelley?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Shelley","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ee0df88e27ca1581c4cef3e6f04544b63b4cd985","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Shelley?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ee0df88e27ca1581c4cef3e6f04544b63b4cd985","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Shelley"}},{"name":"ShotBlocker","path":"Specs/ShotBlocker","sha":"70707a79e1e9cd9bd454a99ac4ef17908ab34133","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ShotBlocker?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ShotBlocker","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/70707a79e1e9cd9bd454a99ac4ef17908ab34133","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ShotBlocker?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/70707a79e1e9cd9bd454a99ac4ef17908ab34133","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ShotBlocker"}},{"name":"ShowKit","path":"Specs/ShowKit","sha":"58a2dd1ae606b1fdbce35b1f9e4872c34885102e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ShowKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ShowKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/58a2dd1ae606b1fdbce35b1f9e4872c34885102e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ShowKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/58a2dd1ae606b1fdbce35b1f9e4872c34885102e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ShowKit"}},{"name":"SignalR-ObjC","path":"Specs/SignalR-ObjC","sha":"eb770a4e0c2dcb372e32bef624496c4389846cac","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SignalR-ObjC?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SignalR-ObjC","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/eb770a4e0c2dcb372e32bef624496c4389846cac","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SignalR-ObjC?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/eb770a4e0c2dcb372e32bef624496c4389846cac","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SignalR-ObjC"}},{"name":"Simple-KML","path":"Specs/Simple-KML","sha":"ce3067ec5a8ae2908436e6ff69b6d9553ad10bad","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Simple-KML?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Simple-KML","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ce3067ec5a8ae2908436e6ff69b6d9553ad10bad","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Simple-KML?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ce3067ec5a8ae2908436e6ff69b6d9553ad10bad","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Simple-KML"}},{"name":"SimpleInstapaperKit","path":"Specs/SimpleInstapaperKit","sha":"3bdbda9fa82a76cf72af0280259e137ff958f0ec","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SimpleInstapaperKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SimpleInstapaperKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3bdbda9fa82a76cf72af0280259e137ff958f0ec","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SimpleInstapaperKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3bdbda9fa82a76cf72af0280259e137ff958f0ec","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SimpleInstapaperKit"}},{"name":"SimpleRemoteObject","path":"Specs/SimpleRemoteObject","sha":"d7a866146e871fc70ffa37a4fd2fd2cb08419223","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SimpleRemoteObject?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SimpleRemoteObject","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d7a866146e871fc70ffa37a4fd2fd2cb08419223","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SimpleRemoteObject?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d7a866146e871fc70ffa37a4fd2fd2cb08419223","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SimpleRemoteObject"}},{"name":"SinaWeibo","path":"Specs/SinaWeibo","sha":"0c7e53f43afcb9dce21fe48cf962d695a001c51c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SinaWeibo?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SinaWeibo","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0c7e53f43afcb9dce21fe48cf962d695a001c51c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SinaWeibo?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0c7e53f43afcb9dce21fe48cf962d695a001c51c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SinaWeibo"}},{"name":"SinglySDK","path":"Specs/SinglySDK","sha":"c9b5b2e2c2dd605919df3a2a37ea27b3fbf59ea3","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SinglySDK?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SinglySDK","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c9b5b2e2c2dd605919df3a2a37ea27b3fbf59ea3","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SinglySDK?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c9b5b2e2c2dd605919df3a2a37ea27b3fbf59ea3","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SinglySDK"}},{"name":"SkyLab","path":"Specs/SkyLab","sha":"5ef0a388c0e732b29bf225ba4f215754be1ae714","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SkyLab?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SkyLab","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5ef0a388c0e732b29bf225ba4f215754be1ae714","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SkyLab?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5ef0a388c0e732b29bf225ba4f215754be1ae714","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SkyLab"}},{"name":"Slash","path":"Specs/Slash","sha":"54f72fc656917e6437b5c528b1684494a963705e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Slash?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Slash","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/54f72fc656917e6437b5c528b1684494a963705e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Slash?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/54f72fc656917e6437b5c528b1684494a963705e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Slash"}},{"name":"SlimeRefresh","path":"Specs/SlimeRefresh","sha":"55423c50d333f33ce896ab9a55bc6552cb657713","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SlimeRefresh?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SlimeRefresh","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/55423c50d333f33ce896ab9a55bc6552cb657713","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SlimeRefresh?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/55423c50d333f33ce896ab9a55bc6552cb657713","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SlimeRefresh"}},{"name":"Snapper","path":"Specs/Snapper","sha":"654f780b50ba11fcc57f7a318b260c17df6cfd11","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Snapper?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Snapper","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/654f780b50ba11fcc57f7a318b260c17df6cfd11","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Snapper?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/654f780b50ba11fcc57f7a318b260c17df6cfd11","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Snapper"}},{"name":"SocialAccounts","path":"Specs/SocialAccounts","sha":"f529186656bc538fdc63ffd10fea25a5cb4e6002","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SocialAccounts?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SocialAccounts","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f529186656bc538fdc63ffd10fea25a5cb4e6002","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SocialAccounts?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f529186656bc538fdc63ffd10fea25a5cb4e6002","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SocialAccounts"}},{"name":"SocketRocket","path":"Specs/SocketRocket","sha":"be63a5cb6aef934fe0d261fd8a3ace98ef78e252","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SocketRocket?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SocketRocket","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/be63a5cb6aef934fe0d261fd8a3ace98ef78e252","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SocketRocket?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/be63a5cb6aef934fe0d261fd8a3ace98ef78e252","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SocketRocket"}},{"name":"SoloComponents-iOS","path":"Specs/SoloComponents-iOS","sha":"bee3f92b313ed89b3feb4c3bed1aec61bcbcfa08","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SoloComponents-iOS?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SoloComponents-iOS","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/bee3f92b313ed89b3feb4c3bed1aec61bcbcfa08","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SoloComponents-iOS?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/bee3f92b313ed89b3feb4c3bed1aec61bcbcfa08","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SoloComponents-iOS"}},{"name":"Sparrow-Framework","path":"Specs/Sparrow-Framework","sha":"c1d6c3c1c1fba5ab797aa17e424c6f26e704f240","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Sparrow-Framework?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Sparrow-Framework","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c1d6c3c1c1fba5ab797aa17e424c6f26e704f240","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Sparrow-Framework?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c1d6c3c1c1fba5ab797aa17e424c6f26e704f240","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Sparrow-Framework"}},{"name":"Specify","path":"Specs/Specify","sha":"faaa3ff4d0d0868d403944b2c034f8683e2185ad","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Specify?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Specify","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/faaa3ff4d0d0868d403944b2c034f8683e2185ad","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Specify?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/faaa3ff4d0d0868d403944b2c034f8683e2185ad","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Specify"}},{"name":"Specta","path":"Specs/Specta","sha":"07de6589934b012323a1818401370928268188c5","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Specta?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Specta","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/07de6589934b012323a1818401370928268188c5","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Specta?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/07de6589934b012323a1818401370928268188c5","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Specta"}},{"name":"StackBluriOS","path":"Specs/StackBluriOS","sha":"5493bff52a7b93f055885ca7b4ea7e0a9d8eb4e7","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/StackBluriOS?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/StackBluriOS","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5493bff52a7b93f055885ca7b4ea7e0a9d8eb4e7","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/StackBluriOS?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5493bff52a7b93f055885ca7b4ea7e0a9d8eb4e7","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/StackBluriOS"}},{"name":"StackMob","path":"Specs/StackMob","sha":"8b51f3d6334888710f7c862232b74996a1ea0cd8","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/StackMob?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/StackMob","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8b51f3d6334888710f7c862232b74996a1ea0cd8","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/StackMob?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8b51f3d6334888710f7c862232b74996a1ea0cd8","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/StackMob"}},{"name":"StackMobPush","path":"Specs/StackMobPush","sha":"04817e8414c9aa060eb6d07c23842f008658989b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/StackMobPush?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/StackMobPush","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/04817e8414c9aa060eb6d07c23842f008658989b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/StackMobPush?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/04817e8414c9aa060eb6d07c23842f008658989b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/StackMobPush"}},{"name":"StandardPaths","path":"Specs/StandardPaths","sha":"fa560c1026f1bff1e1ced21396f1f32ae7ec4092","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/StandardPaths?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/StandardPaths","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fa560c1026f1bff1e1ced21396f1f32ae7ec4092","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/StandardPaths?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fa560c1026f1bff1e1ced21396f1f32ae7ec4092","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/StandardPaths"}},{"name":"StartAtLoginController","path":"Specs/StartAtLoginController","sha":"311e0a4d4a7cbad08cfe99430abaeb21dd98f956","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/StartAtLoginController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/StartAtLoginController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/311e0a4d4a7cbad08cfe99430abaeb21dd98f956","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/StartAtLoginController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/311e0a4d4a7cbad08cfe99430abaeb21dd98f956","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/StartAtLoginController"}},{"name":"StateMachine-GCDThreadsafe","path":"Specs/StateMachine-GCDThreadsafe","sha":"37ab9f7eca59e8770a4186fd5c21ab4c991c193e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/StateMachine-GCDThreadsafe?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/StateMachine-GCDThreadsafe","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/37ab9f7eca59e8770a4186fd5c21ab4c991c193e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/StateMachine-GCDThreadsafe?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/37ab9f7eca59e8770a4186fd5c21ab4c991c193e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/StateMachine-GCDThreadsafe"}},{"name":"StateMachine","path":"Specs/StateMachine","sha":"67e599168ad66ca2629f06412626e37d8b04c748","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/StateMachine?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/StateMachine","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/67e599168ad66ca2629f06412626e37d8b04c748","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/StateMachine?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/67e599168ad66ca2629f06412626e37d8b04c748","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/StateMachine"}},{"name":"StorageRoomKit","path":"Specs/StorageRoomKit","sha":"99149ba0f16f13b4ff1fec173e886c267301e9c5","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/StorageRoomKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/StorageRoomKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/99149ba0f16f13b4ff1fec173e886c267301e9c5","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/StorageRoomKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/99149ba0f16f13b4ff1fec173e886c267301e9c5","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/StorageRoomKit"}},{"name":"StoreKISS","path":"Specs/StoreKISS","sha":"6a3967b445e8da76de168d2cade98195a9fa44c6","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/StoreKISS?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/StoreKISS","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6a3967b445e8da76de168d2cade98195a9fa44c6","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/StoreKISS?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6a3967b445e8da76de168d2cade98195a9fa44c6","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/StoreKISS"}},{"name":"StringCoding","path":"Specs/StringCoding","sha":"9d801cc6ad44ba29b31c3d1b646b56d9517aff81","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/StringCoding?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/StringCoding","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9d801cc6ad44ba29b31c3d1b646b56d9517aff81","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/StringCoding?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9d801cc6ad44ba29b31c3d1b646b56d9517aff81","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/StringCoding"}},{"name":"StringScore","path":"Specs/StringScore","sha":"fe65d487871b05719adec921e467d61d09eb010a","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/StringScore?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/StringScore","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fe65d487871b05719adec921e467d61d09eb010a","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/StringScore?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fe65d487871b05719adec921e467d61d09eb010a","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/StringScore"}},{"name":"Stripe","path":"Specs/Stripe","sha":"f69c4a786445a8110cf32499c234221cd2429dcc","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Stripe?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Stripe","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f69c4a786445a8110cf32499c234221cd2429dcc","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Stripe?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f69c4a786445a8110cf32499c234221cd2429dcc","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Stripe"}},{"name":"Stubbilino","path":"Specs/Stubbilino","sha":"ca344ad0db30683e901b82161a847a87713e72cf","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Stubbilino?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Stubbilino","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ca344ad0db30683e901b82161a847a87713e72cf","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Stubbilino?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ca344ad0db30683e901b82161a847a87713e72cf","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Stubbilino"}},{"name":"StyledPageControl","path":"Specs/StyledPageControl","sha":"45bc293bd6d9fe228af78dcb5bf398d6ad00b4fd","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/StyledPageControl?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/StyledPageControl","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/45bc293bd6d9fe228af78dcb5bf398d6ad00b4fd","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/StyledPageControl?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/45bc293bd6d9fe228af78dcb5bf398d6ad00b4fd","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/StyledPageControl"}},{"name":"StyledTableViewCell-for-iOS","path":"Specs/StyledTableViewCell-for-iOS","sha":"0bac3cc7486243b625546e386750ee3ec12cc3e4","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/StyledTableViewCell-for-iOS?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/StyledTableViewCell-for-iOS","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0bac3cc7486243b625546e386750ee3ec12cc3e4","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/StyledTableViewCell-for-iOS?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0bac3cc7486243b625546e386750ee3ec12cc3e4","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/StyledTableViewCell-for-iOS"}},{"name":"SubjectiveScript.m","path":"Specs/SubjectiveScript.m","sha":"b36984f44d63dd565579bc3b50c50ea1ad919b14","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SubjectiveScript.m?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SubjectiveScript.m","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b36984f44d63dd565579bc3b50c50ea1ad919b14","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SubjectiveScript.m?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b36984f44d63dd565579bc3b50c50ea1ad919b14","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SubjectiveScript.m"}},{"name":"Surikae","path":"Specs/Surikae","sha":"26b50d9f332b7694a9e0a34d7fce4e955b85a5da","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Surikae?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Surikae","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/26b50d9f332b7694a9e0a34d7fce4e955b85a5da","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Surikae?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/26b50d9f332b7694a9e0a34d7fce4e955b85a5da","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Surikae"}},{"name":"Survey","path":"Specs/Survey","sha":"268f260a18f7664c9e22cae16931f5e3883fc6af","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Survey?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Survey","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/268f260a18f7664c9e22cae16931f5e3883fc6af","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Survey?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/268f260a18f7664c9e22cae16931f5e3883fc6af","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Survey"}},{"name":"SwipeView","path":"Specs/SwipeView","sha":"981ea8853d63701f32c716cb7f36828c8b018a5a","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SwipeView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SwipeView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/981ea8853d63701f32c716cb7f36828c8b018a5a","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/SwipeView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/981ea8853d63701f32c716cb7f36828c8b018a5a","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/SwipeView"}},{"name":"Syringe","path":"Specs/Syringe","sha":"de48173d91669a6a5328c844a63ba65c5ea905cc","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Syringe?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Syringe","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/de48173d91669a6a5328c844a63ba65c5ea905cc","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Syringe?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/de48173d91669a6a5328c844a63ba65c5ea905cc","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Syringe"}},{"name":"TBXML+NSDictionary","path":"Specs/TBXML+NSDictionary","sha":"e7790412cc166fd450d8f3fa3235055a318af554","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TBXML+NSDictionary?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TBXML+NSDictionary","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e7790412cc166fd450d8f3fa3235055a318af554","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TBXML+NSDictionary?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e7790412cc166fd450d8f3fa3235055a318af554","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TBXML+NSDictionary"}},{"name":"TBXML","path":"Specs/TBXML","sha":"d1f9c6ffbb4879a6bdd566e8670e7d052c0a6f07","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TBXML?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TBXML","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d1f9c6ffbb4879a6bdd566e8670e7d052c0a6f07","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TBXML?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d1f9c6ffbb4879a6bdd566e8670e7d052c0a6f07","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TBXML"}},{"name":"TBXMLPivotalForks","path":"Specs/TBXMLPivotalForks","sha":"a563f4cee3f92b26ba119937a5e832d08cb7aa45","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TBXMLPivotalForks?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TBXMLPivotalForks","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a563f4cee3f92b26ba119937a5e832d08cb7aa45","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TBXMLPivotalForks?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a563f4cee3f92b26ba119937a5e832d08cb7aa45","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TBXMLPivotalForks"}},{"name":"TCAsyncHashProtocol","path":"Specs/TCAsyncHashProtocol","sha":"1a3a5e83118b2febfe38c75c9dc961782c10609b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TCAsyncHashProtocol?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TCAsyncHashProtocol","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1a3a5e83118b2febfe38c75c9dc961782c10609b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TCAsyncHashProtocol?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1a3a5e83118b2febfe38c75c9dc961782c10609b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TCAsyncHashProtocol"}},{"name":"TCColorTest","path":"Specs/TCColorTest","sha":"e98048cf36ca21133ca8c53c70e61138fb01e32c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TCColorTest?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TCColorTest","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e98048cf36ca21133ca8c53c70e61138fb01e32c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TCColorTest?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e98048cf36ca21133ca8c53c70e61138fb01e32c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TCColorTest"}},{"name":"TCLocalizer","path":"Specs/TCLocalizer","sha":"86df620198cbdec65453d7fb682b08291e0634b5","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TCLocalizer?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TCLocalizer","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/86df620198cbdec65453d7fb682b08291e0634b5","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TCLocalizer?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/86df620198cbdec65453d7fb682b08291e0634b5","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TCLocalizer"}},{"name":"TDBadgedCell","path":"Specs/TDBadgedCell","sha":"f7cf682f9ca14f289c7b0833e884dfb061e0d466","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TDBadgedCell?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TDBadgedCell","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f7cf682f9ca14f289c7b0833e884dfb061e0d466","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TDBadgedCell?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f7cf682f9ca14f289c7b0833e884dfb061e0d466","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TDBadgedCell"}},{"name":"TGJSBridge","path":"Specs/TGJSBridge","sha":"99c78c1f6e531591753f3d962d2a17bb36cead7f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TGJSBridge?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TGJSBridge","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/99c78c1f6e531591753f3d962d2a17bb36cead7f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TGJSBridge?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/99c78c1f6e531591753f3d962d2a17bb36cead7f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TGJSBridge"}},{"name":"THCircularProgressView","path":"Specs/THCircularProgressView","sha":"cdb9d4f800d69a33cee98f6afc8f8ae65b9966fb","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/THCircularProgressView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/THCircularProgressView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/cdb9d4f800d69a33cee98f6afc8f8ae65b9966fb","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/THCircularProgressView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/cdb9d4f800d69a33cee98f6afc8f8ae65b9966fb","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/THCircularProgressView"}},{"name":"THContactPicker","path":"Specs/THContactPicker","sha":"5c285c5d940a62979ec05a317b26dc1e2f40f970","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/THContactPicker?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/THContactPicker","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5c285c5d940a62979ec05a317b26dc1e2f40f970","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/THContactPicker?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5c285c5d940a62979ec05a317b26dc1e2f40f970","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/THContactPicker"}},{"name":"THLabel","path":"Specs/THLabel","sha":"66e803b934090e35d342616e5cc1feb71a7c62f6","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/THLabel?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/THLabel","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/66e803b934090e35d342616e5cc1feb71a7c62f6","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/THLabel?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/66e803b934090e35d342616e5cc1feb71a7c62f6","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/THLabel"}},{"name":"THObserversAndBinders","path":"Specs/THObserversAndBinders","sha":"0ea820e37e56e90738f9247b6bd4a7963ef30941","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/THObserversAndBinders?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/THObserversAndBinders","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0ea820e37e56e90738f9247b6bd4a7963ef30941","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/THObserversAndBinders?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0ea820e37e56e90738f9247b6bd4a7963ef30941","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/THObserversAndBinders"}},{"name":"TISwipeableTableView","path":"Specs/TISwipeableTableView","sha":"e0059d74e81d688695999a7621f7b06c37c9a83d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TISwipeableTableView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TISwipeableTableView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e0059d74e81d688695999a7621f7b06c37c9a83d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TISwipeableTableView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e0059d74e81d688695999a7621f7b06c37c9a83d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TISwipeableTableView"}},{"name":"TITokenField","path":"Specs/TITokenField","sha":"519927d425cbe6e3a702c867353272521cebc4d9","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TITokenField?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TITokenField","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/519927d425cbe6e3a702c867353272521cebc4d9","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TITokenField?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/519927d425cbe6e3a702c867353272521cebc4d9","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TITokenField"}},{"name":"TKRoundedView","path":"Specs/TKRoundedView","sha":"82ab60920cc283995347da5b33d162de234ac6c7","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TKRoundedView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TKRoundedView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/82ab60920cc283995347da5b33d162de234ac6c7","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TKRoundedView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/82ab60920cc283995347da5b33d162de234ac6c7","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TKRoundedView"}},{"name":"TKSenTestAsync","path":"Specs/TKSenTestAsync","sha":"9b476c0c153f44b5cff477d218897e43c4998bb4","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TKSenTestAsync?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TKSenTestAsync","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9b476c0c153f44b5cff477d218897e43c4998bb4","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TKSenTestAsync?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9b476c0c153f44b5cff477d218897e43c4998bb4","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TKSenTestAsync"}},{"name":"TLSignals","path":"Specs/TLSignals","sha":"d8fa936643292de339461a66c6638c1c01ca3248","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TLSignals?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TLSignals","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d8fa936643292de339461a66c6638c1c01ca3248","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TLSignals?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d8fa936643292de339461a66c6638c1c01ca3248","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TLSignals"}},{"name":"TLTiltHighlightView","path":"Specs/TLTiltHighlightView","sha":"b0582ec47ce59e75f1d250bb373114bf9901cb3f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TLTiltHighlightView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TLTiltHighlightView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b0582ec47ce59e75f1d250bb373114bf9901cb3f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TLTiltHighlightView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b0582ec47ce59e75f1d250bb373114bf9901cb3f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TLTiltHighlightView"}},{"name":"TLTiltSlider","path":"Specs/TLTiltSlider","sha":"45c7e3a90f901e985c6036fe6a9996a6cb555d1f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TLTiltSlider?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TLTiltSlider","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/45c7e3a90f901e985c6036fe6a9996a6cb555d1f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TLTiltSlider?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/45c7e3a90f901e985c6036fe6a9996a6cb555d1f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TLTiltSlider"}},{"name":"TMCache","path":"Specs/TMCache","sha":"ad6f5bd55bb470e24ac7a6e900cc7632c19dd70f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TMCache?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TMCache","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ad6f5bd55bb470e24ac7a6e900cc7632c19dd70f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TMCache?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ad6f5bd55bb470e24ac7a6e900cc7632c19dd70f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TMCache"}},{"name":"TMQuiltView","path":"Specs/TMQuiltView","sha":"f8caa4beb711baba653bf393900fd98785064487","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TMQuiltView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TMQuiltView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f8caa4beb711baba653bf393900fd98785064487","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TMQuiltView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f8caa4beb711baba653bf393900fd98785064487","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TMQuiltView"}},{"name":"TMTumblrSDK","path":"Specs/TMTumblrSDK","sha":"50bfdf2f7327c50e4c88e9366132381f8ea323d0","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TMTumblrSDK?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TMTumblrSDK","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/50bfdf2f7327c50e4c88e9366132381f8ea323d0","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TMTumblrSDK?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/50bfdf2f7327c50e4c88e9366132381f8ea323d0","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TMTumblrSDK"}},{"name":"TPCircularBuffer","path":"Specs/TPCircularBuffer","sha":"715174e2816cddbb5f04323605288ab8ef12c020","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TPCircularBuffer?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TPCircularBuffer","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/715174e2816cddbb5f04323605288ab8ef12c020","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TPCircularBuffer?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/715174e2816cddbb5f04323605288ab8ef12c020","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TPCircularBuffer"}},{"name":"TPKeyboardAvoiding","path":"Specs/TPKeyboardAvoiding","sha":"ac1dac559c0b9d459774d1a5480cf53df7406b35","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TPKeyboardAvoiding?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TPKeyboardAvoiding","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ac1dac559c0b9d459774d1a5480cf53df7406b35","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TPKeyboardAvoiding?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ac1dac559c0b9d459774d1a5480cf53df7406b35","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TPKeyboardAvoiding"}},{"name":"TRAutocompleteView","path":"Specs/TRAutocompleteView","sha":"643fa36914788a00a5cd5001462351786082de9f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TRAutocompleteView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TRAutocompleteView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/643fa36914788a00a5cd5001462351786082de9f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TRAutocompleteView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/643fa36914788a00a5cd5001462351786082de9f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TRAutocompleteView"}},{"name":"TRVSNavigationControllerTransition","path":"Specs/TRVSNavigationControllerTransition","sha":"6f2bad112013f109af1cbabedde4cb3e12f8a109","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TRVSNavigationControllerTransition?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TRVSNavigationControllerTransition","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6f2bad112013f109af1cbabedde4cb3e12f8a109","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TRVSNavigationControllerTransition?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6f2bad112013f109af1cbabedde4cb3e12f8a109","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TRVSNavigationControllerTransition"}},{"name":"TSLibraryImport","path":"Specs/TSLibraryImport","sha":"c68c7be487ccc0f06686e7aff6a49bc9d45e9acc","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TSLibraryImport?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TSLibraryImport","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c68c7be487ccc0f06686e7aff6a49bc9d45e9acc","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TSLibraryImport?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c68c7be487ccc0f06686e7aff6a49bc9d45e9acc","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TSLibraryImport"}},{"name":"TSMessages","path":"Specs/TSMessages","sha":"1a215a8171c6856962076b25d6b04d43e56d81cf","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TSMessages?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TSMessages","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1a215a8171c6856962076b25d6b04d43e56d81cf","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TSMessages?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1a215a8171c6856962076b25d6b04d43e56d81cf","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TSMessages"}},{"name":"TSMiniWebBrowser","path":"Specs/TSMiniWebBrowser","sha":"148f3b33371c06fc1ef57ecd278501f275f22eaf","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TSMiniWebBrowser?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TSMiniWebBrowser","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/148f3b33371c06fc1ef57ecd278501f275f22eaf","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TSMiniWebBrowser?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/148f3b33371c06fc1ef57ecd278501f275f22eaf","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TSMiniWebBrowser"}},{"name":"TTOpenInAppActivity","path":"Specs/TTOpenInAppActivity","sha":"f2163bf714053574f8164eda18f29a0940cd1482","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TTOpenInAppActivity?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TTOpenInAppActivity","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f2163bf714053574f8164eda18f29a0940cd1482","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TTOpenInAppActivity?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f2163bf714053574f8164eda18f29a0940cd1482","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TTOpenInAppActivity"}},{"name":"TTSwitch","path":"Specs/TTSwitch","sha":"da7f6f5b928b02bba57e7c1102a13fafa1a17ffb","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TTSwitch?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TTSwitch","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/da7f6f5b928b02bba57e7c1102a13fafa1a17ffb","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TTSwitch?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/da7f6f5b928b02bba57e7c1102a13fafa1a17ffb","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TTSwitch"}},{"name":"TTTAttributedLabel","path":"Specs/TTTAttributedLabel","sha":"97860880c1433409250a226734e129d4f3cd540b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TTTAttributedLabel?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TTTAttributedLabel","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/97860880c1433409250a226734e129d4f3cd540b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TTTAttributedLabel?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/97860880c1433409250a226734e129d4f3cd540b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TTTAttributedLabel"}},{"name":"TTTLocalizedPluralString","path":"Specs/TTTLocalizedPluralString","sha":"8af92924d9c800e65c620027b58d531f20b7205f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TTTLocalizedPluralString?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TTTLocalizedPluralString","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8af92924d9c800e65c620027b58d531f20b7205f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TTTLocalizedPluralString?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8af92924d9c800e65c620027b58d531f20b7205f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TTTLocalizedPluralString"}},{"name":"TULayoutAdditions","path":"Specs/TULayoutAdditions","sha":"45b60be130a3001824a8e883424ac19169dbb29f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TULayoutAdditions?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TULayoutAdditions","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/45b60be130a3001824a8e883424ac19169dbb29f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TULayoutAdditions?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/45b60be130a3001824a8e883424ac19169dbb29f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TULayoutAdditions"}},{"name":"TUSafariActivity","path":"Specs/TUSafariActivity","sha":"0ae5ecb32613be7f030389021457a14eed333964","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TUSafariActivity?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TUSafariActivity","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0ae5ecb32613be7f030389021457a14eed333964","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TUSafariActivity?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0ae5ecb32613be7f030389021457a14eed333964","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TUSafariActivity"}},{"name":"TVCalibratedSlider","path":"Specs/TVCalibratedSlider","sha":"8031ed70163431de6b143641811f0550f11264ba","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TVCalibratedSlider?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TVCalibratedSlider","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8031ed70163431de6b143641811f0550f11264ba","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TVCalibratedSlider?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8031ed70163431de6b143641811f0550f11264ba","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TVCalibratedSlider"}},{"name":"TVPickerView","path":"Specs/TVPickerView","sha":"08d89901079731b1895d2bcea37932141d8fdabe","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TVPickerView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TVPickerView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/08d89901079731b1895d2bcea37932141d8fdabe","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TVPickerView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/08d89901079731b1895d2bcea37932141d8fdabe","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TVPickerView"}},{"name":"TWReverseAuth","path":"Specs/TWReverseAuth","sha":"be8c3919e13174441f5d7fc1e68015cedbd74b05","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TWReverseAuth?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TWReverseAuth","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/be8c3919e13174441f5d7fc1e68015cedbd74b05","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TWReverseAuth?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/be8c3919e13174441f5d7fc1e68015cedbd74b05","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TWReverseAuth"}},{"name":"TXMainThreadCoreDataHelper","path":"Specs/TXMainThreadCoreDataHelper","sha":"e168c1840f29cc9027c9798983e51ff7f1d2d7d1","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TXMainThreadCoreDataHelper?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TXMainThreadCoreDataHelper","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e168c1840f29cc9027c9798983e51ff7f1d2d7d1","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TXMainThreadCoreDataHelper?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e168c1840f29cc9027c9798983e51ff7f1d2d7d1","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TXMainThreadCoreDataHelper"}},{"name":"TapkuLibrary","path":"Specs/TapkuLibrary","sha":"c350b0eb366585e352715d2fc155c17a39b17a1d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TapkuLibrary?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TapkuLibrary","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c350b0eb366585e352715d2fc155c17a39b17a1d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TapkuLibrary?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c350b0eb366585e352715d2fc155c17a39b17a1d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TapkuLibrary"}},{"name":"Tesseract-wrapper","path":"Specs/Tesseract-wrapper","sha":"54055e0805f73006c65469f8d2e2737b67a90763","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Tesseract-wrapper?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Tesseract-wrapper","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/54055e0805f73006c65469f8d2e2737b67a90763","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Tesseract-wrapper?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/54055e0805f73006c65469f8d2e2737b67a90763","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Tesseract-wrapper"}},{"name":"Tesseract","path":"Specs/Tesseract","sha":"a01023d48bbf3b6ebe2ee7c0f2497a2c8d1a8821","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Tesseract?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Tesseract","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a01023d48bbf3b6ebe2ee7c0f2497a2c8d1a8821","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Tesseract?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a01023d48bbf3b6ebe2ee7c0f2497a2c8d1a8821","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Tesseract"}},{"name":"TestFlightLogger","path":"Specs/TestFlightLogger","sha":"ecf9fe182e23c2736eb70edc34032e0a558e0287","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TestFlightLogger?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TestFlightLogger","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ecf9fe182e23c2736eb70edc34032e0a558e0287","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TestFlightLogger?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ecf9fe182e23c2736eb70edc34032e0a558e0287","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TestFlightLogger"}},{"name":"TestFlightSDK","path":"Specs/TestFlightSDK","sha":"9bccd6e833617dbdf628dbb6eddf7bac67724667","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TestFlightSDK?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TestFlightSDK","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9bccd6e833617dbdf628dbb6eddf7bac67724667","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TestFlightSDK?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9bccd6e833617dbdf628dbb6eddf7bac67724667","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TestFlightSDK"}},{"name":"TestPilot","path":"Specs/TestPilot","sha":"feb66d2df642164e9c0e19750ba6cc0e253e02a1","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TestPilot?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TestPilot","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/feb66d2df642164e9c0e19750ba6cc0e253e02a1","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TestPilot?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/feb66d2df642164e9c0e19750ba6cc0e253e02a1","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TestPilot"}},{"name":"TextExpander","path":"Specs/TextExpander","sha":"c69278466b83e4894392236947410e3b5b7c7da8","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TextExpander?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TextExpander","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c69278466b83e4894392236947410e3b5b7c7da8","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TextExpander?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c69278466b83e4894392236947410e3b5b7c7da8","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TextExpander"}},{"name":"TheKitchenSync","path":"Specs/TheKitchenSync","sha":"192ce007c496725426b9951fbb5f94f71a4e945a","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TheKitchenSync?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TheKitchenSync","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/192ce007c496725426b9951fbb5f94f71a4e945a","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TheKitchenSync?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/192ce007c496725426b9951fbb5f94f71a4e945a","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TheKitchenSync"}},{"name":"Three20","path":"Specs/Three20","sha":"0ebd024cacc949ab3b574e8c7d02754340dbae0b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Three20?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Three20","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0ebd024cacc949ab3b574e8c7d02754340dbae0b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Three20?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0ebd024cacc949ab3b574e8c7d02754340dbae0b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Three20"}},{"name":"Three20Lite","path":"Specs/Three20Lite","sha":"1623eee3cdc800f156ea4582df06ddc844f468ac","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Three20Lite?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Three20Lite","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1623eee3cdc800f156ea4582df06ddc844f468ac","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Three20Lite?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1623eee3cdc800f156ea4582df06ddc844f468ac","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Three20Lite"}},{"name":"TimeScroller","path":"Specs/TimeScroller","sha":"022f45375eaf49e9862e74ac295b32128cb6bee1","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TimeScroller?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TimeScroller","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/022f45375eaf49e9862e74ac295b32128cb6bee1","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TimeScroller?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/022f45375eaf49e9862e74ac295b32128cb6bee1","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TimeScroller"}},{"name":"TimesSquare","path":"Specs/TimesSquare","sha":"54d6479bd530ca3c6309889884e41ea0007f9292","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TimesSquare?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TimesSquare","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/54d6479bd530ca3c6309889884e41ea0007f9292","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TimesSquare?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/54d6479bd530ca3c6309889884e41ea0007f9292","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TimesSquare"}},{"name":"Tin","path":"Specs/Tin","sha":"be2dc7c6be441539498913f7f8ee7d78eb44b56c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Tin?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Tin","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/be2dc7c6be441539498913f7f8ee7d78eb44b56c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Tin?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/be2dc7c6be441539498913f7f8ee7d78eb44b56c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Tin"}},{"name":"Toast","path":"Specs/Toast","sha":"028c83515e3fa75454c08d5f2bf1bf36399bdeed","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Toast?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Toast","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/028c83515e3fa75454c08d5f2bf1bf36399bdeed","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Toast?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/028c83515e3fa75454c08d5f2bf1bf36399bdeed","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Toast"}},{"name":"TouchDB","path":"Specs/TouchDB","sha":"7ca02f1a32444a1a895b3db7d281d31f381178e9","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TouchDB?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TouchDB","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7ca02f1a32444a1a895b3db7d281d31f381178e9","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TouchDB?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7ca02f1a32444a1a895b3db7d281d31f381178e9","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TouchDB"}},{"name":"TouchJSON","path":"Specs/TouchJSON","sha":"e5c3a7bb97963228ddbc69888343697d9f4ad425","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TouchJSON?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TouchJSON","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e5c3a7bb97963228ddbc69888343697d9f4ad425","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TouchJSON?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e5c3a7bb97963228ddbc69888343697d9f4ad425","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TouchJSON"}},{"name":"TouchXML","path":"Specs/TouchXML","sha":"72ea707efe7c26b0a4123f0186af98ab2df07a73","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TouchXML?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TouchXML","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/72ea707efe7c26b0a4123f0186af98ab2df07a73","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TouchXML?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/72ea707efe7c26b0a4123f0186af98ab2df07a73","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TouchXML"}},{"name":"TownPlan","path":"Specs/TownPlan","sha":"1508ed3ac37fbb9e38f046aa854388ef1822dbc3","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TownPlan?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TownPlan","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1508ed3ac37fbb9e38f046aa854388ef1822dbc3","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TownPlan?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1508ed3ac37fbb9e38f046aa854388ef1822dbc3","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TownPlan"}},{"name":"Train","path":"Specs/Train","sha":"2587cdc886e1c8fbc05891008ff6371e3768a643","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Train?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Train","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2587cdc886e1c8fbc05891008ff6371e3768a643","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Train?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2587cdc886e1c8fbc05891008ff6371e3768a643","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Train"}},{"name":"Transcript","path":"Specs/Transcript","sha":"f4fa52bc1f733d00c520a21cd29a04c6bbc44cd7","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Transcript?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Transcript","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f4fa52bc1f733d00c520a21cd29a04c6bbc44cd7","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Transcript?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f4fa52bc1f733d00c520a21cd29a04c6bbc44cd7","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Transcript"}},{"name":"TransformerKit","path":"Specs/TransformerKit","sha":"2d7e98479e94509416deaf14275a7b66df081b78","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TransformerKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TransformerKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2d7e98479e94509416deaf14275a7b66df081b78","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TransformerKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2d7e98479e94509416deaf14275a7b66df081b78","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TransformerKit"}},{"name":"TransitionKit","path":"Specs/TransitionKit","sha":"9ef98c318ec2adf62ca4fff3aa6bbeff1ae62453","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TransitionKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TransitionKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9ef98c318ec2adf62ca4fff3aa6bbeff1ae62453","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TransitionKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9ef98c318ec2adf62ca4fff3aa6bbeff1ae62453","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TransitionKit"}},{"name":"TumbleOn-Utils","path":"Specs/TumbleOn-Utils","sha":"b9bedaaad65c8d7fb12e4d7ec3cc44dc10b35f67","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TumbleOn-Utils?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TumbleOn-Utils","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b9bedaaad65c8d7fb12e4d7ec3cc44dc10b35f67","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TumbleOn-Utils?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b9bedaaad65c8d7fb12e4d7ec3cc44dc10b35f67","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TumbleOn-Utils"}},{"name":"TwUI","path":"Specs/TwUI","sha":"c1fd9f590fe69ca395db23ba59c135f975c73d72","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TwUI?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TwUI","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c1fd9f590fe69ca395db23ba59c135f975c73d72","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TwUI?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c1fd9f590fe69ca395db23ba59c135f975c73d72","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TwUI"}},{"name":"TwelveTwentyToolkit","path":"Specs/TwelveTwentyToolkit","sha":"b8537e716f953d55ce04de856e5f54e1facabe68","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TwelveTwentyToolkit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TwelveTwentyToolkit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b8537e716f953d55ce04de856e5f54e1facabe68","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/TwelveTwentyToolkit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b8537e716f953d55ce04de856e5f54e1facabe68","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/TwelveTwentyToolkit"}},{"name":"Typewriter","path":"Specs/Typewriter","sha":"5e7cf3c5e22f8387c7869edda73a177fa56498a9","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Typewriter?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Typewriter","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5e7cf3c5e22f8387c7869edda73a177fa56498a9","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Typewriter?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5e7cf3c5e22f8387c7869edda73a177fa56498a9","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Typewriter"}},{"name":"Typhoon","path":"Specs/Typhoon","sha":"236d62ef6ac93a04bac0487690b736f6f50a0ef7","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Typhoon?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Typhoon","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/236d62ef6ac93a04bac0487690b736f6f50a0ef7","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Typhoon?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/236d62ef6ac93a04bac0487690b736f6f50a0ef7","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Typhoon"}},{"name":"UAGithubEngine","path":"Specs/UAGithubEngine","sha":"6925c33e8af2728c5e5e95bc025c9d9afc1b478b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UAGithubEngine?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UAGithubEngine","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6925c33e8af2728c5e5e95bc025c9d9afc1b478b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UAGithubEngine?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6925c33e8af2728c5e5e95bc025c9d9afc1b478b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UAGithubEngine"}},{"name":"UAModalPanel","path":"Specs/UAModalPanel","sha":"5d5800aec0659f83f588dba372b2d934b6907e4b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UAModalPanel?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UAModalPanel","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5d5800aec0659f83f588dba372b2d934b6907e4b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UAModalPanel?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5d5800aec0659f83f588dba372b2d934b6907e4b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UAModalPanel"}},{"name":"UDBarTrackballItem","path":"Specs/UDBarTrackballItem","sha":"f31e6301c4affce11f85f672c51bcc69da691890","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UDBarTrackballItem?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UDBarTrackballItem","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f31e6301c4affce11f85f672c51bcc69da691890","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UDBarTrackballItem?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f31e6301c4affce11f85f672c51bcc69da691890","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UDBarTrackballItem"}},{"name":"UDTableView","path":"Specs/UDTableView","sha":"31a757823e946da62f55c7e0e6eda4dfb3cb11d2","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UDTableView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UDTableView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/31a757823e946da62f55c7e0e6eda4dfb3cb11d2","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UDTableView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/31a757823e946da62f55c7e0e6eda4dfb3cb11d2","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UDTableView"}},{"name":"UIActivityIndicator-for-SDWebImage","path":"Specs/UIActivityIndicator-for-SDWebImage","sha":"725b8a656b44180bd2676f0a048f53e64b6d3088","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UIActivityIndicator-for-SDWebImage?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UIActivityIndicator-for-SDWebImage","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/725b8a656b44180bd2676f0a048f53e64b6d3088","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UIActivityIndicator-for-SDWebImage?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/725b8a656b44180bd2676f0a048f53e64b6d3088","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UIActivityIndicator-for-SDWebImage"}},{"name":"UIAlertView-Blocks","path":"Specs/UIAlertView-Blocks","sha":"8910dde048c04bd605676a8bab6e35ac7139867d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UIAlertView-Blocks?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UIAlertView-Blocks","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8910dde048c04bd605676a8bab6e35ac7139867d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UIAlertView-Blocks?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8910dde048c04bd605676a8bab6e35ac7139867d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UIAlertView-Blocks"}},{"name":"UIBezierPath-Symbol","path":"Specs/UIBezierPath-Symbol","sha":"9396756efc713f4e7123b3a29d69b63c8f164d68","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UIBezierPath-Symbol?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UIBezierPath-Symbol","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9396756efc713f4e7123b3a29d69b63c8f164d68","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UIBezierPath-Symbol?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9396756efc713f4e7123b3a29d69b63c8f164d68","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UIBezierPath-Symbol"}},{"name":"UIBubbleTableView","path":"Specs/UIBubbleTableView","sha":"720bba5b3cb4ee44d7aff1527e5e34fb2103c6fd","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UIBubbleTableView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UIBubbleTableView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/720bba5b3cb4ee44d7aff1527e5e34fb2103c6fd","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UIBubbleTableView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/720bba5b3cb4ee44d7aff1527e5e34fb2103c6fd","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UIBubbleTableView"}},{"name":"UICKeyChainStore","path":"Specs/UICKeyChainStore","sha":"6a6339ca096006afcb9fccad36868c7a8f8f97f1","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UICKeyChainStore?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UICKeyChainStore","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6a6339ca096006afcb9fccad36868c7a8f8f97f1","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UICKeyChainStore?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6a6339ca096006afcb9fccad36868c7a8f8f97f1","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UICKeyChainStore"}},{"name":"UICollectionViewEmptyState","path":"Specs/UICollectionViewEmptyState","sha":"d8329f43f8143adb2e9cfadaba748f7d7233a813","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UICollectionViewEmptyState?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UICollectionViewEmptyState","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d8329f43f8143adb2e9cfadaba748f7d7233a813","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UICollectionViewEmptyState?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d8329f43f8143adb2e9cfadaba748f7d7233a813","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UICollectionViewEmptyState"}},{"name":"UIColor+MLPFlatColors","path":"Specs/UIColor+MLPFlatColors","sha":"bcb4ceb5326594c015d4b45e52b902935f5bf82b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UIColor+MLPFlatColors?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UIColor+MLPFlatColors","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/bcb4ceb5326594c015d4b45e52b902935f5bf82b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UIColor+MLPFlatColors?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/bcb4ceb5326594c015d4b45e52b902935f5bf82b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UIColor+MLPFlatColors"}},{"name":"UIColor-CrossFade","path":"Specs/UIColor-CrossFade","sha":"af49b0b55e37388d9730bef09ccb0c9365603852","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UIColor-CrossFade?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UIColor-CrossFade","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/af49b0b55e37388d9730bef09ccb0c9365603852","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UIColor-CrossFade?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/af49b0b55e37388d9730bef09ccb0c9365603852","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UIColor-CrossFade"}},{"name":"UIColor-Utilities","path":"Specs/UIColor-Utilities","sha":"a9087fc495dfe53073fa9ed52c6acaa6a7e70bce","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UIColor-Utilities?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UIColor-Utilities","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a9087fc495dfe53073fa9ed52c6acaa6a7e70bce","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UIColor-Utilities?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a9087fc495dfe53073fa9ed52c6acaa6a7e70bce","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UIColor-Utilities"}},{"name":"UIDeviceAddition","path":"Specs/UIDeviceAddition","sha":"34d209fd5467f9e2bf0532b07b5183a7bf9072fd","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UIDeviceAddition?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UIDeviceAddition","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/34d209fd5467f9e2bf0532b07b5183a7bf9072fd","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UIDeviceAddition?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/34d209fd5467f9e2bf0532b07b5183a7bf9072fd","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UIDeviceAddition"}},{"name":"UIDeviceIdentifier","path":"Specs/UIDeviceIdentifier","sha":"c772ef640a62d97ae2a7c932c8c42e5db0191b9b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UIDeviceIdentifier?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UIDeviceIdentifier","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c772ef640a62d97ae2a7c932c8c42e5db0191b9b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UIDeviceIdentifier?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c772ef640a62d97ae2a7c932c8c42e5db0191b9b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UIDeviceIdentifier"}},{"name":"UIGlossyButton","path":"Specs/UIGlossyButton","sha":"da81b74d2cacbb77edc453defe0e2aabba46f468","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UIGlossyButton?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UIGlossyButton","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/da81b74d2cacbb77edc453defe0e2aabba46f468","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UIGlossyButton?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/da81b74d2cacbb77edc453defe0e2aabba46f468","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UIGlossyButton"}},{"name":"UIImage+PDF","path":"Specs/UIImage+PDF","sha":"d74434d94b6caa0d12c5272a70dcd43076255818","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UIImage+PDF?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UIImage+PDF","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d74434d94b6caa0d12c5272a70dcd43076255818","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UIImage+PDF?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d74434d94b6caa0d12c5272a70dcd43076255818","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UIImage+PDF"}},{"name":"UIImage-Categories","path":"Specs/UIImage-Categories","sha":"97726a88f539a2ea5865babe0c9b0968d918bc18","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UIImage-Categories?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UIImage-Categories","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/97726a88f539a2ea5865babe0c9b0968d918bc18","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UIImage-Categories?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/97726a88f539a2ea5865babe0c9b0968d918bc18","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UIImage-Categories"}},{"name":"UIImage-Resize","path":"Specs/UIImage-Resize","sha":"e8ad80065e1a5f1f4964d7654c87e734661196ee","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UIImage-Resize?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UIImage-Resize","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e8ad80065e1a5f1f4964d7654c87e734661196ee","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UIImage-Resize?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e8ad80065e1a5f1f4964d7654c87e734661196ee","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UIImage-Resize"}},{"name":"UIKitCategoryAdditions","path":"Specs/UIKitCategoryAdditions","sha":"13aa4b3247972bd0b62ca49b2b40d75842561aa4","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UIKitCategoryAdditions?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UIKitCategoryAdditions","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/13aa4b3247972bd0b62ca49b2b40d75842561aa4","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UIKitCategoryAdditions?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/13aa4b3247972bd0b62ca49b2b40d75842561aa4","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UIKitCategoryAdditions"}},{"name":"UIKitHelper","path":"Specs/UIKitHelper","sha":"36657fdf878e7780f0305ce13ff8063ac9a58684","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UIKitHelper?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UIKitHelper","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/36657fdf878e7780f0305ce13ff8063ac9a58684","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UIKitHelper?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/36657fdf878e7780f0305ce13ff8063ac9a58684","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UIKitHelper"}},{"name":"UIMenuItem-CXAImageSupport","path":"Specs/UIMenuItem-CXAImageSupport","sha":"4ff94f090e1c999cc8deebddcb05db6ba535932c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UIMenuItem-CXAImageSupport?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UIMenuItem-CXAImageSupport","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4ff94f090e1c999cc8deebddcb05db6ba535932c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UIMenuItem-CXAImageSupport?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4ff94f090e1c999cc8deebddcb05db6ba535932c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UIMenuItem-CXAImageSupport"}},{"name":"UIResponder+KeyboardCache","path":"Specs/UIResponder+KeyboardCache","sha":"e502ee65e45a3ece8abba30b4faad9c5057ff627","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UIResponder+KeyboardCache?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UIResponder+KeyboardCache","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e502ee65e45a3ece8abba30b4faad9c5057ff627","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UIResponder+KeyboardCache?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e502ee65e45a3ece8abba30b4faad9c5057ff627","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UIResponder+KeyboardCache"}},{"name":"UIResponder+MNActions","path":"Specs/UIResponder+MNActions","sha":"cf250371767827c017ddc9dc4cd26d8606c26efd","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UIResponder+MNActions?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UIResponder+MNActions","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/cf250371767827c017ddc9dc4cd26d8606c26efd","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UIResponder+MNActions?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/cf250371767827c017ddc9dc4cd26d8606c26efd","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UIResponder+MNActions"}},{"name":"UISS","path":"Specs/UISS","sha":"b6888adccabf322aaac4b5ff4f1324eac4bf68f7","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UISS?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UISS","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b6888adccabf322aaac4b5ff4f1324eac4bf68f7","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UISS?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b6888adccabf322aaac4b5ff4f1324eac4bf68f7","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UISS"}},{"name":"UITableView-NXEmptyView","path":"Specs/UITableView-NXEmptyView","sha":"6d9c6d6e9e26e4cebe54fcc1e12e27a2110c2e84","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UITableView-NXEmptyView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UITableView-NXEmptyView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6d9c6d6e9e26e4cebe54fcc1e12e27a2110c2e84","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UITableView-NXEmptyView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6d9c6d6e9e26e4cebe54fcc1e12e27a2110c2e84","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UITableView-NXEmptyView"}},{"name":"UITextView+PinchZoom","path":"Specs/UITextView+PinchZoom","sha":"8991959f54b03e739aafd357b993ea23bbce8e73","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UITextView+PinchZoom?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UITextView+PinchZoom","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8991959f54b03e739aafd357b993ea23bbce8e73","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UITextView+PinchZoom?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8991959f54b03e739aafd357b993ea23bbce8e73","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UITextView+PinchZoom"}},{"name":"UIView+FrameAdditions","path":"Specs/UIView+FrameAdditions","sha":"c1200d6bf020d427fae26fd9425720a154c0a343","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UIView+FrameAdditions?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UIView+FrameAdditions","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c1200d6bf020d427fae26fd9425720a154c0a343","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UIView+FrameAdditions?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c1200d6bf020d427fae26fd9425720a154c0a343","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UIView+FrameAdditions"}},{"name":"UIView+Helpers","path":"Specs/UIView+Helpers","sha":"8a4de07c50909c62ed4d1482c6d52088d585bc57","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UIView+Helpers?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UIView+Helpers","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8a4de07c50909c62ed4d1482c6d52088d585bc57","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UIView+Helpers?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8a4de07c50909c62ed4d1482c6d52088d585bc57","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UIView+Helpers"}},{"name":"UIView+TKGeometry","path":"Specs/UIView+TKGeometry","sha":"8e96b7ac11130aef8063ab8aa550f46a461d6be9","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UIView+TKGeometry?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UIView+TKGeometry","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8e96b7ac11130aef8063ab8aa550f46a461d6be9","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UIView+TKGeometry?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8e96b7ac11130aef8063ab8aa550f46a461d6be9","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UIView+TKGeometry"}},{"name":"UIViewDrawRectBlock","path":"Specs/UIViewDrawRectBlock","sha":"17ce220e35153700402e277859a0d933403ca454","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UIViewDrawRectBlock?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UIViewDrawRectBlock","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/17ce220e35153700402e277859a0d933403ca454","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UIViewDrawRectBlock?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/17ce220e35153700402e277859a0d933403ca454","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UIViewDrawRectBlock"}},{"name":"UIViewPlusPosition","path":"Specs/UIViewPlusPosition","sha":"b45e5798b36e0844b2ce64139752a9058e6461e1","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UIViewPlusPosition?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UIViewPlusPosition","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b45e5798b36e0844b2ce64139752a9058e6461e1","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UIViewPlusPosition?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b45e5798b36e0844b2ce64139752a9058e6461e1","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UIViewPlusPosition"}},{"name":"UIWebViewRemoveShadow","path":"Specs/UIWebViewRemoveShadow","sha":"5743dd6ab98f555d138d7669d26b413c84738a65","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UIWebViewRemoveShadow?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UIWebViewRemoveShadow","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5743dd6ab98f555d138d7669d26b413c84738a65","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UIWebViewRemoveShadow?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5743dd6ab98f555d138d7669d26b413c84738a65","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UIWebViewRemoveShadow"}},{"name":"UMeng-Analytics","path":"Specs/UMeng-Analytics","sha":"9cff446ee664cb966b2fce0d728e2d9dccf55395","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UMeng-Analytics?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UMeng-Analytics","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9cff446ee664cb966b2fce0d728e2d9dccf55395","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UMeng-Analytics?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9cff446ee664cb966b2fce0d728e2d9dccf55395","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UMeng-Analytics"}},{"name":"UMeng","path":"Specs/UMeng","sha":"89de39eb703662aa572d440f6dbb742a787e5f22","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UMeng?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UMeng","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/89de39eb703662aa572d440f6dbb742a787e5f22","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UMeng?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/89de39eb703662aa572d440f6dbb742a787e5f22","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UMeng"}},{"name":"UMengAnalytics","path":"Specs/UMengAnalytics","sha":"58a86f794f902c72e08b4ce215bc1898d72116dd","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UMengAnalytics?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UMengAnalytics","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/58a86f794f902c72e08b4ce215bc1898d72116dd","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UMengAnalytics?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/58a86f794f902c72e08b4ce215bc1898d72116dd","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UMengAnalytics"}},{"name":"UMengAppNetwork","path":"Specs/UMengAppNetwork","sha":"20bff101f8172cc465960db3f55208916fc08f2d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UMengAppNetwork?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UMengAppNetwork","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/20bff101f8172cc465960db3f55208916fc08f2d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UMengAppNetwork?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/20bff101f8172cc465960db3f55208916fc08f2d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UMengAppNetwork"}},{"name":"UMengFeedback","path":"Specs/UMengFeedback","sha":"2aaacdf775c1fcbc19f205e556d8bcd81019f5ea","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UMengFeedback?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UMengFeedback","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2aaacdf775c1fcbc19f205e556d8bcd81019f5ea","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UMengFeedback?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2aaacdf775c1fcbc19f205e556d8bcd81019f5ea","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UMengFeedback"}},{"name":"UMengSocial","path":"Specs/UMengSocial","sha":"3fbf183acb34fb6e637e02744cdaecdca05150cc","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UMengSocial?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UMengSocial","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3fbf183acb34fb6e637e02744cdaecdca05150cc","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UMengSocial?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3fbf183acb34fb6e637e02744cdaecdca05150cc","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UMengSocial"}},{"name":"US2FormValidator","path":"Specs/US2FormValidator","sha":"6f535a9f0e15c79a386699e415c1460fd6a9706b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/US2FormValidator?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/US2FormValidator","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6f535a9f0e15c79a386699e415c1460fd6a9706b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/US2FormValidator?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6f535a9f0e15c79a386699e415c1460fd6a9706b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/US2FormValidator"}},{"name":"USStatesColorMap","path":"Specs/USStatesColorMap","sha":"51cf4609e909eec1f8bee6f672cc18c5468521f9","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/USStatesColorMap?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/USStatesColorMap","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/51cf4609e909eec1f8bee6f672cc18c5468521f9","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/USStatesColorMap?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/51cf4609e909eec1f8bee6f672cc18c5468521f9","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/USStatesColorMap"}},{"name":"UbiquityStoreManager","path":"Specs/UbiquityStoreManager","sha":"ca907b50c394ca08ec6eb63843cede2028afb4b0","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UbiquityStoreManager?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UbiquityStoreManager","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ca907b50c394ca08ec6eb63843cede2028afb4b0","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UbiquityStoreManager?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ca907b50c394ca08ec6eb63843cede2028afb4b0","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UbiquityStoreManager"}},{"name":"Underscore.m","path":"Specs/Underscore.m","sha":"351764b8338e317808048c9619670988dcc388c5","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Underscore.m?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Underscore.m","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/351764b8338e317808048c9619670988dcc388c5","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Underscore.m?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/351764b8338e317808048c9619670988dcc388c5","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Underscore.m"}},{"name":"UniversalDetector","path":"Specs/UniversalDetector","sha":"5947c3fadc96dedf4f9085d93a60907cff710e55","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UniversalDetector?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UniversalDetector","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5947c3fadc96dedf4f9085d93a60907cff710e55","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UniversalDetector?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5947c3fadc96dedf4f9085d93a60907cff710e55","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UniversalDetector"}},{"name":"UrbanAirship-iOS-SDK","path":"Specs/UrbanAirship-iOS-SDK","sha":"e6f24cd84f4e43378eb33b453f554a438aebd0c0","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UrbanAirship-iOS-SDK?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UrbanAirship-iOS-SDK","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e6f24cd84f4e43378eb33b453f554a438aebd0c0","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/UrbanAirship-iOS-SDK?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e6f24cd84f4e43378eb33b453f554a438aebd0c0","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/UrbanAirship-iOS-SDK"}},{"name":"V8HorizontalPickerView","path":"Specs/V8HorizontalPickerView","sha":"b47b01ba46ec567a0adc37b04dcc5418757c7e44","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/V8HorizontalPickerView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/V8HorizontalPickerView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b47b01ba46ec567a0adc37b04dcc5418757c7e44","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/V8HorizontalPickerView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b47b01ba46ec567a0adc37b04dcc5418757c7e44","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/V8HorizontalPickerView"}},{"name":"VIHorizontalTableView","path":"Specs/VIHorizontalTableView","sha":"7c52b365747d908d37dcbcfecb6b1263f6433039","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/VIHorizontalTableView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/VIHorizontalTableView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7c52b365747d908d37dcbcfecb6b1263f6433039","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/VIHorizontalTableView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7c52b365747d908d37dcbcfecb6b1263f6433039","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/VIHorizontalTableView"}},{"name":"VLMHarlemShake","path":"Specs/VLMHarlemShake","sha":"68a1950b8a10fb608b297585e48313d2de586329","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/VLMHarlemShake?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/VLMHarlemShake","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/68a1950b8a10fb608b297585e48313d2de586329","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/VLMHarlemShake?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/68a1950b8a10fb608b297585e48313d2de586329","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/VLMHarlemShake"}},{"name":"VPPCoreData","path":"Specs/VPPCoreData","sha":"43e30c657a5a6e8f69adabd67f1b909ccedb866e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/VPPCoreData?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/VPPCoreData","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/43e30c657a5a6e8f69adabd67f1b909ccedb866e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/VPPCoreData?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/43e30c657a5a6e8f69adabd67f1b909ccedb866e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/VPPCoreData"}},{"name":"VPPDropDown","path":"Specs/VPPDropDown","sha":"2d01620a1e986d4b0fa9fe0eb4f7495f18db39d2","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/VPPDropDown?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/VPPDropDown","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2d01620a1e986d4b0fa9fe0eb4f7495f18db39d2","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/VPPDropDown?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2d01620a1e986d4b0fa9fe0eb4f7495f18db39d2","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/VPPDropDown"}},{"name":"VPPLocation","path":"Specs/VPPLocation","sha":"eacdf86aa7f2b6ad773a8e0193bf987db453e98e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/VPPLocation?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/VPPLocation","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/eacdf86aa7f2b6ad773a8e0193bf987db453e98e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/VPPLocation?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/eacdf86aa7f2b6ad773a8e0193bf987db453e98e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/VPPLocation"}},{"name":"VPPMap","path":"Specs/VPPMap","sha":"8630d13080d7304a9e654e962354e260f735aeb4","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/VPPMap?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/VPPMap","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8630d13080d7304a9e654e962354e260f735aeb4","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/VPPMap?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8630d13080d7304a9e654e962354e260f735aeb4","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/VPPMap"}},{"name":"VPPReachability","path":"Specs/VPPReachability","sha":"2a63be57e9f05a61a07dc30d1f2fdba0dd4e55d9","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/VPPReachability?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/VPPReachability","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2a63be57e9f05a61a07dc30d1f2fdba0dd4e55d9","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/VPPReachability?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2a63be57e9f05a61a07dc30d1f2fdba0dd4e55d9","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/VPPReachability"}},{"name":"VeriJSON","path":"Specs/VeriJSON","sha":"ab4343a5a9e51fc81b6996aed6a4605ce45e0840","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/VeriJSON?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/VeriJSON","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ab4343a5a9e51fc81b6996aed6a4605ce45e0840","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/VeriJSON?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ab4343a5a9e51fc81b6996aed6a4605ce45e0840","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/VeriJSON"}},{"name":"VideoPlayerKit","path":"Specs/VideoPlayerKit","sha":"1ad5189c7f928af842a6a82558831a6f782f505e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/VideoPlayerKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/VideoPlayerKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1ad5189c7f928af842a6a82558831a6f782f505e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/VideoPlayerKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1ad5189c7f928af842a6a82558831a6f782f505e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/VideoPlayerKit"}},{"name":"ViewDeck","path":"Specs/ViewDeck","sha":"26438f0a886467deb6e59b9171131be4db9d1c1e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ViewDeck?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ViewDeck","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/26438f0a886467deb6e59b9171131be4db9d1c1e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ViewDeck?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/26438f0a886467deb6e59b9171131be4db9d1c1e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ViewDeck"}},{"name":"ViewUtils","path":"Specs/ViewUtils","sha":"b84c6e5ac6a6adab30d5c8f837381b9cb92d97d6","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ViewUtils?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ViewUtils","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b84c6e5ac6a6adab30d5c8f837381b9cb92d97d6","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ViewUtils?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b84c6e5ac6a6adab30d5c8f837381b9cb92d97d6","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ViewUtils"}},{"name":"Vkontakte-iOS-SDK","path":"Specs/Vkontakte-iOS-SDK","sha":"1f5514a465a7b83a3f2fa6d6b6df048aa1933e7b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Vkontakte-iOS-SDK?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Vkontakte-iOS-SDK","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1f5514a465a7b83a3f2fa6d6b6df048aa1933e7b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Vkontakte-iOS-SDK?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1f5514a465a7b83a3f2fa6d6b6df048aa1933e7b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Vkontakte-iOS-SDK"}},{"name":"WCAlertView","path":"Specs/WCAlertView","sha":"34effba7f4bb98b1a6ca52e07b78eb7b6e8334b0","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/WCAlertView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/WCAlertView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/34effba7f4bb98b1a6ca52e07b78eb7b6e8334b0","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/WCAlertView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/34effba7f4bb98b1a6ca52e07b78eb7b6e8334b0","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/WCAlertView"}},{"name":"WEPopover","path":"Specs/WEPopover","sha":"2dd9364f9213cb58b7da1422961c337bcd461995","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/WEPopover?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/WEPopover","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2dd9364f9213cb58b7da1422961c337bcd461995","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/WEPopover?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2dd9364f9213cb58b7da1422961c337bcd461995","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/WEPopover"}},{"name":"WFImagePickerPlus","path":"Specs/WFImagePickerPlus","sha":"1ea486cf20dc7aba4d0d923bd1df412c67312271","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/WFImagePickerPlus?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/WFImagePickerPlus","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1ea486cf20dc7aba4d0d923bd1df412c67312271","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/WFImagePickerPlus?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1ea486cf20dc7aba4d0d923bd1df412c67312271","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/WFImagePickerPlus"}},{"name":"WKTParser","path":"Specs/WKTParser","sha":"20a453af48aeff9fd2d3bdf311df3b757780ada3","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/WKTParser?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/WKTParser","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/20a453af48aeff9fd2d3bdf311df3b757780ada3","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/WKTParser?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/20a453af48aeff9fd2d3bdf311df3b757780ada3","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/WKTParser"}},{"name":"WKVerticalScrollBar","path":"Specs/WKVerticalScrollBar","sha":"ce300037de2c435fc3671add7945c1a5b286e1fa","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/WKVerticalScrollBar?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/WKVerticalScrollBar","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ce300037de2c435fc3671add7945c1a5b286e1fa","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/WKVerticalScrollBar?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ce300037de2c435fc3671add7945c1a5b286e1fa","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/WKVerticalScrollBar"}},{"name":"WMATweetView","path":"Specs/WMATweetView","sha":"820991ca54ce1ced6c17271427cc3241995804c5","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/WMATweetView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/WMATweetView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/820991ca54ce1ced6c17271427cc3241995804c5","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/WMATweetView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/820991ca54ce1ced6c17271427cc3241995804c5","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/WMATweetView"}},{"name":"WSAssetPickerController","path":"Specs/WSAssetPickerController","sha":"c4c29cf96bee602fd2e3c4399ef57571baede2e1","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/WSAssetPickerController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/WSAssetPickerController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c4c29cf96bee602fd2e3c4399ef57571baede2e1","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/WSAssetPickerController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c4c29cf96bee602fd2e3c4399ef57571baede2e1","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/WSAssetPickerController"}},{"name":"WSCoachMarksView","path":"Specs/WSCoachMarksView","sha":"664c5d6f0aa72926faf3ed0a5d30b02234bdd188","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/WSCoachMarksView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/WSCoachMarksView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/664c5d6f0aa72926faf3ed0a5d30b02234bdd188","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/WSCoachMarksView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/664c5d6f0aa72926faf3ed0a5d30b02234bdd188","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/WSCoachMarksView"}},{"name":"WTExtension","path":"Specs/WTExtension","sha":"68f9d18e8b43dce3cb1981b30770d3218a994489","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/WTExtension?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/WTExtension","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/68f9d18e8b43dce3cb1981b30770d3218a994489","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/WTExtension?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/68f9d18e8b43dce3cb1981b30770d3218a994489","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/WTExtension"}},{"name":"WTURLImageView","path":"Specs/WTURLImageView","sha":"b1620de98c4def29ed3ed2c5f257803054043ce1","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/WTURLImageView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/WTURLImageView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b1620de98c4def29ed3ed2c5f257803054043ce1","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/WTURLImageView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b1620de98c4def29ed3ed2c5f257803054043ce1","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/WTURLImageView"}},{"name":"WeChatSDK","path":"Specs/WeChatSDK","sha":"3cb6a8dbba3e1d9d6e88ab9b418e29e516be9abc","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/WeChatSDK?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/WeChatSDK","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3cb6a8dbba3e1d9d6e88ab9b418e29e516be9abc","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/WeChatSDK?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3cb6a8dbba3e1d9d6e88ab9b418e29e516be9abc","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/WeChatSDK"}},{"name":"WebContentView","path":"Specs/WebContentView","sha":"2e7d768d624f770358d5213af44dec1aef7b0e77","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/WebContentView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/WebContentView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2e7d768d624f770358d5213af44dec1aef7b0e77","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/WebContentView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2e7d768d624f770358d5213af44dec1aef7b0e77","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/WebContentView"}},{"name":"WebViewJavascriptBridge","path":"Specs/WebViewJavascriptBridge","sha":"76f96d35933cb8c240394b4c4fa2c0344df75900","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/WebViewJavascriptBridge?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/WebViewJavascriptBridge","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/76f96d35933cb8c240394b4c4fa2c0344df75900","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/WebViewJavascriptBridge?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/76f96d35933cb8c240394b4c4fa2c0344df75900","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/WebViewJavascriptBridge"}},{"name":"WhirlyGlobe-Headers","path":"Specs/WhirlyGlobe-Headers","sha":"37e6811d472fd6c692bd9c4a4bdd511c88a394bb","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/WhirlyGlobe-Headers?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/WhirlyGlobe-Headers","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/37e6811d472fd6c692bd9c4a4bdd511c88a394bb","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/WhirlyGlobe-Headers?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/37e6811d472fd6c692bd9c4a4bdd511c88a394bb","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/WhirlyGlobe-Headers"}},{"name":"WhirlyGlobe","path":"Specs/WhirlyGlobe","sha":"f4176d11114637ace78f4e2db1829654048d5185","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/WhirlyGlobe?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/WhirlyGlobe","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f4176d11114637ace78f4e2db1829654048d5185","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/WhirlyGlobe?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f4176d11114637ace78f4e2db1829654048d5185","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/WhirlyGlobe"}},{"name":"WindowsAzureACS-iOS","path":"Specs/WindowsAzureACS-iOS","sha":"f2d19c3056945c1824fcdbb075fc784b07e648b8","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/WindowsAzureACS-iOS?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/WindowsAzureACS-iOS","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f2d19c3056945c1824fcdbb075fc784b07e648b8","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/WindowsAzureACS-iOS?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f2d19c3056945c1824fcdbb075fc784b07e648b8","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/WindowsAzureACS-iOS"}},{"name":"WindowsAzureMobileServices","path":"Specs/WindowsAzureMobileServices","sha":"e57d86d85840000c450002cc8b453cf1d68192fc","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/WindowsAzureMobileServices?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/WindowsAzureMobileServices","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e57d86d85840000c450002cc8b453cf1d68192fc","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/WindowsAzureMobileServices?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e57d86d85840000c450002cc8b453cf1d68192fc","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/WindowsAzureMobileServices"}},{"name":"WorkflowSchema","path":"Specs/WorkflowSchema","sha":"6e98851044d652d4fe2efd6c21e50d41d7a9354f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/WorkflowSchema?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/WorkflowSchema","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6e98851044d652d4fe2efd6c21e50d41d7a9354f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/WorkflowSchema?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6e98851044d652d4fe2efd6c21e50d41d7a9354f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/WorkflowSchema"}},{"name":"XBImageFilters","path":"Specs/XBImageFilters","sha":"b9fd4cb8ee1ea20343758518e91613e89f6c184f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/XBImageFilters?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/XBImageFilters","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b9fd4cb8ee1ea20343758518e91613e89f6c184f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/XBImageFilters?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b9fd4cb8ee1ea20343758518e91613e89f6c184f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/XBImageFilters"}},{"name":"XBPageCurl","path":"Specs/XBPageCurl","sha":"9e93094e023ff0762dd240fb73a23e8db4f27375","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/XBPageCurl?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/XBPageCurl","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9e93094e023ff0762dd240fb73a23e8db4f27375","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/XBPageCurl?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9e93094e023ff0762dd240fb73a23e8db4f27375","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/XBPageCurl"}},{"name":"XCDFormInputAccessoryView","path":"Specs/XCDFormInputAccessoryView","sha":"3d8f04b91cddfc4e7f737e1fcd8197267f9019ca","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/XCDFormInputAccessoryView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/XCDFormInputAccessoryView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3d8f04b91cddfc4e7f737e1fcd8197267f9019ca","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/XCDFormInputAccessoryView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3d8f04b91cddfc4e7f737e1fcd8197267f9019ca","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/XCDFormInputAccessoryView"}},{"name":"XMLDictionary","path":"Specs/XMLDictionary","sha":"1c04cf028a10727c74b3b45f50d8cc750da757da","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/XMLDictionary?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/XMLDictionary","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1c04cf028a10727c74b3b45f50d8cc750da757da","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/XMLDictionary?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1c04cf028a10727c74b3b45f50d8cc750da757da","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/XMLDictionary"}},{"name":"XMLReader","path":"Specs/XMLReader","sha":"93ad2af1525d5e357d045662305ff973e960c846","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/XMLReader?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/XMLReader","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/93ad2af1525d5e357d045662305ff973e960c846","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/XMLReader?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/93ad2af1525d5e357d045662305ff973e960c846","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/XMLReader"}},{"name":"XPCKit","path":"Specs/XPCKit","sha":"4ee8dcfb36e05c8807e1382dd787d246181cf47a","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/XPCKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/XPCKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4ee8dcfb36e05c8807e1382dd787d246181cf47a","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/XPCKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4ee8dcfb36e05c8807e1382dd787d246181cf47a","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/XPCKit"}},{"name":"XRay","path":"Specs/XRay","sha":"ae4e37f21e848db277d0c4527054079687ef660b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/XRay?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/XRay","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ae4e37f21e848db277d0c4527054079687ef660b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/XRay?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ae4e37f21e848db277d0c4527054079687ef660b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/XRay"}},{"name":"XYPieChart","path":"Specs/XYPieChart","sha":"fb3aa97b4afd3461d0fc145bd8619da7c1b34cc9","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/XYPieChart?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/XYPieChart","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fb3aa97b4afd3461d0fc145bd8619da7c1b34cc9","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/XYPieChart?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fb3aa97b4afd3461d0fc145bd8619da7c1b34cc9","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/XYPieChart"}},{"name":"Xbox360ControllerManager","path":"Specs/Xbox360ControllerManager","sha":"342b10f28849f7fb82068507ed3686aa2af67a5a","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Xbox360ControllerManager?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Xbox360ControllerManager","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/342b10f28849f7fb82068507ed3686aa2af67a5a","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Xbox360ControllerManager?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/342b10f28849f7fb82068507ed3686aa2af67a5a","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/Xbox360ControllerManager"}},{"name":"XcodeEditor","path":"Specs/XcodeEditor","sha":"56df46b932cd31c92b8c1cff8d011d73c3b7d45c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/XcodeEditor?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/XcodeEditor","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/56df46b932cd31c92b8c1cff8d011d73c3b7d45c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/XcodeEditor?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/56df46b932cd31c92b8c1cff8d011d73c3b7d45c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/XcodeEditor"}},{"name":"XingSDK","path":"Specs/XingSDK","sha":"a3a1e1952e2a3fb329d24c383d0ac64721e851a3","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/XingSDK?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/XingSDK","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a3a1e1952e2a3fb329d24c383d0ac64721e851a3","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/XingSDK?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a3a1e1952e2a3fb329d24c383d0ac64721e851a3","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/XingSDK"}},{"name":"YAML-Framework","path":"Specs/YAML-Framework","sha":"ac3d3d34c993671977648ccdf14a1e26ec5569d5","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/YAML-Framework?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/YAML-Framework","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ac3d3d34c993671977648ccdf14a1e26ec5569d5","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/YAML-Framework?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ac3d3d34c993671977648ccdf14a1e26ec5569d5","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/YAML-Framework"}},{"name":"YBStatechart","path":"Specs/YBStatechart","sha":"de570bfae1c9e0651d376928c4e0311125c38fdd","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/YBStatechart?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/YBStatechart","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/de570bfae1c9e0651d376928c4e0311125c38fdd","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/YBStatechart?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/de570bfae1c9e0651d376928c4e0311125c38fdd","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/YBStatechart"}},{"name":"YIDragScrollBar","path":"Specs/YIDragScrollBar","sha":"9033e916791d202545552d197ad531546565c40e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/YIDragScrollBar?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/YIDragScrollBar","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9033e916791d202545552d197ad531546565c40e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/YIDragScrollBar?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9033e916791d202545552d197ad531546565c40e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/YIDragScrollBar"}},{"name":"YIFullScreenScroll","path":"Specs/YIFullScreenScroll","sha":"0ab85d5435acb76cfc22866609a667c6ddcdd144","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/YIFullScreenScroll?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/YIFullScreenScroll","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0ab85d5435acb76cfc22866609a667c6ddcdd144","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/YIFullScreenScroll?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0ab85d5435acb76cfc22866609a667c6ddcdd144","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/YIFullScreenScroll"}},{"name":"YIInnerShadowView","path":"Specs/YIInnerShadowView","sha":"7c1deb9dcfb1eee252f0a754466d004e407ead7f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/YIInnerShadowView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/YIInnerShadowView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7c1deb9dcfb1eee252f0a754466d004e407ead7f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/YIInnerShadowView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7c1deb9dcfb1eee252f0a754466d004e407ead7f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/YIInnerShadowView"}},{"name":"YIPopupTextView","path":"Specs/YIPopupTextView","sha":"8babf8daa7d0ae7242caeae5d47bb33acbf83561","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/YIPopupTextView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/YIPopupTextView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8babf8daa7d0ae7242caeae5d47bb33acbf83561","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/YIPopupTextView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8babf8daa7d0ae7242caeae5d47bb33acbf83561","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/YIPopupTextView"}},{"name":"YISplashScreen","path":"Specs/YISplashScreen","sha":"835d3d7cbcab9c3b3e7a0bffc494abe088351ba0","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/YISplashScreen?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/YISplashScreen","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/835d3d7cbcab9c3b3e7a0bffc494abe088351ba0","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/YISplashScreen?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/835d3d7cbcab9c3b3e7a0bffc494abe088351ba0","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/YISplashScreen"}},{"name":"YLProgressBar","path":"Specs/YLProgressBar","sha":"9afffc9c9c47a1d2d31a8f7828702e0e4b8c5198","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/YLProgressBar?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/YLProgressBar","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9afffc9c9c47a1d2d31a8f7828702e0e4b8c5198","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/YLProgressBar?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9afffc9c9c47a1d2d31a8f7828702e0e4b8c5198","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/YLProgressBar"}},{"name":"YRDropdownView","path":"Specs/YRDropdownView","sha":"16a51247837a409370fd293c2ecc2fa22507de6e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/YRDropdownView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/YRDropdownView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/16a51247837a409370fd293c2ecc2fa22507de6e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/YRDropdownView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/16a51247837a409370fd293c2ecc2fa22507de6e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/YRDropdownView"}},{"name":"YTFExtensions","path":"Specs/YTFExtensions","sha":"04dd2929d63d9993c682a5a5c590416126103f7e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/YTFExtensions?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/YTFExtensions","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/04dd2929d63d9993c682a5a5c590416126103f7e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/YTFExtensions?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/04dd2929d63d9993c682a5a5c590416126103f7e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/YTFExtensions"}},{"name":"YTFKeyboardCorrector","path":"Specs/YTFKeyboardCorrector","sha":"a262da0b248abbeae41511d872a003a8b455d5a9","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/YTFKeyboardCorrector?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/YTFKeyboardCorrector","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a262da0b248abbeae41511d872a003a8b455d5a9","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/YTFKeyboardCorrector?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a262da0b248abbeae41511d872a003a8b455d5a9","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/YTFKeyboardCorrector"}},{"name":"YTFPlaceholderTableView","path":"Specs/YTFPlaceholderTableView","sha":"bb4f5c04e54eec83e2a7542f8d43b31bfaf986d2","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/YTFPlaceholderTableView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/YTFPlaceholderTableView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/bb4f5c04e54eec83e2a7542f8d43b31bfaf986d2","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/YTFPlaceholderTableView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/bb4f5c04e54eec83e2a7542f8d43b31bfaf986d2","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/YTFPlaceholderTableView"}},{"name":"YTFToggler","path":"Specs/YTFToggler","sha":"5488f817380cc7470e4a3761d33d394b1dc39bb6","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/YTFToggler?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/YTFToggler","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5488f817380cc7470e4a3761d33d394b1dc39bb6","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/YTFToggler?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5488f817380cc7470e4a3761d33d394b1dc39bb6","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/YTFToggler"}},{"name":"YTVimeoExtractor","path":"Specs/YTVimeoExtractor","sha":"944163bc333a3dcaf35c996ccf53d268a3739589","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/YTVimeoExtractor?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/YTVimeoExtractor","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/944163bc333a3dcaf35c996ccf53d268a3739589","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/YTVimeoExtractor?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/944163bc333a3dcaf35c996ccf53d268a3739589","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/YTVimeoExtractor"}},{"name":"YandexGeocoder","path":"Specs/YandexGeocoder","sha":"966335e3190ca1f09d3919ad6f3fe0afb701813a","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/YandexGeocoder?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/YandexGeocoder","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/966335e3190ca1f09d3919ad6f3fe0afb701813a","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/YandexGeocoder?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/966335e3190ca1f09d3919ad6f3fe0afb701813a","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/YandexGeocoder"}},{"name":"YandexMapKit","path":"Specs/YandexMapKit","sha":"e06c34e324ec23f16589f7232dcaaca3ae6f0a27","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/YandexMapKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/YandexMapKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e06c34e324ec23f16589f7232dcaaca3ae6f0a27","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/YandexMapKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e06c34e324ec23f16589f7232dcaaca3ae6f0a27","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/YandexMapKit"}},{"name":"YapDatabase","path":"Specs/YapDatabase","sha":"6c9667c3f590e61b377f66d01d63657b500b798c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/YapDatabase?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/YapDatabase","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6c9667c3f590e61b377f66d01d63657b500b798c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/YapDatabase?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6c9667c3f590e61b377f66d01d63657b500b798c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/YapDatabase"}},{"name":"ZAActivityBar","path":"Specs/ZAActivityBar","sha":"309f1d0f50c29f0662adea4377c90646c86d8673","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ZAActivityBar?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ZAActivityBar","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/309f1d0f50c29f0662adea4377c90646c86d8673","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ZAActivityBar?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/309f1d0f50c29f0662adea4377c90646c86d8673","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ZAActivityBar"}},{"name":"ZBarSDK","path":"Specs/ZBarSDK","sha":"3a7fa38ad77b0c0d424a3b362d7d411093155473","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ZBarSDK?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ZBarSDK","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3a7fa38ad77b0c0d424a3b362d7d411093155473","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ZBarSDK?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3a7fa38ad77b0c0d424a3b362d7d411093155473","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ZBarSDK"}},{"name":"ZFCardinalDirection","path":"Specs/ZFCardinalDirection","sha":"6759d74f14217b4e06d7d63f938d33b06245ea3c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ZFCardinalDirection?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ZFCardinalDirection","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6759d74f14217b4e06d7d63f938d33b06245ea3c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ZFCardinalDirection?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6759d74f14217b4e06d7d63f938d33b06245ea3c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ZFCardinalDirection"}},{"name":"ZFHaversine","path":"Specs/ZFHaversine","sha":"84b2788b5707087ba39e1ff38cba09266f86472b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ZFHaversine?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ZFHaversine","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/84b2788b5707087ba39e1ff38cba09266f86472b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ZFHaversine?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/84b2788b5707087ba39e1ff38cba09266f86472b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ZFHaversine"}},{"name":"ZGCountDownTimer","path":"Specs/ZGCountDownTimer","sha":"af89c50facdf3c502716b4ada81130ece83e848f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ZGCountDownTimer?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ZGCountDownTimer","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/af89c50facdf3c502716b4ada81130ece83e848f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ZGCountDownTimer?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/af89c50facdf3c502716b4ada81130ece83e848f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ZGCountDownTimer"}},{"name":"ZGParallelView","path":"Specs/ZGParallelView","sha":"f7c74237bccfd3194517cea0eb9cd13cc4955f1d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ZGParallelView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ZGParallelView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f7c74237bccfd3194517cea0eb9cd13cc4955f1d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ZGParallelView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f7c74237bccfd3194517cea0eb9cd13cc4955f1d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ZGParallelView"}},{"name":"ZGPullDragScrollView","path":"Specs/ZGPullDragScrollView","sha":"eef73bac2eda2ad4390769a9090d9768ba082f5b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ZGPullDragScrollView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ZGPullDragScrollView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/eef73bac2eda2ad4390769a9090d9768ba082f5b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ZGPullDragScrollView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/eef73bac2eda2ad4390769a9090d9768ba082f5b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ZGPullDragScrollView"}},{"name":"ZGPullDragTableView","path":"Specs/ZGPullDragTableView","sha":"39917ee5b00a0d0837c430d289f1a36833eadafd","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ZGPullDragTableView?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ZGPullDragTableView","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/39917ee5b00a0d0837c430d289f1a36833eadafd","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ZGPullDragTableView?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/39917ee5b00a0d0837c430d289f1a36833eadafd","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ZGPullDragTableView"}},{"name":"ZKRevealingTableViewCell","path":"Specs/ZKRevealingTableViewCell","sha":"3810a3a2731e4b55dee01f03211cb90002b73435","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ZKRevealingTableViewCell?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ZKRevealingTableViewCell","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3810a3a2731e4b55dee01f03211cb90002b73435","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ZKRevealingTableViewCell?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3810a3a2731e4b55dee01f03211cb90002b73435","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ZKRevealingTableViewCell"}},{"name":"ZKSforce","path":"Specs/ZKSforce","sha":"03f68145b079f3af988b722014ea49f5219e220c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ZKSforce?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ZKSforce","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/03f68145b079f3af988b722014ea49f5219e220c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ZKSforce?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/03f68145b079f3af988b722014ea49f5219e220c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ZKSforce"}},{"name":"ZKTextField","path":"Specs/ZKTextField","sha":"f389a69af9f1f4a157157987c140f04009f668e2","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ZKTextField?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ZKTextField","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f389a69af9f1f4a157157987c140f04009f668e2","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ZKTextField?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f389a69af9f1f4a157157987c140f04009f668e2","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ZKTextField"}},{"name":"ZUUIRevealController","path":"Specs/ZUUIRevealController","sha":"97fe39f2b1d78bcb0a872b5ddb91fe421d8e5d15","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ZUUIRevealController?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ZUUIRevealController","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/97fe39f2b1d78bcb0a872b5ddb91fe421d8e5d15","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ZUUIRevealController?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/97fe39f2b1d78bcb0a872b5ddb91fe421d8e5d15","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ZUUIRevealController"}},{"name":"ZXing","path":"Specs/ZXing","sha":"8827e4b83bcc57a3a3bfa92a2d3ee8d1d1fca505","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ZXing?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ZXing","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8827e4b83bcc57a3a3bfa92a2d3ee8d1d1fca505","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ZXing?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8827e4b83bcc57a3a3bfa92a2d3ee8d1d1fca505","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ZXing"}},{"name":"ZXingObjC","path":"Specs/ZXingObjC","sha":"44f561366d224aa6dc1849608d1c2c505a045f56","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ZXingObjC?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ZXingObjC","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/44f561366d224aa6dc1849608d1c2c505a045f56","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ZXingObjC?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/44f561366d224aa6dc1849608d1c2c505a045f56","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ZXingObjC"}},{"name":"ZYActivity","path":"Specs/ZYActivity","sha":"b1c90b69423d362ebcb25c48fae0d029d5704490","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ZYActivity?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ZYActivity","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b1c90b69423d362ebcb25c48fae0d029d5704490","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ZYActivity?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b1c90b69423d362ebcb25c48fae0d029d5704490","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ZYActivity"}},{"name":"ZeroPush","path":"Specs/ZeroPush","sha":"bfdf236abad633895adb89d829564a301eef86b0","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ZeroPush?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ZeroPush","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/bfdf236abad633895adb89d829564a301eef86b0","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ZeroPush?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/bfdf236abad633895adb89d829564a301eef86b0","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ZeroPush"}},{"name":"ZipArchive","path":"Specs/ZipArchive","sha":"f024666168c431dacf96db66d6d922e6fbd9c06f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ZipArchive?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ZipArchive","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f024666168c431dacf96db66d6d922e6fbd9c06f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ZipArchive?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f024666168c431dacf96db66d6d922e6fbd9c06f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ZipArchive"}},{"name":"ZipKit","path":"Specs/ZipKit","sha":"b0b4e0e95ff94a9be33e497bc516d291c282ae83","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ZipKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ZipKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b0b4e0e95ff94a9be33e497bc516d291c282ae83","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ZipKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b0b4e0e95ff94a9be33e497bc516d291c282ae83","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ZipKit"}},{"name":"_.m","path":"Specs/_.m","sha":"370ec63f88e0cbc6bc65c736baaf30993e8ad67c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/_.m?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/_.m","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/370ec63f88e0cbc6bc65c736baaf30993e8ad67c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/_.m?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/370ec63f88e0cbc6bc65c736baaf30993e8ad67c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/_.m"}},{"name":"adlibr","path":"Specs/adlibr","sha":"2e5a570927e957cdab44315c3dbcfaefc3940a34","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/adlibr?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/adlibr","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2e5a570927e957cdab44315c3dbcfaefc3940a34","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/adlibr?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2e5a570927e957cdab44315c3dbcfaefc3940a34","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/adlibr"}},{"name":"apptentive-ios","path":"Specs/apptentive-ios","sha":"5e88291c40ab8230baf94bc42944315f949c04cb","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/apptentive-ios?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/apptentive-ios","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5e88291c40ab8230baf94bc42944315f949c04cb","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/apptentive-ios?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5e88291c40ab8230baf94bc42944315f949c04cb","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/apptentive-ios"}},{"name":"apxml","path":"Specs/apxml","sha":"b195237e5fb7257068adb0c2af884aebbfd97f97","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/apxml?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/apxml","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b195237e5fb7257068adb0c2af884aebbfd97f97","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/apxml?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b195237e5fb7257068adb0c2af884aebbfd97f97","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/apxml"}},{"name":"boost","path":"Specs/boost","sha":"dabb1c44e4da8e872cb33f43f89662ec7ee2c333","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/boost?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/boost","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/dabb1c44e4da8e872cb33f43f89662ec7ee2c333","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/boost?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/dabb1c44e4da8e872cb33f43f89662ec7ee2c333","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/boost"}},{"name":"box-ios-sdk","path":"Specs/box-ios-sdk","sha":"3be454a8ab13eb54dc018dd5bcaf7aef1e4d78a4","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/box-ios-sdk?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/box-ios-sdk","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3be454a8ab13eb54dc018dd5bcaf7aef1e4d78a4","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/box-ios-sdk?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3be454a8ab13eb54dc018dd5bcaf7aef1e4d78a4","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/box-ios-sdk"}},{"name":"box2d","path":"Specs/box2d","sha":"3e298b128c1e8ee99b3424f6b3b672cbc6be90b6","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/box2d?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/box2d","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3e298b128c1e8ee99b3424f6b3b672cbc6be90b6","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/box2d?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3e298b128c1e8ee99b3424f6b3b672cbc6be90b6","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/box2d"}},{"name":"cdebug","path":"Specs/cdebug","sha":"acae896034477221f0d57132df48c8485bfed0d6","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/cdebug?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/cdebug","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/acae896034477221f0d57132df48c8485bfed0d6","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/cdebug?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/acae896034477221f0d57132df48c8485bfed0d6","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/cdebug"}},{"name":"chipmunk-physics","path":"Specs/chipmunk-physics","sha":"10395f2ae521d71efa39d8013a274828fb502f37","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/chipmunk-physics?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/chipmunk-physics","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/10395f2ae521d71efa39d8013a274828fb502f37","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/chipmunk-physics?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/10395f2ae521d71efa39d8013a274828fb502f37","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/chipmunk-physics"}},{"name":"clipper","path":"Specs/clipper","sha":"46ec5c429e4102badfe182ab7c61b41ab508a082","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/clipper?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/clipper","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/46ec5c429e4102badfe182ab7c61b41ab508a082","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/clipper?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/46ec5c429e4102badfe182ab7c61b41ab508a082","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/clipper"}},{"name":"coby","path":"Specs/coby","sha":"f021824a2cbd2246fd8b315e634261fbb1b4af03","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/coby?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/coby","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f021824a2cbd2246fd8b315e634261fbb1b4af03","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/coby?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f021824a2cbd2246fd8b315e634261fbb1b4af03","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/coby"}},{"name":"cocoa-oauth","path":"Specs/cocoa-oauth","sha":"6db76293461315105fefd3221c98feeff5b56bbb","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/cocoa-oauth?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/cocoa-oauth","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6db76293461315105fefd3221c98feeff5b56bbb","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/cocoa-oauth?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6db76293461315105fefd3221c98feeff5b56bbb","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/cocoa-oauth"}},{"name":"cocos2d","path":"Specs/cocos2d","sha":"e8c273d07fe795c2bb204ff483d423e818562825","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/cocos2d?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/cocos2d","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e8c273d07fe795c2bb204ff483d423e818562825","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/cocos2d?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/e8c273d07fe795c2bb204ff483d423e818562825","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/cocos2d"}},{"name":"crackify","path":"Specs/crackify","sha":"12f083dc7e2c704e355322a27eee853217622178","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/crackify?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/crackify","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/12f083dc7e2c704e355322a27eee853217622178","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/crackify?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/12f083dc7e2c704e355322a27eee853217622178","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/crackify"}},{"name":"eigen","path":"Specs/eigen","sha":"3e359a0a34c5aeb6d07d9baac70ed4aeb0a79528","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/eigen?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/eigen","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3e359a0a34c5aeb6d07d9baac70ed4aeb0a79528","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/eigen?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3e359a0a34c5aeb6d07d9baac70ed4aeb0a79528","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/eigen"}},{"name":"expat","path":"Specs/expat","sha":"bdd78459175378d81c292ff1addb0890094edb2e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/expat?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/expat","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/bdd78459175378d81c292ff1addb0890094edb2e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/expat?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/bdd78459175378d81c292ff1addb0890094edb2e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/expat"}},{"name":"freexl","path":"Specs/freexl","sha":"ef1a5a788f6959ab5c5ac8d2148443b27537356f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/freexl?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/freexl","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ef1a5a788f6959ab5c5ac8d2148443b27537356f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/freexl?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ef1a5a788f6959ab5c5ac8d2148443b27537356f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/freexl"}},{"name":"geos","path":"Specs/geos","sha":"9328df6405e89ca7aab31c6c3fe58c223d3b9cae","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/geos?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/geos","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9328df6405e89ca7aab31c6c3fe58c223d3b9cae","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/geos?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9328df6405e89ca7aab31c6c3fe58c223d3b9cae","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/geos"}},{"name":"glfw","path":"Specs/glfw","sha":"fa5b112960df97773c5b4d2e8693d0d3c211bca1","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/glfw?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/glfw","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fa5b112960df97773c5b4d2e8693d0d3c211bca1","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/glfw?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fa5b112960df97773c5b4d2e8693d0d3c211bca1","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/glfw"}},{"name":"google-plus-ios-sdk","path":"Specs/google-plus-ios-sdk","sha":"70ea5189392394fc1e6334a14e15bdc64ff5fc4e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/google-plus-ios-sdk?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/google-plus-ios-sdk","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/70ea5189392394fc1e6334a14e15bdc64ff5fc4e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/google-plus-ios-sdk?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/70ea5189392394fc1e6334a14e15bdc64ff5fc4e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/google-plus-ios-sdk"}},{"name":"grabKit","path":"Specs/grabKit","sha":"ac58e4332dd7f6a0a134691622b16da978ee5efe","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/grabKit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/grabKit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ac58e4332dd7f6a0a134691622b16da978ee5efe","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/grabKit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ac58e4332dd7f6a0a134691622b16da978ee5efe","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/grabKit"}},{"name":"gtm-oauth","path":"Specs/gtm-oauth","sha":"ee6cdcfaeed9eb3b89f84d3eb31b4744b896eeb8","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/gtm-oauth?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/gtm-oauth","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ee6cdcfaeed9eb3b89f84d3eb31b4744b896eeb8","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/gtm-oauth?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ee6cdcfaeed9eb3b89f84d3eb31b4744b896eeb8","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/gtm-oauth"}},{"name":"gtm-oauth2","path":"Specs/gtm-oauth2","sha":"8970c7c77b6434c08600a93e9c7833d654a373eb","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/gtm-oauth2?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/gtm-oauth2","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8970c7c77b6434c08600a93e9c7833d654a373eb","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/gtm-oauth2?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8970c7c77b6434c08600a93e9c7833d654a373eb","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/gtm-oauth2"}},{"name":"hpple","path":"Specs/hpple","sha":"09093953495701df96b4ae4363aad2a12ae35bb6","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/hpple?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/hpple","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/09093953495701df96b4ae4363aad2a12ae35bb6","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/hpple?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/09093953495701df96b4ae4363aad2a12ae35bb6","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/hpple"}},{"name":"iActiveRecord","path":"Specs/iActiveRecord","sha":"4b61f5cf3c91cc442d31fbfb8b400256f27260af","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iActiveRecord?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iActiveRecord","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4b61f5cf3c91cc442d31fbfb8b400256f27260af","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iActiveRecord?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/4b61f5cf3c91cc442d31fbfb8b400256f27260af","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iActiveRecord"}},{"name":"iBureaucrat","path":"Specs/iBureaucrat","sha":"9f9ef0793bf2810f5a38485712deb412089dfd30","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iBureaucrat?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iBureaucrat","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9f9ef0793bf2810f5a38485712deb412089dfd30","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iBureaucrat?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9f9ef0793bf2810f5a38485712deb412089dfd30","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iBureaucrat"}},{"name":"iCarousel","path":"Specs/iCarousel","sha":"cc06d9bba5d0dba83a10bdf591311a904a2fee4f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iCarousel?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iCarousel","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/cc06d9bba5d0dba83a10bdf591311a904a2fee4f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iCarousel?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/cc06d9bba5d0dba83a10bdf591311a904a2fee4f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iCarousel"}},{"name":"iConsole","path":"Specs/iConsole","sha":"8a01091b5e44e2cef076b0369faa229848419445","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iConsole?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iConsole","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8a01091b5e44e2cef076b0369faa229848419445","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iConsole?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8a01091b5e44e2cef076b0369faa229848419445","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iConsole"}},{"name":"iFuga","path":"Specs/iFuga","sha":"8188bef0498506acc55d781c0b5b5d0960b809fc","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iFuga?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iFuga","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8188bef0498506acc55d781c0b5b5d0960b809fc","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iFuga?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8188bef0498506acc55d781c0b5b5d0960b809fc","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iFuga"}},{"name":"iHasApp","path":"Specs/iHasApp","sha":"69bb2fedf1f9ddd7fb6d0acc048359d9a5bf9908","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iHasApp?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iHasApp","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/69bb2fedf1f9ddd7fb6d0acc048359d9a5bf9908","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iHasApp?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/69bb2fedf1f9ddd7fb6d0acc048359d9a5bf9908","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iHasApp"}},{"name":"iNotify","path":"Specs/iNotify","sha":"5370615d78c480a3319a6819a87b8d20e9abf58d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iNotify?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iNotify","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5370615d78c480a3319a6819a87b8d20e9abf58d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iNotify?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5370615d78c480a3319a6819a87b8d20e9abf58d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iNotify"}},{"name":"iOS-BlingLord","path":"Specs/iOS-BlingLord","sha":"7dd1f4855f613bd749837dc4c8dc8bfb3215f51f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iOS-BlingLord?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iOS-BlingLord","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7dd1f4855f613bd749837dc4c8dc8bfb3215f51f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iOS-BlingLord?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7dd1f4855f613bd749837dc4c8dc8bfb3215f51f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iOS-BlingLord"}},{"name":"iOS-Color-Picker","path":"Specs/iOS-Color-Picker","sha":"b9d7bae5c4ccf8fcb6539cb81368e358a06427f4","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iOS-Color-Picker?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iOS-Color-Picker","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b9d7bae5c4ccf8fcb6539cb81368e358a06427f4","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iOS-Color-Picker?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b9d7bae5c4ccf8fcb6539cb81368e358a06427f4","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iOS-Color-Picker"}},{"name":"iOS-CrackRock","path":"Specs/iOS-CrackRock","sha":"8ae4620781c0e0afeea8715e730b61dc9494d47e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iOS-CrackRock?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iOS-CrackRock","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8ae4620781c0e0afeea8715e730b61dc9494d47e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iOS-CrackRock?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8ae4620781c0e0afeea8715e730b61dc9494d47e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iOS-CrackRock"}},{"name":"iOS-FakeWeb","path":"Specs/iOS-FakeWeb","sha":"b68193519aed2a2d06dea7231c749fb61a98f612","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iOS-FakeWeb?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iOS-FakeWeb","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b68193519aed2a2d06dea7231c749fb61a98f612","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iOS-FakeWeb?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b68193519aed2a2d06dea7231c749fb61a98f612","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iOS-FakeWeb"}},{"name":"iOS-Flip-Transform","path":"Specs/iOS-Flip-Transform","sha":"5cdbedd64da9cae4cbd089a56a03c723b46981ae","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iOS-Flip-Transform?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iOS-Flip-Transform","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5cdbedd64da9cae4cbd089a56a03c723b46981ae","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iOS-Flip-Transform?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5cdbedd64da9cae4cbd089a56a03c723b46981ae","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iOS-Flip-Transform"}},{"name":"iOS-GTLYouTube","path":"Specs/iOS-GTLYouTube","sha":"83b0341255eb212a23cfee1026d7ef160df19df9","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iOS-GTLYouTube?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iOS-GTLYouTube","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/83b0341255eb212a23cfee1026d7ef160df19df9","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iOS-GTLYouTube?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/83b0341255eb212a23cfee1026d7ef160df19df9","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iOS-GTLYouTube"}},{"name":"iOS-Hierarchy-Viewer","path":"Specs/iOS-Hierarchy-Viewer","sha":"eb71937e5613454c68330170a3243df7bbe0ec35","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iOS-Hierarchy-Viewer?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iOS-Hierarchy-Viewer","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/eb71937e5613454c68330170a3243df7bbe0ec35","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iOS-Hierarchy-Viewer?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/eb71937e5613454c68330170a3243df7bbe0ec35","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iOS-Hierarchy-Viewer"}},{"name":"iOS-KML-Framework","path":"Specs/iOS-KML-Framework","sha":"fc166133f1399321648e18fc58967a7556c6db35","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iOS-KML-Framework?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iOS-KML-Framework","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fc166133f1399321648e18fc58967a7556c6db35","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iOS-KML-Framework?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fc166133f1399321648e18fc58967a7556c6db35","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iOS-KML-Framework"}},{"name":"iOS-MagnifyingGlass","path":"Specs/iOS-MagnifyingGlass","sha":"b49be3c8dc19fe68f1b02f56b014a4d852705a43","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iOS-MagnifyingGlass?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iOS-MagnifyingGlass","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b49be3c8dc19fe68f1b02f56b014a4d852705a43","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iOS-MagnifyingGlass?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b49be3c8dc19fe68f1b02f56b014a4d852705a43","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iOS-MagnifyingGlass"}},{"name":"iOS-QR-Code-Encoder","path":"Specs/iOS-QR-Code-Encoder","sha":"af92746767395e0ca60b8e72550c577fbe613134","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iOS-QR-Code-Encoder?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iOS-QR-Code-Encoder","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/af92746767395e0ca60b8e72550c577fbe613134","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iOS-QR-Code-Encoder?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/af92746767395e0ca60b8e72550c577fbe613134","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iOS-QR-Code-Encoder"}},{"name":"iOS-htmltopdf","path":"Specs/iOS-htmltopdf","sha":"7679130d15926b07a70b7a4f097ebabff7786d4a","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iOS-htmltopdf?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iOS-htmltopdf","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7679130d15926b07a70b7a4f097ebabff7786d4a","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iOS-htmltopdf?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7679130d15926b07a70b7a4f097ebabff7786d4a","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iOS-htmltopdf"}},{"name":"iOSInstalledApps","path":"Specs/iOSInstalledApps","sha":"fe5b6d16bbf0ba1b13088b0d87b8eb88b20bb740","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iOSInstalledApps?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iOSInstalledApps","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fe5b6d16bbf0ba1b13088b0d87b8eb88b20bb740","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iOSInstalledApps?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/fe5b6d16bbf0ba1b13088b0d87b8eb88b20bb740","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iOSInstalledApps"}},{"name":"iObjectiveSee","path":"Specs/iObjectiveSee","sha":"1dcc98d4d28a43c4c6fff9e3e86e597b2e7f3713","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iObjectiveSee?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iObjectiveSee","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1dcc98d4d28a43c4c6fff9e3e86e597b2e7f3713","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iObjectiveSee?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1dcc98d4d28a43c4c6fff9e3e86e597b2e7f3713","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iObjectiveSee"}},{"name":"iPhoneContacts","path":"Specs/iPhoneContacts","sha":"847405efeca902fd8b658b643c679abc49d0b551","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iPhoneContacts?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iPhoneContacts","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/847405efeca902fd8b658b643c679abc49d0b551","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iPhoneContacts?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/847405efeca902fd8b658b643c679abc49d0b551","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iPhoneContacts"}},{"name":"iPhoneMK","path":"Specs/iPhoneMK","sha":"39792a2d2d67638dc75e67e1720e44e4ee01f77b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iPhoneMK?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iPhoneMK","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/39792a2d2d67638dc75e67e1720e44e4ee01f77b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iPhoneMK?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/39792a2d2d67638dc75e67e1720e44e4ee01f77b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iPhoneMK"}},{"name":"iRate","path":"Specs/iRate","sha":"3cee34eb8a0fa96179cb79291fc022b1dad7b014","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iRate?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iRate","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3cee34eb8a0fa96179cb79291fc022b1dad7b014","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iRate?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3cee34eb8a0fa96179cb79291fc022b1dad7b014","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iRate"}},{"name":"iTVDb","path":"Specs/iTVDb","sha":"9367be336379661ae11ecd2b6420464aca5c2d9b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iTVDb?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iTVDb","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9367be336379661ae11ecd2b6420464aca5c2d9b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iTVDb?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9367be336379661ae11ecd2b6420464aca5c2d9b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iTVDb"}},{"name":"iTellAFriend","path":"Specs/iTellAFriend","sha":"a1ec933a21e8ecafd7b4da158d9ee056c4aabdd6","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iTellAFriend?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iTellAFriend","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a1ec933a21e8ecafd7b4da158d9ee056c4aabdd6","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iTellAFriend?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a1ec933a21e8ecafd7b4da158d9ee056c4aabdd6","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iTellAFriend"}},{"name":"iToast","path":"Specs/iToast","sha":"2739c08d44e7910788d3679f2482e5c3af725988","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iToast?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iToast","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2739c08d44e7910788d3679f2482e5c3af725988","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iToast?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2739c08d44e7910788d3679f2482e5c3af725988","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iToast"}},{"name":"iTunesConnectHelper","path":"Specs/iTunesConnectHelper","sha":"c736d8585fffa8b69b77dd780820fc390c870881","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iTunesConnectHelper?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iTunesConnectHelper","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c736d8585fffa8b69b77dd780820fc390c870881","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iTunesConnectHelper?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/c736d8585fffa8b69b77dd780820fc390c870881","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iTunesConnectHelper"}},{"name":"iTunesSearch","path":"Specs/iTunesSearch","sha":"f6203b57cfb8324f8547ef68fa334b36c604363c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iTunesSearch?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iTunesSearch","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f6203b57cfb8324f8547ef68fa334b36c604363c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iTunesSearch?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f6203b57cfb8324f8547ef68fa334b36c604363c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iTunesSearch"}},{"name":"iVersion","path":"Specs/iVersion","sha":"29f8d64c028cb75c39caff98a76a43d946653b08","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iVersion?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iVersion","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/29f8d64c028cb75c39caff98a76a43d946653b08","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/iVersion?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/29f8d64c028cb75c39caff98a76a43d946653b08","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/iVersion"}},{"name":"instagram-ios-sdk","path":"Specs/instagram-ios-sdk","sha":"15900253e975235001df9614c0aa291698289109","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/instagram-ios-sdk?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/instagram-ios-sdk","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/15900253e975235001df9614c0aa291698289109","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/instagram-ios-sdk?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/15900253e975235001df9614c0aa291698289109","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/instagram-ios-sdk"}},{"name":"jre_emul","path":"Specs/jre_emul","sha":"82a1d4b4c58641583cb39a0ca272ff05b3c10945","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/jre_emul?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/jre_emul","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/82a1d4b4c58641583cb39a0ca272ff05b3c10945","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/jre_emul?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/82a1d4b4c58641583cb39a0ca272ff05b3c10945","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/jre_emul"}},{"name":"jsoncpp","path":"Specs/jsoncpp","sha":"3c1e18d634c1268190e84fd4ceb89cf95ee222a7","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/jsoncpp?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/jsoncpp","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3c1e18d634c1268190e84fd4ceb89cf95ee222a7","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/jsoncpp?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3c1e18d634c1268190e84fd4ceb89cf95ee222a7","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/jsoncpp"}},{"name":"kingpin","path":"Specs/kingpin","sha":"8b158b34e6c52348df8a1c21a5a7a2ee7f15e378","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/kingpin?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/kingpin","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8b158b34e6c52348df8a1c21a5a7a2ee7f15e378","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/kingpin?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8b158b34e6c52348df8a1c21a5a7a2ee7f15e378","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/kingpin"}},{"name":"kyoto-cabinet","path":"Specs/kyoto-cabinet","sha":"934d7001476bc80cad9a48d8eded135a47d52f67","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/kyoto-cabinet?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/kyoto-cabinet","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/934d7001476bc80cad9a48d8eded135a47d52f67","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/kyoto-cabinet?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/934d7001476bc80cad9a48d8eded135a47d52f67","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/kyoto-cabinet"}},{"name":"libPhoneNumber-iOS","path":"Specs/libPhoneNumber-iOS","sha":"72416dfecb6ba269503455d7434fe239dffb9675","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/libPhoneNumber-iOS?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/libPhoneNumber-iOS","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/72416dfecb6ba269503455d7434fe239dffb9675","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/libPhoneNumber-iOS?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/72416dfecb6ba269503455d7434fe239dffb9675","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/libPhoneNumber-iOS"}},{"name":"libPusher","path":"Specs/libPusher","sha":"442fe45926dd2f6b882b96ad9f35b39b08575b0b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/libPusher?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/libPusher","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/442fe45926dd2f6b882b96ad9f35b39b08575b0b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/libPusher?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/442fe45926dd2f6b882b96ad9f35b39b08575b0b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/libPusher"}},{"name":"libechonest","path":"Specs/libechonest","sha":"011b6df2b7e6bd3bcb80dbeefc8c67b70ac0be94","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/libechonest?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/libechonest","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/011b6df2b7e6bd3bcb80dbeefc8c67b70ac0be94","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/libechonest?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/011b6df2b7e6bd3bcb80dbeefc8c67b70ac0be94","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/libechonest"}},{"name":"libetpan","path":"Specs/libetpan","sha":"373b8d715cfcf0bf8903c825e6ccd1d4ec68aadf","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/libetpan?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/libetpan","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/373b8d715cfcf0bf8903c825e6ccd1d4ec68aadf","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/libetpan?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/373b8d715cfcf0bf8903c825e6ccd1d4ec68aadf","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/libetpan"}},{"name":"libextobjc","path":"Specs/libextobjc","sha":"258d59318aa42946a4e03e616d082ff5d3210d9a","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/libextobjc?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/libextobjc","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/258d59318aa42946a4e03e616d082ff5d3210d9a","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/libextobjc?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/258d59318aa42946a4e03e616d082ff5d3210d9a","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/libextobjc"}},{"name":"libffi","path":"Specs/libffi","sha":"19424a8c81407737f565c33696c5792e715cf4fa","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/libffi?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/libffi","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/19424a8c81407737f565c33696c5792e715cf4fa","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/libffi?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/19424a8c81407737f565c33696c5792e715cf4fa","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/libffi"}},{"name":"libgit2","path":"Specs/libgit2","sha":"95d8c90cc524acbb114eff2b0a9bc9e897811990","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/libgit2?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/libgit2","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/95d8c90cc524acbb114eff2b0a9bc9e897811990","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/libgit2?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/95d8c90cc524acbb114eff2b0a9bc9e897811990","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/libgit2"}},{"name":"libhangul","path":"Specs/libhangul","sha":"0a6ea3eb6ceb850fe9bf241a053d148d7879082b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/libhangul?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/libhangul","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0a6ea3eb6ceb850fe9bf241a053d148d7879082b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/libhangul?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/0a6ea3eb6ceb850fe9bf241a053d148d7879082b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/libhangul"}},{"name":"libintl-alternative","path":"Specs/libintl-alternative","sha":"98c31bce497791779b1032cd41042daff1e75612","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/libintl-alternative?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/libintl-alternative","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/98c31bce497791779b1032cd41042daff1e75612","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/libintl-alternative?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/98c31bce497791779b1032cd41042daff1e75612","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/libintl-alternative"}},{"name":"libkml","path":"Specs/libkml","sha":"64964b93889d8f2ed15ed1432d75f691b5d1dbd6","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/libkml?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/libkml","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/64964b93889d8f2ed15ed1432d75f691b5d1dbd6","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/libkml?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/64964b93889d8f2ed15ed1432d75f691b5d1dbd6","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/libkml"}},{"name":"libsodium","path":"Specs/libsodium","sha":"169febf0be64f1b3ced18250e691d66232ae5451","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/libsodium?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/libsodium","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/169febf0be64f1b3ced18250e691d66232ae5451","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/libsodium?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/169febf0be64f1b3ced18250e691d66232ae5451","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/libsodium"}},{"name":"ltools","path":"Specs/ltools","sha":"75944a5386eb0ff8143b35f97f7e8cc84044c4e2","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ltools?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ltools","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/75944a5386eb0ff8143b35f97f7e8cc84044c4e2","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ltools?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/75944a5386eb0ff8143b35f97f7e8cc84044c4e2","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ltools"}},{"name":"lua","path":"Specs/lua","sha":"51d0b6eab0060cee9b2efed5093e0a09d42c4c53","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/lua?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/lua","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/51d0b6eab0060cee9b2efed5093e0a09d42c4c53","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/lua?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/51d0b6eab0060cee9b2efed5093e0a09d42c4c53","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/lua"}},{"name":"mailgun","path":"Specs/mailgun","sha":"eb73c3d516ce350610f79968b6903d9bc8534f49","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/mailgun?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/mailgun","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/eb73c3d516ce350610f79968b6903d9bc8534f49","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/mailgun?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/eb73c3d516ce350610f79968b6903d9bc8534f49","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/mailgun"}},{"name":"objc-geohash","path":"Specs/objc-geohash","sha":"12f4c4a836403cb23f97a395ee8712646b5929a6","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/objc-geohash?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/objc-geohash","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/12f4c4a836403cb23f97a395ee8712646b5929a6","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/objc-geohash?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/12f4c4a836403cb23f97a395ee8712646b5929a6","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/objc-geohash"}},{"name":"objc-simple-bindings","path":"Specs/objc-simple-bindings","sha":"3366c4eede48790bf79d39500e3ba551906379d5","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/objc-simple-bindings?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/objc-simple-bindings","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3366c4eede48790bf79d39500e3ba551906379d5","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/objc-simple-bindings?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/3366c4eede48790bf79d39500e3ba551906379d5","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/objc-simple-bindings"}},{"name":"objc-utils","path":"Specs/objc-utils","sha":"5aaa959d9c21f46c9dc68ce6b3d56027733c8f8f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/objc-utils?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/objc-utils","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5aaa959d9c21f46c9dc68ce6b3d56027733c8f8f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/objc-utils?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5aaa959d9c21f46c9dc68ce6b3d56027733c8f8f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/objc-utils"}},{"name":"objective-git","path":"Specs/objective-git","sha":"2c2b3aba7ddeaaa353f80cd23ad09bab5027b238","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/objective-git?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/objective-git","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2c2b3aba7ddeaaa353f80cd23ad09bab5027b238","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/objective-git?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2c2b3aba7ddeaaa353f80cd23ad09bab5027b238","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/objective-git"}},{"name":"objective-zip","path":"Specs/objective-zip","sha":"be7df67f7602eb5a01a152562e350ecafc2f392e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/objective-zip?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/objective-zip","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/be7df67f7602eb5a01a152562e350ecafc2f392e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/objective-zip?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/be7df67f7602eb5a01a152562e350ecafc2f392e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/objective-zip"}},{"name":"objectiveflickr","path":"Specs/objectiveflickr","sha":"98674264ff640eb4daad95d244e4a06dd048e763","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/objectiveflickr?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/objectiveflickr","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/98674264ff640eb4daad95d244e4a06dd048e763","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/objectiveflickr?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/98674264ff640eb4daad95d244e4a06dd048e763","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/objectiveflickr"}},{"name":"pegged","path":"Specs/pegged","sha":"ca4f6fbadec1e7955ea6e1bd635575d635998381","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/pegged?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/pegged","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ca4f6fbadec1e7955ea6e1bd635575d635998381","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/pegged?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ca4f6fbadec1e7955ea6e1bd635575d635998381","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/pegged"}},{"name":"pjsip","path":"Specs/pjsip","sha":"f53192847f180bf9219ce9d0012129d95be6e900","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/pjsip?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/pjsip","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f53192847f180bf9219ce9d0012129d95be6e900","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/pjsip?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f53192847f180bf9219ce9d0012129d95be6e900","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/pjsip"}},{"name":"proj4","path":"Specs/proj4","sha":"7e7ea38499288479e465e1af4c5ab6260605bfcb","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/proj4?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/proj4","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7e7ea38499288479e465e1af4c5ab6260605bfcb","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/proj4?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/7e7ea38499288479e465e1af4c5ab6260605bfcb","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/proj4"}},{"name":"pubnub-api","path":"Specs/pubnub-api","sha":"1a6e7ada9b710df0820f208530c5fd6665719e48","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/pubnub-api?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/pubnub-api","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1a6e7ada9b710df0820f208530c5fd6665719e48","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/pubnub-api?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1a6e7ada9b710df0820f208530c5fd6665719e48","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/pubnub-api"}},{"name":"rump-ios","path":"Specs/rump-ios","sha":"9542851c2191e71ed6d0e3ef2de43467c67e9637","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/rump-ios?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/rump-ios","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9542851c2191e71ed6d0e3ef2de43467c67e9637","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/rump-ios?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9542851c2191e71ed6d0e3ef2de43467c67e9637","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/rump-ios"}},{"name":"shapelib","path":"Specs/shapelib","sha":"6f7ea80fd2383e144d2e2b2f15c544cb47032590","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/shapelib?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/shapelib","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6f7ea80fd2383e144d2e2b2f15c544cb47032590","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/shapelib?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6f7ea80fd2383e144d2e2b2f15c544cb47032590","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/shapelib"}},{"name":"skpsmtpmessage","path":"Specs/skpsmtpmessage","sha":"f69060f6566817cb6d7117ad4e11f56a356aedf5","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/skpsmtpmessage?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/skpsmtpmessage","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f69060f6566817cb6d7117ad4e11f56a356aedf5","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/skpsmtpmessage?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f69060f6566817cb6d7117ad4e11f56a356aedf5","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/skpsmtpmessage"}},{"name":"socket.IO","path":"Specs/socket.IO","sha":"9a16edee20506c2d381fff523be9ce17454d896a","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/socket.IO?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/socket.IO","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9a16edee20506c2d381fff523be9ce17454d896a","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/socket.IO?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9a16edee20506c2d381fff523be9ce17454d896a","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/socket.IO"}},{"name":"spatialite","path":"Specs/spatialite","sha":"47e07532bcdb94ddabdc5cf3af1d0caef6f30594","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/spatialite?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/spatialite","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/47e07532bcdb94ddabdc5cf3af1d0caef6f30594","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/spatialite?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/47e07532bcdb94ddabdc5cf3af1d0caef6f30594","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/spatialite"}},{"name":"spring-objective-c","path":"Specs/spring-objective-c","sha":"2bd9c4ec5251ecf1d14038743f1dca27594d4ca8","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/spring-objective-c?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/spring-objective-c","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2bd9c4ec5251ecf1d14038743f1dca27594d4ca8","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/spring-objective-c?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2bd9c4ec5251ecf1d14038743f1dca27594d4ca8","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/spring-objective-c"}},{"name":"sqlite3-objc","path":"Specs/sqlite3-objc","sha":"1c43a750fc847770967494e54550e8e1a3fec9fc","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/sqlite3-objc?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/sqlite3-objc","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1c43a750fc847770967494e54550e8e1a3fec9fc","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/sqlite3-objc?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/1c43a750fc847770967494e54550e8e1a3fec9fc","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/sqlite3-objc"}},{"name":"sqlite3","path":"Specs/sqlite3","sha":"8bd94084ee5ae223a49f714a778bdf9f27907350","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/sqlite3?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/sqlite3","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8bd94084ee5ae223a49f714a778bdf9f27907350","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/sqlite3?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/8bd94084ee5ae223a49f714a778bdf9f27907350","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/sqlite3"}},{"name":"sundown","path":"Specs/sundown","sha":"d7894027a9f57b8bae6179f2e82c7f23149c0079","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/sundown?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/sundown","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d7894027a9f57b8bae6179f2e82c7f23149c0079","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/sundown?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d7894027a9f57b8bae6179f2e82c7f23149c0079","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/sundown"}},{"name":"taskit","path":"Specs/taskit","sha":"2cacfe37dfc3286b62ff1da0c89a3d8785c2d657","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/taskit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/taskit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2cacfe37dfc3286b62ff1da0c89a3d8785c2d657","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/taskit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2cacfe37dfc3286b62ff1da0c89a3d8785c2d657","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/taskit"}},{"name":"theWrapper","path":"Specs/theWrapper","sha":"f9fcda8dfa16c5d07aae5c86f1537e078e50b34c","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/theWrapper?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/theWrapper","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f9fcda8dfa16c5d07aae5c86f1537e078e50b34c","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/theWrapper?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f9fcda8dfa16c5d07aae5c86f1537e078e50b34c","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/theWrapper"}},{"name":"threeMF","path":"Specs/threeMF","sha":"d3dc06ece73570bb97d6fd185463ef9cf9b8ec39","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/threeMF?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/threeMF","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d3dc06ece73570bb97d6fd185463ef9cf9b8ec39","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/threeMF?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d3dc06ece73570bb97d6fd185463ef9cf9b8ec39","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/threeMF"}},{"name":"treemapkit","path":"Specs/treemapkit","sha":"885d209a114f6449f3c2b51c8678e73c1695c9fb","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/treemapkit?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/treemapkit","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/885d209a114f6449f3c2b51c8678e73c1695c9fb","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/treemapkit?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/885d209a114f6449f3c2b51c8678e73c1695c9fb","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/treemapkit"}},{"name":"tuneup_js","path":"Specs/tuneup_js","sha":"2f27b5a09b2b00f589b42bc8f594187883da0efe","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/tuneup_js?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/tuneup_js","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2f27b5a09b2b00f589b42bc8f594187883da0efe","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/tuneup_js?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/2f27b5a09b2b00f589b42bc8f594187883da0efe","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/tuneup_js"}},{"name":"twitter-text-objc","path":"Specs/twitter-text-objc","sha":"9ff5a890431e8d3b28773c0616ac53c161f1b682","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/twitter-text-objc?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/twitter-text-objc","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9ff5a890431e8d3b28773c0616ac53c161f1b682","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/twitter-text-objc?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9ff5a890431e8d3b28773c0616ac53c161f1b682","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/twitter-text-objc"}},{"name":"uicontrol-blocks","path":"Specs/uicontrol-blocks","sha":"b189dc54c75068ccfb264e496626719c40747be9","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/uicontrol-blocks?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/uicontrol-blocks","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b189dc54c75068ccfb264e496626719c40747be9","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/uicontrol-blocks?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/b189dc54c75068ccfb264e496626719c40747be9","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/uicontrol-blocks"}},{"name":"uiview-frame-helpers","path":"Specs/uiview-frame-helpers","sha":"d73d386fe158eea9fa6a6353ca509bc899bac436","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/uiview-frame-helpers?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/uiview-frame-helpers","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d73d386fe158eea9fa6a6353ca509bc899bac436","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/uiview-frame-helpers?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d73d386fe158eea9fa6a6353ca509bc899bac436","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/uiview-frame-helpers"}},{"name":"unoffical-twitter-sdk","path":"Specs/unoffical-twitter-sdk","sha":"91b33907ed8ea3934e2b0df67a438e66e648c355","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/unoffical-twitter-sdk?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/unoffical-twitter-sdk","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/91b33907ed8ea3934e2b0df67a438e66e648c355","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/unoffical-twitter-sdk?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/91b33907ed8ea3934e2b0df67a438e66e648c355","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/unoffical-twitter-sdk"}},{"name":"uploadcare-ios","path":"Specs/uploadcare-ios","sha":"9181a7d18453415cabf45700e96b7a3b2ee697b8","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/uploadcare-ios?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/uploadcare-ios","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9181a7d18453415cabf45700e96b7a3b2ee697b8","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/uploadcare-ios?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/9181a7d18453415cabf45700e96b7a3b2ee697b8","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/uploadcare-ios"}},{"name":"upnpx","path":"Specs/upnpx","sha":"a0c6a7f66c91bdd49b6b43e999c099990f832c32","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/upnpx?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/upnpx","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a0c6a7f66c91bdd49b6b43e999c099990f832c32","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/upnpx?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/a0c6a7f66c91bdd49b6b43e999c099990f832c32","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/upnpx"}},{"name":"uriparser","path":"Specs/uriparser","sha":"85698bf200665ebf90100e34e1057ac387d0e49a","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/uriparser?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/uriparser","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/85698bf200665ebf90100e34e1057ac387d0e49a","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/uriparser?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/85698bf200665ebf90100e34e1057ac387d0e49a","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/uriparser"}},{"name":"uservoice-iphone-sdk","path":"Specs/uservoice-iphone-sdk","sha":"5208b0f74b2870d8de5d9f2c6ef8c836641579c0","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/uservoice-iphone-sdk?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/uservoice-iphone-sdk","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5208b0f74b2870d8de5d9f2c6ef8c836641579c0","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/uservoice-iphone-sdk?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/5208b0f74b2870d8de5d9f2c6ef8c836641579c0","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/uservoice-iphone-sdk"}},{"name":"vMAT","path":"Specs/vMAT","sha":"038feb1b2b8e4bf68d151b4ae0ef939afbb9460f","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/vMAT?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/vMAT","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/038feb1b2b8e4bf68d151b4ae0ef939afbb9460f","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/vMAT?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/038feb1b2b8e4bf68d151b4ae0ef939afbb9460f","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/vMAT"}},{"name":"vfrReader","path":"Specs/vfrReader","sha":"bc1922a7028786c1f3599cc5815116340a2fe147","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/vfrReader?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/vfrReader","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/bc1922a7028786c1f3599cc5815116340a2fe147","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/vfrReader?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/bc1922a7028786c1f3599cc5815116340a2fe147","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/vfrReader"}},{"name":"watoolkitios","path":"Specs/watoolkitios","sha":"dc98ad58ffa4d7e25cc5d73f1b179d245b7d6f3b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/watoolkitios?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/watoolkitios","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/dc98ad58ffa4d7e25cc5d73f1b179d245b7d6f3b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/watoolkitios?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/dc98ad58ffa4d7e25cc5d73f1b179d245b7d6f3b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/watoolkitios"}},{"name":"wpxmlrpc","path":"Specs/wpxmlrpc","sha":"f731b37ac20ee48d2308a85b6054dcb0f0e21700","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/wpxmlrpc?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/wpxmlrpc","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f731b37ac20ee48d2308a85b6054dcb0f0e21700","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/wpxmlrpc?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/f731b37ac20ee48d2308a85b6054dcb0f0e21700","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/wpxmlrpc"}},{"name":"xmlrpc","path":"Specs/xmlrpc","sha":"03935bae4fed5070a5d570fb8fd61a31ca2ab391","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/xmlrpc?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/xmlrpc","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/03935bae4fed5070a5d570fb8fd61a31ca2ab391","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/xmlrpc?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/03935bae4fed5070a5d570fb8fd61a31ca2ab391","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/xmlrpc"}},{"name":"yajl","path":"Specs/yajl","sha":"aa02369230aca85639a14c4802bc829c537f38b1","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/yajl?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/yajl","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/aa02369230aca85639a14c4802bc829c537f38b1","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/yajl?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/aa02369230aca85639a14c4802bc829c537f38b1","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/yajl"}},{"name":"zipzap","path":"Specs/zipzap","sha":"76e9413ec59ee8bfbf2f75cec9743985848815c0","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/zipzap?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/zipzap","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/76e9413ec59ee8bfbf2f75cec9743985848815c0","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/zipzap?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/76e9413ec59ee8bfbf2f75cec9743985848815c0","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/zipzap"}}]' + http_version: + recorded_at: Mon, 02 Dec 2013 02:36:09 GMT +- request: + method: get + uri: https://api.github.com/repos/CocoaPods/Missing_Specs/contents/Specs + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - CocoaPods + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - '*/*' + response: + status: + code: 404 + message: Not Found + headers: + Server: + - GitHub.com + Date: + - Mon, 02 Dec 2013 02:36:10 GMT + Content-Type: + - application/json; charset=utf-8 + Transfer-Encoding: + - chunked + Status: + - 404 Not Found + X-Ratelimit-Limit: + - '60' + X-Ratelimit-Remaining: + - '50' + X-Ratelimit-Reset: + - '1385951957' + X-Github-Media-Type: + - github.beta + X-Content-Type-Options: + - nosniff + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Expose-Headers: + - ETag, Link, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, + X-Accepted-OAuth-Scopes, X-Poll-Interval + Access-Control-Allow-Origin: + - '*' + X-Github-Request-Id: + - 4F00B20F:5406:C2D1B5A:529BF21A + body: + encoding: UTF-8 + string: '{"message":"Not Found","documentation_url":"http://developer.github.com/v3"}' + http_version: + recorded_at: Mon, 02 Dec 2013 02:36:10 GMT +- request: + method: get + uri: https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ARAnalytics?ref=yaml_podspecs + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - CocoaPods + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - '*/*' + response: + status: + code: 200 + message: OK + headers: + Server: + - GitHub.com + Date: + - Mon, 02 Dec 2013 02:36:11 GMT + Content-Type: + - application/json; charset=utf-8 + Transfer-Encoding: + - chunked + Status: + - 200 OK + X-Ratelimit-Limit: + - '60' + X-Ratelimit-Remaining: + - '49' + X-Ratelimit-Reset: + - '1385951957' + Cache-Control: + - public, max-age=60, s-maxage=60 + Last-Modified: + - Mon, 02 Dec 2013 02:17:23 GMT + Etag: + - '"4b543e65455c94f8ece080679c5f7ecf"' + Vary: + - Accept + - Accept-Encoding + X-Github-Media-Type: + - github.beta + X-Content-Type-Options: + - nosniff + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Expose-Headers: + - ETag, Link, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, + X-Accepted-OAuth-Scopes, X-Poll-Interval + Access-Control-Allow-Origin: + - '*' + X-Github-Request-Id: + - 4F00B20F:5407:5F3C444:529BF21A + body: + encoding: UTF-8 + string: '[{"name":"1.0","path":"Specs/ARAnalytics/1.0","sha":"6227615c1a83e55d75b256031eb83a87a674717b","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ARAnalytics/1.0?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ARAnalytics/1.0","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6227615c1a83e55d75b256031eb83a87a674717b","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ARAnalytics/1.0?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/6227615c1a83e55d75b256031eb83a87a674717b","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ARAnalytics/1.0"}},{"name":"1.1","path":"Specs/ARAnalytics/1.1","sha":"99709b9e8761e8702d64bfef15f121c3516d0edd","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ARAnalytics/1.1?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ARAnalytics/1.1","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/99709b9e8761e8702d64bfef15f121c3516d0edd","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ARAnalytics/1.1?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/99709b9e8761e8702d64bfef15f121c3516d0edd","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ARAnalytics/1.1"}},{"name":"1.2","path":"Specs/ARAnalytics/1.2","sha":"ecd2d9707e94526de5bbfcb02c67edccb06286f7","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ARAnalytics/1.2?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ARAnalytics/1.2","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ecd2d9707e94526de5bbfcb02c67edccb06286f7","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ARAnalytics/1.2?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/ecd2d9707e94526de5bbfcb02c67edccb06286f7","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ARAnalytics/1.2"}},{"name":"1.3.1","path":"Specs/ARAnalytics/1.3.1","sha":"32c42262a76ae91d56247c86b26b7114531a9d3d","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ARAnalytics/1.3.1?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ARAnalytics/1.3.1","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/32c42262a76ae91d56247c86b26b7114531a9d3d","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ARAnalytics/1.3.1?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/32c42262a76ae91d56247c86b26b7114531a9d3d","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ARAnalytics/1.3.1"}},{"name":"1.3","path":"Specs/ARAnalytics/1.3","sha":"d6a9953d8c483200478f62e3489dfb02fba50a2e","size":0,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ARAnalytics/1.3?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ARAnalytics/1.3","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d6a9953d8c483200478f62e3489dfb02fba50a2e","type":"dir","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ARAnalytics/1.3?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/trees/d6a9953d8c483200478f62e3489dfb02fba50a2e","html":"https://github.com/CocoaPods/Specs/tree/yaml_podspecs/Specs/ARAnalytics/1.3"}}]' + http_version: + recorded_at: Mon, 02 Dec 2013 02:36:11 GMT +- request: + method: get + uri: https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Unknown_Pod?ref=yaml_podspecs + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - CocoaPods + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - '*/*' + response: + status: + code: 404 + message: Not Found + headers: + Server: + - GitHub.com + Date: + - Mon, 02 Dec 2013 02:36:12 GMT + Content-Type: + - application/json; charset=utf-8 + Transfer-Encoding: + - chunked + Status: + - 404 Not Found + X-Ratelimit-Limit: + - '60' + X-Ratelimit-Remaining: + - '48' + X-Ratelimit-Reset: + - '1385951957' + X-Github-Media-Type: + - github.beta + X-Content-Type-Options: + - nosniff + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Expose-Headers: + - ETag, Link, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, + X-Accepted-OAuth-Scopes, X-Poll-Interval + Access-Control-Allow-Origin: + - '*' + X-Github-Request-Id: + - 4F00B20F:5402:B1A277F:529BF21B + body: + encoding: UTF-8 + string: '{"message":"Not Found","documentation_url":"http://developer.github.com/v3"}' + http_version: + recorded_at: Mon, 02 Dec 2013 02:36:12 GMT +- request: + method: get + uri: https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ARAnalytics/1.3.1/ARAnalytics.podspec.yaml?ref=yaml_podspecs + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - CocoaPods + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - '*/*' + response: + status: + code: 200 + message: OK + headers: + Server: + - GitHub.com + Date: + - Mon, 02 Dec 2013 02:36:13 GMT + Content-Type: + - application/json; charset=utf-8 + Transfer-Encoding: + - chunked + Status: + - 200 OK + X-Ratelimit-Limit: + - '60' + X-Ratelimit-Remaining: + - '47' + X-Ratelimit-Reset: + - '1385951957' + Cache-Control: + - public, max-age=60, s-maxage=60 + Last-Modified: + - Wed, 15 May 2013 15:26:56 GMT + Etag: + - '"db89ee3039e0619df42314be021c3dbb"' + Vary: + - Accept + - Accept-Encoding + X-Github-Media-Type: + - github.beta + X-Content-Type-Options: + - nosniff + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Expose-Headers: + - ETag, Link, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, + X-Accepted-OAuth-Scopes, X-Poll-Interval + Access-Control-Allow-Origin: + - '*' + X-Github-Request-Id: + - 4F00B20F:5402:B1A27FB:529BF21C + body: + encoding: UTF-8 + string: '{"name":"ARAnalytics.podspec.yaml","path":"Specs/ARAnalytics/1.3.1/ARAnalytics.podspec.yaml","sha":"f1d212c4c826ab22d768b5091e0bb5b74686cd06","size":2703,"url":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ARAnalytics/1.3.1/ARAnalytics.podspec.yaml?ref=yaml_podspecs","html_url":"https://github.com/CocoaPods/Specs/blob/yaml_podspecs/Specs/ARAnalytics/1.3.1/ARAnalytics.podspec.yaml","git_url":"https://api.github.com/repos/CocoaPods/Specs/git/blobs/f1d212c4c826ab22d768b5091e0bb5b74686cd06","type":"file","content":"LS0tCm5hbWU6IEFSQW5hbHl0aWNzCnZlcnNpb246IDEuMy4xCmxpY2Vuc2U6\nCiAgdHlwZTogTUlUCiAgZmlsZTogTElDRU5TRQpzdW1tYXJ5OiBVc2UgbXV0\nbGlwbGUgbWFqb3IgYW5hbHl0aWNzIHBsYXRmb3JtcyB3aXRoIG9uZSBjbGVh\nbiBBUEkuCmhvbWVwYWdlOiBodHRwOi8vZ2l0aHViLmNvbS9vcnRhL0FSQW5h\nbHl0aWNzCmF1dGhvcnM6CiAgb3J0YTogb3J0YS50aGVyb3hAZ21haWwuY29t\nCnNvdXJjZToKICBnaXQ6IGh0dHBzOi8vZ2l0aHViLmNvbS9vcnRhL0FSQW5h\nbHl0aWNzLmdpdAogIHRhZzogMS4zLjEKZGVzY3JpcHRpb246IFVzaW5nIHN1\nYnNwZWNzIHlvdSBjYW4gZGVmaW5lIHlvdXIgYW5hbHl0aWNzIHByb3ZpZGVy\nIHdpdGggdGhlIHNhbWUgQVBJLgpwbGF0Zm9ybXM6CiAgaW9zOiAKc3Vic3Bl\nY3M6Ci0gbmFtZTogQ29yZQogIHNvdXJjZV9maWxlczoKICAtICcqLntoLG19\nJwogIC0gUHJvdmlkZXJzL0FSQW5hbHl0aWNhbFByb3ZpZGVyLntoLG19CiAg\nLSBQcm92aWRlcnMvQVJBbmFseXRpY3NQcm92aWRlcnMuaAotIG5hbWU6IFRl\nc3RGbGlnaHQKICBkZXBlbmRlbmNpZXM6CiAgICBBUkFuYWx5dGljcy9Db3Jl\nOiBbXQogICAgVGVzdEZsaWdodFNESzogW10KICAgIEJQWExVVUlESGFuZGxl\ncjogW10KICBwcmVmaXhfaGVhZGVyX2NvbnRlbnRzOiAnI2RlZmluZSBBUl9U\nRVNURkxJR0hUX0VYSVNUUyAxJwogIHNvdXJjZV9maWxlczoKICAtIFByb3Zp\nZGVycy9UZXN0RmxpZ2h0UHJvdmlkZXIue2gsbX0KLSBuYW1lOiBNaXhwYW5l\nbAogIGRlcGVuZGVuY2llczoKICAgIEFSQW5hbHl0aWNzL0NvcmU6IFtdCiAg\nICBNaXhwYW5lbDogW10KICBwcmVmaXhfaGVhZGVyX2NvbnRlbnRzOiAnI2Rl\nZmluZSBBUl9NSVhQQU5FTF9FWElTVFMgMScKICBzb3VyY2VfZmlsZXM6CiAg\nLSBQcm92aWRlcnMvTWl4cGFuZWxQcm92aWRlci57aCxtfQotIG5hbWU6IExv\nY2FseXRpY3MKICBkZXBlbmRlbmNpZXM6CiAgICBBUkFuYWx5dGljcy9Db3Jl\nOiBbXQogICAgTG9jYWx5dGljczogW10KICBwcmVmaXhfaGVhZGVyX2NvbnRl\nbnRzOiAnI2RlZmluZSBBUl9MT0NBTFlUSUNTX0VYSVNUUyAxJwogIHNvdXJj\nZV9maWxlczoKICAtIFByb3ZpZGVycy9Mb2NhbHl0aWNzUHJvdmlkZXIue2gs\nbX0KLSBuYW1lOiBGbHVycnkKICBkZXBlbmRlbmNpZXM6CiAgICBBUkFuYWx5\ndGljcy9Db3JlOiBbXQogICAgRmx1cnJ5U0RLOiBbXQogIHByZWZpeF9oZWFk\nZXJfY29udGVudHM6ICcjZGVmaW5lIEFSX0ZMVVJSWV9FWElTVFMgMScKICBz\nb3VyY2VfZmlsZXM6CiAgLSBQcm92aWRlcnMvRmx1cnJ5UHJvdmlkZXIue2gs\nbX0KLSBuYW1lOiBHb29nbGVBbmFseXRpY3MKICBkZXBlbmRlbmNpZXM6CiAg\nICBBUkFuYWx5dGljcy9Db3JlOiBbXQogICAgR29vZ2xlQW5hbHl0aWNzLWlP\nUy1TREs6IFtdCiAgcHJlZml4X2hlYWRlcl9jb250ZW50czogJyNkZWZpbmUg\nQVJfR09PR0xFQU5BTFlUSUNTX0VYSVNUUyAxJwogIHNvdXJjZV9maWxlczoK\nICAtIFByb3ZpZGVycy9Hb29nbGVBbmFseXRpY3NQcm92aWRlci57aCxtfQog\nIC0gRXh0ZW5zaW9ucy9BUkFuYWx5dGljcytHb29nbGVBbmFseXRpY3Mue2gs\nbX0KLSBuYW1lOiBLSVNTbWV0cmljcwogIGRlcGVuZGVuY2llczoKICAgIEFS\nQW5hbHl0aWNzL0NvcmU6IFtdCiAgICBLSVNTbWV0cmljczogW10KICBwcmVm\naXhfaGVhZGVyX2NvbnRlbnRzOiAnI2RlZmluZSBBUl9LSVNTTUVUUklDU19F\nWElTVFMgMScKICBzb3VyY2VfZmlsZXM6CiAgLSBQcm92aWRlcnMvS0lTU21l\ndHJpY3NQcm92aWRlci57aCxtfQotIG5hbWU6IENyaXR0ZXJjaXNtCiAgZGVw\nZW5kZW5jaWVzOgogICAgQVJBbmFseXRpY3MvQ29yZTogW10KICAgIENyaXR0\nZXJjaXNtU0RLOiBbXQogIHByZWZpeF9oZWFkZXJfY29udGVudHM6ICcjZGVm\naW5lIEFSX0NSSVRURVJDSVNNX0VYSVNUUyAxJwogIHNvdXJjZV9maWxlczoK\nICAtIFByb3ZpZGVycy9Dcml0dGVyY2lzbVByb3ZpZGVyLntoLG19Ci0gbmFt\nZTogQ3Jhc2hseXRpY3MKICBkZXBlbmRlbmNpZXM6CiAgICBBUkFuYWx5dGlj\ncy9Db3JlOiBbXQogIHByZWZpeF9oZWFkZXJfY29udGVudHM6ICcjZGVmaW5l\nIEFSX0NSQVNITFlUSUNTX0VYSVNUUyAxJwogIHNvdXJjZV9maWxlczoKICAt\nIFByb3ZpZGVycy9DcmFzaGx5dGljc1Byb3ZpZGVyLntoLG19Ci0gbmFtZTog\nQnVnc25hZwogIGRlcGVuZGVuY2llczoKICAgIEFSQW5hbHl0aWNzL0NvcmU6\nIFtdCiAgICBCdWdzbmFnOiBbXQogIHByZWZpeF9oZWFkZXJfY29udGVudHM6\nICcjZGVmaW5lIEFSX0JVR1NOQUdfRVhJU1RTIDEnCiAgc291cmNlX2ZpbGVz\nOgogIC0gUHJvdmlkZXJzL0J1Z3NuYWdQcm92aWRlci57aCxtfQotIG5hbWU6\nIENvdW50bHkKICBkZXBlbmRlbmNpZXM6CiAgICBBUkFuYWx5dGljcy9Db3Jl\nOiBbXQogICAgQ291bnRseTogW10KICBwcmVmaXhfaGVhZGVyX2NvbnRlbnRz\nOiAnI2RlZmluZSBBUl9DT1VOVExZX0VYSVNUUyAxJwogIHNvdXJjZV9maWxl\nczoKICAtIFByb3ZpZGVycy9Db3VudGx5UHJvdmlkZXIue2gsbX0KLSBuYW1l\nOiBIZWxwc2hpZnQKICBkZXBlbmRlbmNpZXM6CiAgICBBUkFuYWx5dGljcy9D\nb3JlOiBbXQogICAgSGVscHNoaWZ0OiBbXQogIHByZWZpeF9oZWFkZXJfY29u\ndGVudHM6ICcjZGVmaW5lIEFSX0hFTFBTSElGVF9FWElTVFMgMScKICBzb3Vy\nY2VfZmlsZXM6CiAgLSBQcm92aWRlcnMvSGVscHNoaWZ0UHJvdmlkZXIue2gs\nbX0K\n","encoding":"base64","_links":{"self":"https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ARAnalytics/1.3.1/ARAnalytics.podspec.yaml?ref=yaml_podspecs","git":"https://api.github.com/repos/CocoaPods/Specs/git/blobs/f1d212c4c826ab22d768b5091e0bb5b74686cd06","html":"https://github.com/CocoaPods/Specs/blob/yaml_podspecs/Specs/ARAnalytics/1.3.1/ARAnalytics.podspec.yaml"}}' + http_version: + recorded_at: Mon, 02 Dec 2013 02:36:14 GMT +- request: + method: get + uri: https://api.github.com/repos/CocoaPods/Specs/contents/Specs/Unknown_Pod/1.3.1/Unknown_Pod.podspec.yaml?ref=yaml_podspecs + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - CocoaPods + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - '*/*' + response: + status: + code: 404 + message: Not Found + headers: + Server: + - GitHub.com + Date: + - Mon, 02 Dec 2013 02:36:15 GMT + Content-Type: + - application/json; charset=utf-8 + Transfer-Encoding: + - chunked + Status: + - 404 Not Found + X-Ratelimit-Limit: + - '60' + X-Ratelimit-Remaining: + - '46' + X-Ratelimit-Reset: + - '1385951957' + X-Github-Media-Type: + - github.beta + X-Content-Type-Options: + - nosniff + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Expose-Headers: + - ETag, Link, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, + X-Accepted-OAuth-Scopes, X-Poll-Interval + Access-Control-Allow-Origin: + - '*' + X-Github-Request-Id: + - 4F00B20F:5407:5F3C615:529BF21E + body: + encoding: UTF-8 + string: '{"message":"Not Found","documentation_url":"http://developer.github.com/v3"}' + http_version: + recorded_at: Mon, 02 Dec 2013 02:36:15 GMT +- request: + method: get + uri: https://api.github.com/repos/CocoaPods/Specs/contents/Specs/ARAnalytics/0.99.0/ARAnalytics.podspec.yaml?ref=yaml_podspecs + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - CocoaPods + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - '*/*' + response: + status: + code: 404 + message: Not Found + headers: + Server: + - GitHub.com + Date: + - Mon, 02 Dec 2013 02:36:16 GMT + Content-Type: + - application/json; charset=utf-8 + Transfer-Encoding: + - chunked + Status: + - 404 Not Found + X-Ratelimit-Limit: + - '60' + X-Ratelimit-Remaining: + - '45' + X-Ratelimit-Reset: + - '1385951957' + X-Github-Media-Type: + - github.beta + X-Content-Type-Options: + - nosniff + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Expose-Headers: + - ETag, Link, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, + X-Accepted-OAuth-Scopes, X-Poll-Interval + Access-Control-Allow-Origin: + - '*' + X-Github-Request-Id: + - 4F00B20F:5402:B1A2AB0:529BF21F + body: + encoding: UTF-8 + string: '{"message":"Not Found","documentation_url":"http://developer.github.com/v3"}' + http_version: + recorded_at: Mon, 02 Dec 2013 02:36:16 GMT +recorded_with: VCR 2.5.0 diff --git a/spec/github_spec.rb b/spec/github_spec.rb index c53d3b046..a1fdba537 100644 --- a/spec/github_spec.rb +++ b/spec/github_spec.rb @@ -31,6 +31,13 @@ module Pod branches.find { |t| t["name"] == "master" }.should.not.be.nil end end + + it "returns the contents of a repo" do + VCR.use_cassette('GitHub', :record => :new_episodes) do + contents = GitHub.contents("https://github.com/CocoaPods/CocoaPods") + contents.find { |t| t["name"] == "README.md" }.should.not.be.nil + end + end end #-------------------------------------------------------------------------# diff --git a/spec/source/abstract_data_provider_spec.rb b/spec/source/abstract_data_provider_spec.rb new file mode 100644 index 000000000..fd9913183 --- /dev/null +++ b/spec/source/abstract_data_provider_spec.rb @@ -0,0 +1,54 @@ +require File.expand_path('../../spec_helper', __FILE__) + +module Pod + describe Source::AbstractDataProvider do + + before do + @sut = Source::AbstractDataProvider.new + end + + #-------------------------------------------------------------------------# + + describe "Optional methods" do + it "raises for the #name method" do + should.raise StandardError do + @sut.name + end.message.should.match /Abstract method/ + end + + it "raises for the #type method" do + should.raise StandardError do + @sut.type + end.message.should.match /Abstract method/ + end + + it "raises for the #pods method" do + should.raise StandardError do + @sut.pods + end.message.should.match /Abstract method/ + end + + it "raises for the #versions method" do + should.raise StandardError do + @sut.versions('Pod') + end.message.should.match /Abstract method/ + end + + it "raises for the #specification method" do + should.raise StandardError do + @sut.specification('Pod', '0.1.0') + end.message.should.match /Abstract method/ + end + + it "raises for the #specification_contents method" do + should.raise StandardError do + @sut.specification_contents('Pod', '0.1.0') + end.message.should.match /Abstract method/ + end + end + + #-------------------------------------------------------------------------# + + end +end + diff --git a/spec/source/file_system_data_provider_spec.rb b/spec/source/file_system_data_provider_spec.rb new file mode 100644 index 000000000..a4799d37a --- /dev/null +++ b/spec/source/file_system_data_provider_spec.rb @@ -0,0 +1,165 @@ +require File.expand_path('../../spec_helper', __FILE__) + +module Pod + describe Source::FileSystemDataProvider do + + before do + path = fixture('spec-repos/test_repo') + @sut = Source::FileSystemDataProvider.new(path) + end + + #-------------------------------------------------------------------------# + + describe "In general" do + it "returns its name" do + @sut.name.should == 'test_repo' + end + end + + #-------------------------------------------------------------------------# + + describe "#pods" do + it "returns the available Pods" do + @sut.pods.should == ["BananaLib", "Faulty_spec", "JSONKit", "YAMLSpec"] + end + + it "returns nil if no Pods could be found" do + path = fixture('spec-repos/non_existing') + @sut = Source::FileSystemDataProvider.new(path) + @sut.pods.should.be.nil + end + + it "doesn't include the `.` and the `..` dir entries" do + @sut.pods.should.not.include?('.') + @sut.pods.should.not.include?('..') + end + + it "only consider directories" do + File.stubs(:directory?).returns(false) + @sut.pods.should == [] + end + + + it "uses the `Specs` dir if it is present" do + @sut.send(:specs_dir).to_s.should.end_with('test_repo/Specs') + end + + it "uses the root of the repo as the specs dir if the `Specs` folder is not present" do + repo = fixture('spec-repos/master') + @sut = Source::FileSystemDataProvider.new(repo) + @sut.send(:specs_dir).to_s.should.end_with('master') + end + end + + #-------------------------------------------------------------------------# + + describe "#versions" do + it "returns the versions for the given Pod" do + @sut.versions('JSONKit').should == ["999.999.999", "1.4"] + end + + it "returns nil the Pod is unknown" do + @sut.versions('Unknown_Pod').should.be.nil + end + + it "raises if the name of the Pod is not provided" do + should.raise ArgumentError do + @sut.versions(nil) + end.message.should.match /No name/ + end + end + + #-------------------------------------------------------------------------# + + describe "#specification" do + it "returns the specification for the given version of a Pod" do + spec = @sut.specification('JSONKit', "1.4") + spec.name.should == 'JSONKit' + spec.version.to_s.should == '1.4' + end + + it "returns nil if the Pod is unknown" do + spec = @sut.specification('Unknown_Pod', "1.4") + spec.should.be.nil + end + + it "returns nil if the version of the Pod doesn't exists" do + spec = @sut.specification('JSONKit', "0.99.0") + spec.should.be.nil + end + + it "raises if the name of the Pod is not provided" do + should.raise ArgumentError do + @sut.specification(nil, "1.4") + end.message.should.match /No name/ + end + + it "raises if the name of the Pod is not provided" do + should.raise ArgumentError do + @sut.specification('JSONKit', nil) + end.message.should.match /No version/ + end + end + + #-------------------------------------------------------------------------# + + describe "#specification_path" do + it "returns the path of a specification" do + path = @sut.specification_path('JSONKit', "1.4") + path.to_s.should.end_with?('test_repo/Specs/JSONKit/1.4/JSONKit.podspec') + end + + it "prefers YAML podspecs if one exists" do + Pathname.any_instance.stubs(:exist?).returns(true) + path = @sut.specification_path('JSONKit', "1.4") + path.to_s.should.end_with?('test_repo/Specs/JSONKit/1.4/JSONKit.podspec.yaml') + end + + it "raises if the name of the Pod is not provided" do + should.raise ArgumentError do + @sut.specification_path(nil, "1.4") + end.message.should.match /No name/ + end + + it "raises if the name of the Pod is not provided" do + should.raise ArgumentError do + @sut.specification_path('JSONKit', nil) + end.message.should.match /No version/ + end + end + + #-------------------------------------------------------------------------# + + describe "#specification_contents" do + it "returns the specification given the name and the version" do + spec = @sut.specification_contents('JSONKit', "1.4") + spec.should.match /s.name += 'JSONKit'\n +s.version += '1.4'/ + end + + it "returns nil if the Pod is unknown" do + spec = @sut.specification_contents('Unknown_Pod', "1.4") + spec.should.be.nil + end + + it "returns nil if the version of the Pod doesn't exists" do + spec = @sut.specification_contents('JSONKit', "0.99.0") + spec.should.be.nil + end + + it "raises if the name of the Pod is not provided" do + should.raise ArgumentError do + @sut.specification_contents(nil, "1.4") + end.message.should.match /No name/ + end + + it "raises if the name of the Pod is not provided" do + should.raise ArgumentError do + @sut.specification_contents('JSONKit', nil) + end.message.should.match /No version/ + end + end + + #-------------------------------------------------------------------------# + + end +end diff --git a/spec/source/github_data_provider_spec.rb b/spec/source/github_data_provider_spec.rb new file mode 100644 index 000000000..5b55957f6 --- /dev/null +++ b/spec/source/github_data_provider_spec.rb @@ -0,0 +1,145 @@ +require File.expand_path('../../spec_helper', __FILE__) + +module Pod + describe Source::GitHubDataProvider do + + before do + @sut = Source::GitHubDataProvider.new('CocoaPods/Specs', 'yaml_podspecs') + end + + #-------------------------------------------------------------------------# + + describe "In general" do + it "returns the name of the source" do + @sut.name.should == 'CocoaPods/Specs' + end + + it "returns the type of the source" do + @sut.type.should == "GitHub API" + end + end + + #-------------------------------------------------------------------------# + + describe "#pods" do + it "returns the list of all the Pods" do + VCR.use_cassette('GitHubDataProvider', :record => :new_episodes) do + @sut.pods.should.include?('ARAnalytics') + end + end + + it "only considers directories to compute the name of Pods" do + VCR.use_cassette('GitHubDataProvider', :record => :new_episodes) do + @sut.pods.should.not.include?('Readme.md') + end + end + + it "returns nil if no Pods could be found" do + VCR.use_cassette('GitHubDataProvider', :record => :new_episodes) do + @sut = Source::GitHubDataProvider.new('CocoaPods/Missing_Specs') + @sut.pods.should.be.nil + end + end + end + + #-------------------------------------------------------------------------# + + describe "#versions" do + it "returns the available versions of a Pod" do + VCR.use_cassette('GitHubDataProvider', :record => :new_episodes) do + @sut.versions('ARAnalytics').should == ["1.0", "1.1", "1.2", "1.3.1", "1.3"] + end + end + + it "returns nil the Pod is unknown" do + VCR.use_cassette('GitHubDataProvider', :record => :new_episodes) do + @sut.versions('Unknown_Pod').should.be.nil + end + end + + it "raises if the name of the Pod is not provided" do + should.raise ArgumentError do + @sut.versions(nil) + end.message.should.match /No name/ + end + end + + #-------------------------------------------------------------------------# + + describe "#specification" do + it "returns the specification given the name and the version" do + VCR.use_cassette('GitHubDataProvider', :record => :new_episodes) do + spec = @sut.specification('ARAnalytics', "1.3.1") + spec.name.should == 'ARAnalytics' + spec.version.to_s.should == '1.3.1' + end + end + + it "returns nil if the Pod is unknown" do + VCR.use_cassette('GitHubDataProvider', :record => :new_episodes) do + spec = @sut.specification('Unknown_Pod', "1.3.1") + spec.should.be.nil + end + end + + it "returns nil if the version of the Pod doesn't exists" do + VCR.use_cassette('GitHubDataProvider', :record => :new_episodes) do + spec = @sut.specification('ARAnalytics', "0.99.0") + spec.should.be.nil + end + end + + it "raises if the name of the Pod is not provided" do + should.raise ArgumentError do + @sut.specification(nil, "0.99.0") + end.message.should.match /No name/ + end + + it "raises if the name of the Pod is not provided" do + should.raise ArgumentError do + @sut.specification('ARAnalytics', nil) + end.message.should.match /No version/ + end + end + + #-------------------------------------------------------------------------# + + describe "#specification_contents" do + it "returns the specification given the name and the version" do + VCR.use_cassette('GitHubDataProvider', :record => :new_episodes) do + spec = @sut.specification_contents('ARAnalytics', "1.3.1") + spec.should.include("name: ARAnalytics\nversion: 1.3.1") + end + end + + it "returns nil if the Pod is unknown" do + VCR.use_cassette('GitHubDataProvider', :record => :new_episodes) do + spec = @sut.specification_contents('Unknown_Pod', "1.3.1") + spec.should.be.nil + end + end + + it "returns nil if the version of the Pod doesn't exists" do + VCR.use_cassette('GitHubDataProvider', :record => :new_episodes) do + spec = @sut.specification_contents('ARAnalytics', "0.99.0") + spec.should.be.nil + end + end + + it "raises if the name of the Pod is not provided" do + should.raise ArgumentError do + @sut.specification_contents(nil, "0.99.0") + end.message.should.match /No name/ + end + + it "raises if the name of the Pod is not provided" do + should.raise ArgumentError do + @sut.specification_contents('ARAnalytics', nil) + end.message.should.match /No version/ + end + end + + #-------------------------------------------------------------------------# + + end +end diff --git a/spec/source_spec.rb b/spec/source_spec.rb index 90b879de3..47be5211d 100644 --- a/spec/source_spec.rb +++ b/spec/source_spec.rb @@ -4,15 +4,20 @@ module Pod describe Source do before do - @sut = Source.new(fixture('spec-repos/master')) + @path = fixture('spec-repos/test_repo') + provider = Source::FileSystemDataProvider.new(@path) + @sut = Source.new(provider) end #-------------------------------------------------------------------------# describe "In general" do - it "return its name" do - @sut.name.should == 'master' + @sut.name.should == 'test_repo' + end + + it "return its type" do + @sut.type.should == "file system" end it "can be ordered according to its name" do @@ -21,151 +26,155 @@ module Pod s3 = Source.new(Pathname.new 'private') [s3, s1, s2].sort.should == [s1, s2, s3] end - end #-------------------------------------------------------------------------# - describe "Queering the source" do - - it "returns the sets of all the available Pods" do - set_names = @sut.pod_sets.map(&:name) - set_names.should.include('JSONKit') - set_names.should.include('Reachability') + describe "#pods" do + it "returns the available Pods" do + @sut.pods.should == ["BananaLib", "Faulty_spec", "JSONKit", "YAMLSpec"] end - it "returns the available versions of a Pod" do - @sut.versions('Reachability').map(&:to_s).should == %w| 3.1.0 3.0.0 2.0.5 | + it "raises if the repo doesn't exists" do + @path = fixture('spec-repos/non_existing') + provider = Source::FileSystemDataProvider.new(@path) + @sut = Source.new(provider) + e = should.raise Informative do + @sut.pods + end + e.message.should == "Unable to find the file system source named: `non_existing`" end + end - it "returns the specification for the given name and version" do - spec = @sut.specification('Reachability', Version.new('3.0.0')) - spec.name.should == 'Reachability' - spec.version.should.to_s == '3.0.0' - end + #-------------------------------------------------------------------------# - it "returns the path of Ruby specification with a given name and version" do - path = @sut.specification_path('Reachability', Version.new('3.0.0')) - path.should == @sut.repo + 'Reachability/3.0.0/Reachability.podspec' + describe "#versions" do + it "returns the available versions of a Pod" do + @sut.versions('JSONKit').map(&:to_s).should == ["999.999.999", "1.4"] end - it "returns the path of YAML specification with a given name and version" do - source = Source.new(fixture('spec-repos/test_repo')) - path = source.specification_path('YAMLSpec', Version.new('1.0')) - path.should == source.repo + 'Specs/YAMLSpec/1.0/YAMLSpec.podspec.yaml' + it "returns nil if the Pod could not be found" do + @sut.versions('Unknown_Pod').should.be.nil end + end - it "favors the YAML version of a specification if both are available" do - source = Source.new(fixture('spec-repos/test_repo')) - ruby_path = source.repo + 'Specs/YAMLSpec/0.9/YAMLSpec.podspec.yaml' - path = source.specification_path('YAMLSpec', Version.new('0.9')) - ruby_path.should.exist - path.should == source.repo + 'Specs/YAMLSpec/0.9/YAMLSpec.podspec.yaml' + #-------------------------------------------------------------------------# + + describe "#specification" do + it "returns the specification for the given name and version" do + spec = @sut.specification('JSONKit', Version.new("1.4")) + spec.name.should == 'JSONKit' + spec.version.should.to_s == "1.4" end it "raises if it can't find a specification for the given version and name" do - should.raise StandardError do - @sut.specification_path('YAMLSpec', Version.new('999')) - end.message.should.match(/Unable to find the specification YAMLSpec/) + should.raise Informative do + @sut.specification('Unknown_Pod', '999') + end.message.should.match(/Unable to find the specification for Unknown_Pod/) end + end + #-------------------------------------------------------------------------# + + describe "#all_specs" do it "returns all the specifications" do - source = Source.new(fixture('spec-repos/test_repo')) - source.all_specs.map(&:name).sort.uniq.should == ["BananaLib", "JSONKit", "YAMLSpec"] + @sut.all_specs.map(&:name).sort.uniq.should == ["BananaLib", "JSONKit", "YAMLSpec"] end + end + + #-------------------------------------------------------------------------# + describe "#set" do + it "returns the set of a given Pod" do + set = @sut.set("BananaLib") + set.name.should == "BananaLib" + set.sources.should == [@sut] + end end #-------------------------------------------------------------------------# - describe "Searching the source" do - describe "#search" do - it "searches for the Pod with the given name" do - source = Source.new(fixture('spec-repos/test_repo')) - source.search('BananaLib').name.should == 'BananaLib' - end + describe "#pod_sets" do + it "returns all the pod sets" do + @sut.pod_sets.map(&:name).sort.uniq.should == ["BananaLib", "Faulty_spec", "JSONKit", "YAMLSpec"] + end + end - it "searches for the pod with the given dependency" do - source = Source.new(fixture('spec-repos/test_repo')) - dep = Dependency.new('BananaLib') - source.search(dep).name.should == 'BananaLib' - end + #-------------------------------------------------------------------------# - it "supports dependencies on subspecs" do - source = Source.new(fixture('spec-repos/test_repo')) - dep = Dependency.new('BananaLib/subspec') - source.search(dep).name.should == 'BananaLib' - end + describe "#search" do + it "searches for the Pod with the given name" do + @sut.search('BananaLib').name.should == 'BananaLib' + end + it "searches for the pod with the given dependency" do + dep = Dependency.new('BananaLib') + @sut.search(dep).name.should == 'BananaLib' end - describe "#search_by_name" do - it "properly configures the sources of a set in search by name" do - source = Source.new(fixture('spec-repos/test_repo')) - sets = source.search_by_name('monkey', true) - sets.count.should == 1 - set = sets.first - set.name.should == 'BananaLib' - set.sources.map(&:name).should == %w| test_repo | - end + it "supports dependencies on subspecs" do + dep = Dependency.new('BananaLib/subspec') + @sut.search(dep).name.should == 'BananaLib' + end + end - it "handles gracefully specification which can't load in search by name" do - source = Source.new(fixture('spec-repos/test_repo')) - should.not.raise do - source.search_by_name('monkey', true) - end - end + #-------------------------------------------------------------------------# - it "doesn't take into account case" do - source = Source.new(fixture('spec-repos/test_repo')) - source.search_by_name('BANANALIB', true).map(&:name).should == ['BananaLib'] - source.search_by_name('BANANALIB', false).map(&:name).should == ['BananaLib'] - end + describe "#search_by_name" do + it "supports full text search" do + sets = @sut.search_by_name('monkey', true) + sets.map(&:name).should == ["BananaLib"] + sets.map(&:sources).should == [[@sut]] + end - it "returns partial matches" do - source = Source.new(fixture('spec-repos/test_repo')) - source.search_by_name('Banana', true).map(&:name).should == ['BananaLib'] - source.search_by_name('Banana', false).map(&:name).should == ['BananaLib'] - end + it "The search is case insensitive" do + pods = @sut.search_by_name('MONKEY', true) + pods.map(&:name).should == ["BananaLib"] end - describe "#fuzzy_search" do - it "is case insensitive" do - source = Source.new(fixture('spec-repos/master')) - source.fuzzy_search('abmultiton').name.should == 'ABMultiton' - end + it "supports partial matches" do + pods = @sut.search_by_name('MON', true) + pods.map(&:name).should == ["BananaLib"] + end - it "matches misspells" do - source = Source.new(fixture('spec-repos/master')) - source.fuzzy_search('ABMuton').name.should == 'ABMultiton' - end + it "handles gracefully specification which can't be loaded" do + should.raise Informative do + @sut.specification('Faulty_spec', '1.0.0') + end.message.should.include 'Invalid podspec' - it "matches abbreviations" do - source = Source.new(fixture('spec-repos/master')) - source.fuzzy_search('ObjSugar').name.should == "ObjectiveSugar" + should.not.raise do + @sut.search_by_name('monkey', true) end + end + end - it "matches suffixes" do - source = Source.new(fixture('spec-repos/master')) - source.fuzzy_search('table').name.should == "Routable" - end + #-------------------------------------------------------------------------# - it "returns nil if there is no match" do - source = Source.new(fixture('spec-repos/master')) - source.fuzzy_search('12345').should.be.nil - end + describe "#fuzzy_search" do + it "is case insensitive" do + @sut.fuzzy_search('bananalib').name.should == 'BananaLib' end - end + it "matches misspells" do + @sut.fuzzy_search('banalib').name.should == 'BananaLib' + end - #-------------------------------------------------------------------------# + it "matches suffixes" do + @sut.fuzzy_search('Lib').name.should == "BananaLib" + end - describe "Representations" do + it "returns nil if there is no match" do + @sut.fuzzy_search('12345').should.be.nil + end - before do - @sut = Source.new(fixture('spec-repos/test_repo')) + it "matches abbreviations" do + @sut.fuzzy_search('BLib').name.should == "BananaLib" end + end + #-------------------------------------------------------------------------# + + describe "Representations" do it "returns the hash representation" do @sut.to_hash['BananaLib']['1.0']['name'].should == 'BananaLib' end @@ -179,35 +188,6 @@ module Pod #-------------------------------------------------------------------------# - describe "Private Helpers" do - - describe "#specs_dir" do - it "uses the `Specs` dir if it is present" do - repo = fixture('spec-repos/test_repo') - sut = Source.new(repo) - sut.send(:specs_dir).should == repo + 'Specs' - end - - it "uses the root of the repo as the specs dir if the `Specs` folder is not present" do - repo = fixture('spec-repos/master') - sut = Source.new(repo) - sut.send(:specs_dir).should == repo - end - - it "raises if unable to find the source with the given name" do - repo = fixture('spec-repos/non_existing') - sut = Source.new(repo) - e = should.raise Informative do - sut.send(:specs_dir) - end - e.message.should == 'Unable to find a source named: `non_existing`' - end - end - - end - - #-------------------------------------------------------------------------# - end end diff --git a/spec/specification/set_spec.rb b/spec/specification/set_spec.rb index 7d7df007c..5bfe7fd4a 100644 --- a/spec/specification/set_spec.rb +++ b/spec/specification/set_spec.rb @@ -23,7 +23,7 @@ module Pod end it "returns the path of the spec with the highest version" do - @set.highest_version_spec_path.should == @source.repo + 'CocoaLumberjack/1.6.2/CocoaLumberjack.podspec' + @set.highest_version_spec_path.should == @source.data_provider.repo + 'CocoaLumberjack/1.6.2/CocoaLumberjack.podspec' end it "checks if the dependency of the specification is compatible with existing requirements" do @@ -49,7 +49,7 @@ module Pod end it "returns a hash representation" do - spec_path = @source.repo + 'CocoaLumberjack/1.6.2/CocoaLumberjack.podspec' + spec_path = @source.data_provider.repo + 'CocoaLumberjack/1.6.2/CocoaLumberjack.podspec' @set.to_hash.should == { "name" => "CocoaLumberjack", "versions" => {