Version bump for a release
1 file changed
tree: 7f044c0d91a3dab1c54bf5a000410bc6c66cc6b0
  1. .github/
  2. AppKit/
  3. bazel_support/
  4. DebugUtils/
  5. Foundation/
  6. GTM.xcodeproj/
  7. GTMiPhone.xcodeproj/
  8. iPhone/
  9. UnitTesting/
  10. XcodeConfig/
  11. .gitignore
  12. .swift-version
  13. BUILD
  14. BuildingAndUsing.txt
  15. CONTRIBUTING.md
  16. GoogleToolboxForMac.podspec
  17. GTM-Info.plist
  18. GTMDefines.h
  19. GTMiPhone-Info.plist
  20. LICENSE
  21. README.md
  22. UnitTest-Info.plist
  23. WORKSPACE
README.md

GTM: Google Toolbox for Mac

Project site https://github.com/google/google-toolbox-for-mac
Discussion group http://groups.google.com/group/google-toolbox-for-mac

Google Toolbox for Mac

A collection of source from different Google projects that may be of use to developers working other iOS or OS X projects.

If you find a problem/bug or want a new feature to be included in the Google Toolbox for Mac, please join the discussion group or submit an issue.

Bazel Support

Google Toolbox for Mac can be consumed via Bazel, to do so add the following to your WORKSPACE File:

GTM_GIT_SHA = "SOME_SHA"
http_archive(
    name = "google_toolbox_for_mac",
    urls = [
        "https://github.com/google/google-toolbox-for-mac/archive/%s.zip" % GTM_GIT_SHA
    ],
    strip_prefix = "google-toolbox-for-mac-%s" % GTM_GIT_SHA
)

load(
    "@google_toolbox_for_mac//bazel_support:repositories.bzl",
    "google_toolbox_for_mac_rules_dependencies",
)

google_toolbox_for_mac_rules_dependencies()