[Add] Shakuro.PoliteCoreData 1.8.2
[CocoaPods.git] / Specs / 0 / 2 / 8 / ReAnimation / 0.1.0 / ReAnimation.podspec.json
blob6bacfcad2fb3dbfc99ffb7b879b1318397bc42a3
2   "name": "ReAnimation",
3   "version": "0.1.0",
4   "summary": "ReAnimation is a library for working with animations declaratively via RxSwift framework.",
5   "description": "This library is intended to cut out unnecessary boilerplate from UIView.animate by encapsulating the animations in declarative constructs which can be plugged into a RxSwift pipeline.\n\nFor example, animating the origin along with the scale is as simple as using\n```\ntarget.rx.animate(\n    ReactiveAnimations.Scale(factorX: 3, factorY: 3, duration: duration)\n        .simultaneously(with: ReactiveAnimations.Move(originX: 1, originY: 1, duration: duration))\n)\n```",
6   "homepage": "https://github.com/bartosy-ymija/ReAnimation",
7   "license": {
8     "type": "MIT",
9     "file": "LICENSE"
10   },
11   "authors": {
12     "bartosy-ymija": "zmija.bartosz@gmail.com"
13   },
14   "source": {
15     "git": "https://github.com/bartosy-ymija/ReAnimation.git",
16     "tag": "0.1.0"
17   },
18   "platforms": {
19     "ios": "9.0"
20   },
21   "source_files": "ReAnimation/**/*",
22   "exclude_files": "ReAnimation/*.plist",
23   "swift_versions": [
24     "5.0"
25   ],
26   "dependencies": {
27     "RxSwift": [
28       "~> 6.0"
29     ],
30     "RxCocoa": [
31       "~> 6.0"
32     ]
33   },
34   "swift_version": "5.0"