gitextract_4fisv63u/ ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Classy/ │ ├── Additions/ │ │ ├── CASStyleClassUtilities.h │ │ ├── CASStyleClassUtilities.m │ │ ├── CASStyleableItem.h │ │ ├── CASStyleableItem.m │ │ ├── NSObject+CASSwizzle.h │ │ ├── NSObject+CASSwizzle.m │ │ ├── NSRegularExpression+CASAdditions.h │ │ ├── NSRegularExpression+CASAdditions.m │ │ ├── NSString+CASAdditions.h │ │ ├── NSString+CASAdditions.m │ │ ├── UIBarItem+CASAdditions.h │ │ ├── UIBarItem+CASAdditions.m │ │ ├── UIColor+CASAdditions.h │ │ ├── UIColor+CASAdditions.m │ │ ├── UINavigationBar+CASAdditions.h │ │ ├── UINavigationBar+CASAdditions.m │ │ ├── UINavigationItem+CASAdditions.h │ │ ├── UINavigationItem+CASAdditions.m │ │ ├── UISlider+CASAdditions.h │ │ ├── UISlider+CASAdditions.m │ │ ├── UITabBar+CASAdditions.h │ │ ├── UITabBar+CASAdditions.m │ │ ├── UITextField+CASAdditions.h │ │ ├── UITextField+CASAdditions.m │ │ ├── UIToolbar+CASAdditions.h │ │ ├── UIToolbar+CASAdditions.m │ │ ├── UIView+CASAdditions.h │ │ ├── UIView+CASAdditions.m │ │ ├── UIViewController+CASAdditions.h │ │ └── UIViewController+CASAdditions.m │ ├── Classy.h │ ├── Parser/ │ │ ├── CASDeviceOSVersionItem.h │ │ ├── CASDeviceOSVersionItem.m │ │ ├── CASDeviceScreenSizeItem.h │ │ ├── CASDeviceScreenSizeItem.m │ │ ├── CASDeviceSelector.h │ │ ├── CASDeviceSelector.m │ │ ├── CASDeviceSelectorItem.h │ │ ├── CASDeviceTypeItem.h │ │ ├── CASDeviceTypeItem.m │ │ ├── CASExpressionSolver.h │ │ ├── CASExpressionSolver.m │ │ ├── CASInvocation.h │ │ ├── CASInvocation.m │ │ ├── CASLexer.h │ │ ├── CASLexer.m │ │ ├── CASParser.h │ │ ├── CASParser.m │ │ ├── CASStyleNode.h │ │ ├── CASStyleNode.m │ │ ├── CASStyleProperty.h │ │ ├── CASStyleProperty.m │ │ ├── CASStyleSelector.h │ │ ├── CASStyleSelector.m │ │ ├── CASStyler.h │ │ ├── CASStyler.m │ │ ├── CASTextAttributes.h │ │ ├── CASTextAttributes.m │ │ ├── CASToken.h │ │ ├── CASToken.m │ │ ├── CASUnitToken.h │ │ ├── CASUnitToken.m │ │ ├── CASUtilities.h │ │ └── CASUtilities.m │ ├── Reflection/ │ │ ├── CASArgumentDescriptor.h │ │ ├── CASArgumentDescriptor.m │ │ ├── CASAssociatedObjectsWeakWrapper.h │ │ ├── CASAssociatedObjectsWeakWrapper.m │ │ ├── CASObjectClassDescriptor.h │ │ ├── CASObjectClassDescriptor.m │ │ ├── CASPropertyDescriptor.h │ │ ├── CASPropertyDescriptor.m │ │ ├── CASRuntimeExtensions.h │ │ └── CASRuntimeExtensions.m │ └── Supporting Files/ │ └── Info.plist ├── Classy.podspec ├── Classy.xcodeproj/ │ ├── project.pbxproj │ └── xcshareddata/ │ └── xcschemes/ │ └── Classy.xcscheme ├── Example/ │ ├── ClassyExample/ │ │ ├── CASAppDelegate.h │ │ ├── CASAppDelegate.m │ │ ├── CASCatalogViewController.h │ │ ├── CASCatalogViewController.m │ │ ├── CASRootViewController.h │ │ ├── CASRootViewController.m │ │ ├── CASSimpleFormViewController.h │ │ ├── CASSimpleFormViewController.m │ │ ├── ClassyExample-Info.plist │ │ ├── ClassyExample-Prefix.pch │ │ ├── Images.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ └── LaunchImage.launchimage/ │ │ │ └── Contents.json │ │ ├── Stylesheets/ │ │ │ ├── stylesheet.cas │ │ │ └── variables.cas │ │ ├── en.lproj/ │ │ │ └── InfoPlist.strings │ │ └── main.m │ └── ClassyExample.xcodeproj/ │ ├── project.pbxproj │ └── xcshareddata/ │ └── xcschemes/ │ └── ClassyExample.xcscheme ├── LICENSE ├── Podfile ├── README.md ├── Tests/ │ ├── ClassyTests-Info.plist │ ├── ClassyTests-Prefix.pch │ ├── ClassyTests.xcodeproj/ │ │ ├── project.pbxproj │ │ ├── project.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ └── ClassyTests.xccheckout │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ └── ClassyTests.xcscheme │ ├── ClassyTestsLoader/ │ │ ├── CASTestsAppDelegate.h │ │ ├── CASTestsAppDelegate.m │ │ ├── Classy-Prefix.pch │ │ ├── ClassyTestsLoader-Info.plist │ │ ├── Images.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ └── LaunchImage.launchimage/ │ │ │ └── Contents.json │ │ └── main.m │ ├── Specs/ │ │ ├── CASExampleView.h │ │ ├── CASExampleView.m │ │ ├── CASExampleViewController.h │ │ ├── CASExampleViewController.m │ │ ├── CASSwizzler.h │ │ ├── GcovTestObserver.m │ │ ├── Integration Tests/ │ │ │ ├── CASCustomViewSpec.m │ │ │ ├── CASUIAppearanceSpec.m │ │ │ └── CASUIKitSpec.m │ │ ├── UIDevice+CASMockDevice.h │ │ ├── UIDevice+CASMockDevice.m │ │ ├── Unit Tests/ │ │ │ ├── CASArgumentDescriptorSpec.m │ │ │ ├── CASLexerSpec.m │ │ │ ├── CASParserSpec.m │ │ │ ├── CASRuntimeExtensionsSpec.m │ │ │ ├── CASStylePropertySpec.m │ │ │ ├── CASStyleSelectorSpec.m │ │ │ ├── CASStylerSpec.m │ │ │ ├── CASTokenSpec.m │ │ │ └── UIView_CASAdditionsSpec.m │ │ └── XCTest+Spec.h │ ├── Stylesheets/ │ │ ├── CustomView-Basic.cas │ │ ├── Import-1.cas │ │ ├── Import-2.cas │ │ ├── Import-Base.cas │ │ ├── Injected-File.cas │ │ ├── Precedence-1.cas │ │ ├── Precedence-2.cas │ │ ├── Properties-Args.cas │ │ ├── Properties-Basic.cas │ │ ├── Properties-Nested.cas │ │ ├── Selectors-Complex.cas │ │ ├── Selectors-Hierarchy.cas │ │ ├── Selectors-Indentation.cas │ │ ├── Selectors-Media-Queries-styler.cas │ │ ├── Selectors-Media-Queries.cas │ │ ├── Selectors-Messy.cas │ │ ├── Selectors-Nested.cas │ │ ├── UIAppearance-Basic.cas │ │ ├── UIKit-Basic.cas │ │ ├── UIKit-MultipleClasses.cas │ │ ├── Variables-Basic.cas │ │ └── Variables-Injection.cas │ └── UIAppearance-setters.md └── script/ └── coveralls.sh