├── .gitignore ├── AutoLayoutDSL-Swift.podspec ├── AutoLayoutDSL-Swift.xcworkspace └── contents.xcworkspacedata ├── AutoLayoutDSL-Swift ├── AutoLayoutDSL-Swift.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── AutoLayoutDSL-Swift.xcscheme ├── AutoLayoutDSL-Swift │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── FirstViewController.swift │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── first.imageset │ │ │ ├── Contents.json │ │ │ └── first.pdf │ │ └── second.imageset │ │ │ ├── Contents.json │ │ │ └── second.pdf │ ├── Info.plist │ └── SecondViewController.swift └── AutoLayoutDSL-SwiftTests │ └── Info.plist ├── LICENSE ├── README.md ├── Source └── AutoLayoutDSL-Swift.swift ├── Tests └── AutoLayoutDSL-SwiftTests.swift └── circle.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelbear/AutoLayoutDSL-Swift/HEAD/.gitignore -------------------------------------------------------------------------------- /AutoLayoutDSL-Swift.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelbear/AutoLayoutDSL-Swift/HEAD/AutoLayoutDSL-Swift.podspec -------------------------------------------------------------------------------- /AutoLayoutDSL-Swift.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelbear/AutoLayoutDSL-Swift/HEAD/AutoLayoutDSL-Swift.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AutoLayoutDSL-Swift/AutoLayoutDSL-Swift.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelbear/AutoLayoutDSL-Swift/HEAD/AutoLayoutDSL-Swift/AutoLayoutDSL-Swift.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AutoLayoutDSL-Swift/AutoLayoutDSL-Swift.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelbear/AutoLayoutDSL-Swift/HEAD/AutoLayoutDSL-Swift/AutoLayoutDSL-Swift.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AutoLayoutDSL-Swift/AutoLayoutDSL-Swift.xcodeproj/xcshareddata/xcschemes/AutoLayoutDSL-Swift.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelbear/AutoLayoutDSL-Swift/HEAD/AutoLayoutDSL-Swift/AutoLayoutDSL-Swift.xcodeproj/xcshareddata/xcschemes/AutoLayoutDSL-Swift.xcscheme -------------------------------------------------------------------------------- /AutoLayoutDSL-Swift/AutoLayoutDSL-Swift/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelbear/AutoLayoutDSL-Swift/HEAD/AutoLayoutDSL-Swift/AutoLayoutDSL-Swift/AppDelegate.swift -------------------------------------------------------------------------------- /AutoLayoutDSL-Swift/AutoLayoutDSL-Swift/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelbear/AutoLayoutDSL-Swift/HEAD/AutoLayoutDSL-Swift/AutoLayoutDSL-Swift/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /AutoLayoutDSL-Swift/AutoLayoutDSL-Swift/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelbear/AutoLayoutDSL-Swift/HEAD/AutoLayoutDSL-Swift/AutoLayoutDSL-Swift/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /AutoLayoutDSL-Swift/AutoLayoutDSL-Swift/FirstViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelbear/AutoLayoutDSL-Swift/HEAD/AutoLayoutDSL-Swift/AutoLayoutDSL-Swift/FirstViewController.swift -------------------------------------------------------------------------------- /AutoLayoutDSL-Swift/AutoLayoutDSL-Swift/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelbear/AutoLayoutDSL-Swift/HEAD/AutoLayoutDSL-Swift/AutoLayoutDSL-Swift/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /AutoLayoutDSL-Swift/AutoLayoutDSL-Swift/Images.xcassets/first.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelbear/AutoLayoutDSL-Swift/HEAD/AutoLayoutDSL-Swift/AutoLayoutDSL-Swift/Images.xcassets/first.imageset/Contents.json -------------------------------------------------------------------------------- /AutoLayoutDSL-Swift/AutoLayoutDSL-Swift/Images.xcassets/first.imageset/first.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelbear/AutoLayoutDSL-Swift/HEAD/AutoLayoutDSL-Swift/AutoLayoutDSL-Swift/Images.xcassets/first.imageset/first.pdf -------------------------------------------------------------------------------- /AutoLayoutDSL-Swift/AutoLayoutDSL-Swift/Images.xcassets/second.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelbear/AutoLayoutDSL-Swift/HEAD/AutoLayoutDSL-Swift/AutoLayoutDSL-Swift/Images.xcassets/second.imageset/Contents.json -------------------------------------------------------------------------------- /AutoLayoutDSL-Swift/AutoLayoutDSL-Swift/Images.xcassets/second.imageset/second.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelbear/AutoLayoutDSL-Swift/HEAD/AutoLayoutDSL-Swift/AutoLayoutDSL-Swift/Images.xcassets/second.imageset/second.pdf -------------------------------------------------------------------------------- /AutoLayoutDSL-Swift/AutoLayoutDSL-Swift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelbear/AutoLayoutDSL-Swift/HEAD/AutoLayoutDSL-Swift/AutoLayoutDSL-Swift/Info.plist -------------------------------------------------------------------------------- /AutoLayoutDSL-Swift/AutoLayoutDSL-Swift/SecondViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelbear/AutoLayoutDSL-Swift/HEAD/AutoLayoutDSL-Swift/AutoLayoutDSL-Swift/SecondViewController.swift -------------------------------------------------------------------------------- /AutoLayoutDSL-Swift/AutoLayoutDSL-SwiftTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelbear/AutoLayoutDSL-Swift/HEAD/AutoLayoutDSL-Swift/AutoLayoutDSL-SwiftTests/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelbear/AutoLayoutDSL-Swift/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelbear/AutoLayoutDSL-Swift/HEAD/README.md -------------------------------------------------------------------------------- /Source/AutoLayoutDSL-Swift.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelbear/AutoLayoutDSL-Swift/HEAD/Source/AutoLayoutDSL-Swift.swift -------------------------------------------------------------------------------- /Tests/AutoLayoutDSL-SwiftTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelbear/AutoLayoutDSL-Swift/HEAD/Tests/AutoLayoutDSL-SwiftTests.swift -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelbear/AutoLayoutDSL-Swift/HEAD/circle.yml --------------------------------------------------------------------------------