[Add] EverlinkBroadcastSDK 3.1.1
[CocoaPods.git] / Specs / 7 / 4 / d / KZPlayground / 0.3.0 / KZPlayground.podspec.json
blob2da81299b83cce168e79b194f5512f329a246890
2   "name": "KZPlayground",
3   "version": "0.3.0",
4   "summary": "Playgrounds but for Objective-C, with some extra coolnes.",
5   "description": "                       We all love Swift playgrounds, they are really great,\nbut since most of us still write Objective-C code, why not get benefits of rapid development with Objective-C Plagrounds?\nFast robust interations make it easy to prototype custom UI/Algorithms or even learn Objective-C or some new API.\n",
6   "homepage": "https://github.com/krzysztofzablocki/KZPlayground",
7   "license": "MIT",
8   "authors": {
9     "Krzysztof Zablocki": "krzysztof.zablocki@me.com"
10   },
11   "source": {
12     "git": "https://github.com/krzysztofzablocki/KZPlayground.git",
13     "tag": "0.3.0"
14   },
15   "social_media_url": "https://twitter.com/merowing_",
16   "platforms": {
17     "ios": "7.0"
18   },
19   "requires_arc": true,
20   "source_files": [
21     "Pod/Classes/**/*.h",
22     "Pod/Classes/**/*.m"
23   ],
24   "resources": [
25     "Pod/Assets/*"
26   ],
27   "dependencies": {
28     "dyci": [
29       "~> 0.1.5.6"
30     ],
31     "RSSwizzle": [
32       "~> 0.1.0"
33     ]
34   },
35   "prepare_command": "  cat << EOF > ../../.kick\n   recipe :ruby\nKicker::Recipes::Ruby.runner_bin = 'bacon -q'\n\nprocess do |potential_files|\n  files = potential_files.take_and_map do |file|\n      if file =~ %r{^.*\\.(m|xib|strings)$}\n        execute(\"/usr/bin/python #{File.expand_path(\"~/.dyci/scripts/dyci-recompile.py\")} #{File.expand_path(file)}\")\n        puts \"KZPlayground: Recompiled #{file}\"\n        file\n      end\n    end\nend\n\nprocess do |remaining_files|\n  remaining_files.take_and_map do |file|\n      puts \"KZPlayground: Ignored #{file}\"\n    file\n  end\nend\n\nstartup do\n  log \"KZPlayground: Watching for file changes!\"\nend\nEOF\n"