├── .bundle └── config ├── .circleci └── config.yml ├── .codecov.yml ├── .github └── workflows │ ├── bump_homebrew.yml │ ├── docker.yml │ ├── jazzy.yml │ ├── release_macOS.yml │ ├── release_ubuntu.yml │ ├── test_macOS.yml │ └── test_ubuntu.yml ├── .gitignore ├── .gitmodules ├── .jazzy.yaml ├── .pre-commit-hooks.yaml ├── .ruby-version ├── .sourcery-macOS.yml ├── .sourcery-ubuntu.yml ├── .swift-version ├── .swiftlint.yml ├── .vscode ├── launch.json └── settings.json ├── ABOUT.md ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dangerfile ├── Dockerfile ├── Funding.yml ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── LINUX.md ├── LinuxMain.swift ├── Package.resolved ├── Package.swift ├── Plugins └── SourceryCommandPlugin │ └── SourceryCommandPlugin.swift ├── README.md ├── RELEASING.md ├── Rakefile ├── Resources ├── Inside-iOS-Dev-Sourcery-Intro-To-Mocking-Video-Thumbnail.png ├── daemon.gif ├── icon-1024.png ├── icon-128.png ├── icon-16.png ├── icon-256.png ├── icon-32.png ├── icon-512.png └── icon-64.png ├── Scripts ├── SwiftLint.sh ├── bootstrap ├── package_content ├── pre-commit.sh └── update-placeholders ├── Sourcery-Example ├── CodeGenerated │ └── Basic.generated.swift ├── Podfile ├── Sourcery-Example.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── Sourcery-Example.xcworkspace │ └── contents.xcworkspacedata ├── Sourcery-Example │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift └── Templates │ └── Basic.stencil ├── Sourcery.podspec ├── Sourcery ├── Configuration.swift ├── Generating │ └── Templates │ │ ├── JavaScript │ │ └── JavaScriptTemplate.swift │ │ ├── Stencil │ │ └── StencilTemplate.swift │ │ └── Swift │ │ └── SwiftTemplate.swift ├── Sourcery.swift ├── Templates │ ├── Coding.stencil │ ├── Description.stencil │ ├── Diffable.stencil │ ├── Equality.stencil │ ├── JSExport.ejs │ ├── Typed.stencil │ └── TypedSpec.stencil └── Utils │ ├── ByteRangeConversion.swift │ ├── BytesRange + Editing.swift │ ├── DryOutputModels.swift │ ├── FolderWatcher.swift │ ├── NSRange + Editing.swift │ └── Xcode+Extensions.swift ├── SourceryExecutable ├── Info.plist └── main.swift ├── SourceryFramework.podspec ├── SourceryFramework ├── Info.plist ├── SourceryFramework.h └── Sources │ ├── Generating │ ├── Generator.swift │ ├── SourceryTemplate.swift │ └── Template.swift │ └── Parsing │ ├── FileParserType.swift │ ├── String+TypeInference.swift │ ├── SwiftSyntax │ ├── AST │ │ ├── AccessLevel+SwiftSyntax.swift │ │ ├── Actor+SwiftSyntax.swift │ │ ├── Attribute+SwiftSyntax.swift │ │ ├── Class+SwiftSyntax.swift │ │ ├── Enum+SwiftSyntax.swift │ │ ├── EnumCase+SwiftSyntax.swift │ │ ├── GenericParameter+SwiftSyntax.swift │ │ ├── GenericRequirement+SwiftSyntax.swift │ │ ├── GenericType+SwiftSyntax.swift │ │ ├── Method+SwiftSyntax.swift │ │ ├── MethodParameter+SwiftSyntax.swift │ │ ├── Modifier+SwiftSyntax.swift │ │ ├── Protocol+SwiftSyntax.swift │ │ ├── Signature.swift │ │ ├── Struct+SwiftSyntax.swift │ │ ├── Subscript+SwiftSyntax.swift │ │ ├── Type+SwiftSyntax.swift │ │ ├── TypeName+SwiftSyntax.swift │ │ └── Variable+SwiftSyntax.swift │ ├── FileParserSyntax.swift │ ├── Syntax+Extensions.swift │ └── SyntaxTreeCollector.swift │ └── Utils │ ├── AnnotationsParser.swift │ ├── Bridges.swift │ ├── InlineParser.swift │ ├── StringView.swift │ └── Verifier.swift ├── SourceryJS ├── Info.plist ├── Resources │ └── ejs.js ├── SourceryJS.h └── Sources │ ├── EJSTemplate+Tests.swift │ └── EJSTemplate.swift ├── SourceryRuntime.podspec ├── SourceryRuntime ├── Sources │ ├── Common │ │ ├── AST │ │ │ ├── AccessLevel.swift │ │ │ ├── Actor.swift │ │ │ ├── Annotations.swift │ │ │ ├── Attribute.swift │ │ │ ├── Class.swift │ │ │ ├── Definition.swift │ │ │ ├── Documentation.swift │ │ │ ├── Import.swift │ │ │ ├── Modifier.swift │ │ │ ├── PhantomProtocols.swift │ │ │ ├── Protocol.swift │ │ │ ├── ProtocolComposition.swift │ │ │ ├── Struct.swift │ │ │ ├── TypeName │ │ │ │ ├── Array.swift │ │ │ │ ├── Dictionary.swift │ │ │ │ ├── Generic.swift │ │ │ │ ├── Set.swift │ │ │ │ └── Typed.swift │ │ │ └── Typealias.swift │ │ ├── Array+Parallel.swift │ │ ├── BytesRange.swift │ │ ├── Composer │ │ │ ├── Composer.swift │ │ │ └── ParserResultsComposed.swift │ │ ├── Diffable.swift │ │ ├── Extensions.swift │ │ ├── FileParserResult.swift │ │ ├── Log.swift │ │ └── TemplateContext.swift │ ├── Generated │ │ ├── AutoHashable.generated.swift │ │ ├── Coding.generated.swift │ │ ├── JSExport.generated.swift │ │ └── Typed.generated.swift │ ├── Linux │ │ ├── AST │ │ │ ├── AssociatedType_Linux.swift │ │ │ ├── AssociatedValue_Linux.swift │ │ │ ├── ClosureParameter_Linux.swift │ │ │ ├── EnumCase_Linux.swift │ │ │ ├── Enum_Linux.swift │ │ │ ├── GenericParameter_Linux.swift │ │ │ ├── GenericRequirement_Linux.swift │ │ │ ├── MethodParameter_Linux.swift │ │ │ ├── Method_Linux.swift │ │ │ ├── Protocol_Linux.swift │ │ │ ├── Subscript_Linux.swift │ │ │ ├── TypeName │ │ │ │ ├── Closure_Linux.swift │ │ │ │ ├── GenericTypeParameter_Linux.swift │ │ │ │ ├── Tuple_Linux.swift │ │ │ │ └── TypeName_Linux.swift │ │ │ ├── Type_Linux.swift │ │ │ └── Variable_Linux.swift │ │ ├── DynamicMemberLookup_Linux.swift │ │ ├── NSException_Linux.swift │ │ ├── TypesCollection_Linux.swift │ │ └── Types_Linux.swift │ └── macOS │ │ ├── AST │ │ ├── AssociatedType.swift │ │ ├── AssociatedValue.swift │ │ ├── ClosureParameter.swift │ │ ├── Enum.swift │ │ ├── EnumCase.swift │ │ ├── GenericParameter.swift │ │ ├── GenericRequirement.swift │ │ ├── Method.swift │ │ ├── MethodParameter.swift │ │ ├── Subscript.swift │ │ ├── Type.swift │ │ ├── TypeName │ │ │ ├── Closure.swift │ │ │ ├── GenericTypeParameter.swift │ │ │ ├── Tuple.swift │ │ │ └── TypeName.swift │ │ └── Variable.swift │ │ ├── Types.swift │ │ └── TypesCollection.swift └── Supporting Files │ ├── Info.plist │ └── SourceryRuntime.h ├── SourceryStencil ├── Info.plist ├── SourceryStencil.h └── Sources │ ├── NewLineNode.swift │ ├── StencilTemplate.swift │ └── TypedNode.swift ├── SourcerySwift ├── Info.plist ├── SourcerySwift.h └── Sources │ ├── SourceryRuntime.content.generated.swift │ ├── SourceryRuntime_Linux.content.generated.swift │ └── SwiftTemplate.swift ├── SourceryTests ├── ConfigurationSpec.swift ├── Generating │ ├── JavaScriptTemplateSpecs.swift │ ├── StencilTemplateSpec.swift │ └── SwiftTemplateSpecs.swift ├── GeneratorSpec.swift ├── Helpers │ ├── Builders.swift │ ├── CustomMatchers.swift │ └── Extensions.swift ├── Info.plist ├── Models │ ├── ActorSpec.swift │ ├── ArrayTypeSpec.swift │ ├── ClassSpec.swift │ ├── DiffableSpec.swift │ ├── EnumSpec.swift │ ├── MethodSpec.swift │ ├── ProtocolSpec.swift │ ├── StructSpec.swift │ ├── TypeSpec.swift │ ├── TypealiasSpec.swift │ ├── TypedSpec.generated.swift │ └── VariableSpec.swift ├── Output │ └── DryOutputSpec.swift ├── Parsing │ ├── ComposerSpec.swift │ ├── FileParserSpec.swift │ ├── FileParser_AssociatedTypeSpec.swift │ ├── FileParser_AttributesModifierSpec.swift │ ├── FileParser_MethodsSpec.swift │ ├── FileParser_ProtocolComposition.swift │ ├── FileParser_SubscriptsSpec.swift │ ├── FileParser_TypeNameSpec.swift │ ├── FileParser_VariableSpec.swift │ └── Helpers │ │ ├── AnnotationsParserSpec.swift │ │ ├── StringViewSpec.swift │ │ ├── TemplateAnnotationsParserSpec.swift │ │ ├── TemplatesAnnotationParser_ForceParseInlineCodeSpec.swift │ │ └── VerifierSpec.swift ├── Sourcery+PerformanceSpec.swift ├── SourcerySpec.swift └── Stub │ ├── Configs │ ├── invalid.yml │ ├── multi.yml │ ├── parent.yml │ └── valid.yml │ ├── DryRun-Code │ └── Base.swift │ ├── Errors │ └── localized-error.swift │ ├── JavaScriptTemplates │ ├── AllTypealiases.ejs │ ├── Equality.ejs │ ├── Function.ejs │ ├── Includes.ejs │ ├── Other.ejs │ ├── ProtocolCompositions.ejs │ ├── SubfolderIncludes.ejs │ ├── Typealiases.ejs │ └── lib │ │ ├── One.ejs │ │ └── Two.ejs │ ├── Performance-Code │ ├── Kiosk │ │ ├── Admin │ │ │ ├── AdminCardTestingViewController.swift │ │ │ ├── AdminLogViewController.swift │ │ │ ├── AdminPanelViewController.swift │ │ │ ├── AuctionWebViewController.swift │ │ │ ├── ChooseAuctionViewController.swift │ │ │ └── PasswordAlertViewController.swift │ │ ├── App │ │ │ ├── APIPingManager.swift │ │ │ ├── AppDelegate+GlobalActions.swift │ │ │ ├── AppDelegate.swift │ │ │ ├── AppSetup.swift │ │ │ ├── AppViewController.swift │ │ │ ├── BidderDetailsRetrieval.swift │ │ │ ├── CardHandler.swift │ │ │ ├── Constants.swift │ │ │ ├── GlobalFunctions.swift │ │ │ ├── KioskDateFormatter.h │ │ │ ├── KioskDateFormatter.m │ │ │ ├── Logger.swift │ │ │ ├── MarkdownParser.swift │ │ │ ├── Models │ │ │ │ ├── Artist.swift │ │ │ │ ├── Artwork.swift │ │ │ │ ├── Bid.swift │ │ │ │ ├── Bidder.swift │ │ │ │ ├── BidderPosition.swift │ │ │ │ ├── BuyersPremium.swift │ │ │ │ ├── Card.swift │ │ │ │ ├── GenericError.swift │ │ │ │ ├── Image.swift │ │ │ │ ├── JSONAble.swift │ │ │ │ ├── Location.swift │ │ │ │ ├── Sale.swift │ │ │ │ ├── SaleArtwork.swift │ │ │ │ ├── SaleArtworkViewModel.swift │ │ │ │ ├── SystemTime.swift │ │ │ │ └── User.swift │ │ │ ├── NSErrorExtensions.swift │ │ │ ├── Networking │ │ │ │ ├── APIKeys.swift │ │ │ │ ├── ArtsyAPI.swift │ │ │ │ ├── NetworkLogger.swift │ │ │ │ ├── Networking.swift │ │ │ │ ├── UserCredentials.swift │ │ │ │ └── XAppToken.swift │ │ │ ├── OfflineViewController.swift │ │ │ ├── STPCard+Validation.h │ │ │ ├── STPCard+Validation.m │ │ │ ├── StubResponses.h │ │ │ ├── StubResponses.m │ │ │ ├── SwiftExtensions.swift │ │ │ ├── UIStoryboardSegueExtensions.swift │ │ │ ├── UIViewControllerExtensions.swift │ │ │ ├── UIViewSubclassesErrorExtensions.swift │ │ │ └── Views │ │ │ │ ├── Button Subclasses │ │ │ │ └── Button.swift │ │ │ │ ├── RegisterFlowView.swift │ │ │ │ ├── SimulatorOnlyView.swift │ │ │ │ ├── Spinner.swift │ │ │ │ ├── SwitchView.swift │ │ │ │ └── Text Fields │ │ │ │ ├── CursorView.swift │ │ │ │ └── TextField.swift │ │ ├── Auction Listings │ │ │ ├── ListingsCountdownManager.swift │ │ │ ├── ListingsViewController.swift │ │ │ ├── ListingsViewModel.swift │ │ │ ├── MasonryCollectionViewCell.swift │ │ │ ├── TableCollectionViewCell.swift │ │ │ └── WebViewController.swift │ │ ├── Bid Fulfillment │ │ │ ├── AdminCCBypassNetworkModel.swift │ │ │ ├── BidCheckingNetworkModel.swift │ │ │ ├── BidDetailsPreviewView.swift │ │ │ ├── BidderNetworkModel.swift │ │ │ ├── ConfirmYourBidArtsyLoginViewController.swift │ │ │ ├── ConfirmYourBidEnterYourEmailViewController.swift │ │ │ ├── ConfirmYourBidPINViewController.swift │ │ │ ├── ConfirmYourBidPasswordViewController.swift │ │ │ ├── ConfirmYourBidViewController.swift │ │ │ ├── FulfillmentContainerViewController.swift │ │ │ ├── FulfillmentNavigationController.swift │ │ │ ├── GenericFormValidationViewModel.swift │ │ │ ├── KeypadContainerView.swift │ │ │ ├── KeypadView.swift │ │ │ ├── KeypadViewModel.swift │ │ │ ├── KeypadViewPreviewIB.png │ │ │ ├── LoadingViewController.swift │ │ │ ├── LoadingViewModel.swift │ │ │ ├── ManualCreditCardInputViewController.swift │ │ │ ├── ManualCreditCardInputViewModel.swift │ │ │ ├── Models │ │ │ │ ├── BidDetails.swift │ │ │ │ ├── NewUser.swift │ │ │ │ └── RegistrationCoordinator.swift │ │ │ ├── PlaceBidNetworkModel.swift │ │ │ ├── PlaceBidViewController.swift │ │ │ ├── RegisterViewController.swift │ │ │ ├── RegistrationEmailViewController.swift │ │ │ ├── RegistrationMobileViewController.swift │ │ │ ├── RegistrationPasswordViewController.swift │ │ │ ├── RegistrationPasswordViewModel.swift │ │ │ ├── RegistrationPostalZipViewController.swift │ │ │ ├── StripeManager.swift │ │ │ ├── SwipeCreditCardViewController.swift │ │ │ ├── YourBiddingDetailsViewController.swift │ │ │ ├── edit_button@2x.png │ │ │ └── toolbar_close@2x.png │ │ ├── Help │ │ │ ├── HelpAnimator.swift │ │ │ └── HelpViewController.swift │ │ ├── HelperFunctions.swift │ │ ├── ListingsCollectionViewCell.swift │ │ ├── Observable+JSONAble.swift │ │ ├── Observable+Logging.swift │ │ ├── Observable+Operators.swift │ │ ├── Sale Artwork Details │ │ │ ├── ImageTiledDataSource.swift │ │ │ ├── SaleArtworkDetailsViewController.swift │ │ │ ├── SaleArtworkZoomViewController.swift │ │ │ └── WhitespaceGobbler.swift │ │ ├── UIKit+Rx.swift │ │ ├── UILabel+Fonts.swift │ │ ├── UIView+LongPressDisplayMessage.swift │ │ └── UIViewController+Bidding.swift │ └── LICENSE │ ├── Result │ ├── AllTypealiases.swift │ ├── Basic+Other+SourceryTemplates.swift │ ├── Basic+Other+SourceryTemplates_Linux.swift │ ├── Basic+Other.swift │ ├── Basic.swift │ ├── BasicFooExcluded.swift │ ├── Function.swift │ ├── Other.swift │ ├── ProtocolCompositions.swift │ └── Typealiases.swift │ ├── Source │ ├── Bar.swift │ ├── Foo.swift │ ├── FooBar.swift │ └── TestProject │ │ ├── TestProject.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── TestProject │ │ └── Info.plist │ ├── Source_Linux │ ├── Bar.swift │ ├── Foo.swift │ ├── FooBar.swift │ └── TestProject │ │ ├── TestProject.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── TestProject │ │ └── Info.plist │ ├── Stubs.swift │ ├── SwiftTemplates │ ├── Equality.swift │ ├── Equality.swifttemplate │ ├── Function.swifttemplate │ ├── IncludeCycle.swifttemplate │ ├── IncludeFile.swifttemplate │ ├── IncludeFileNoExtension.swifttemplate │ ├── Includes.swifttemplate │ ├── IncludesNoExtension.swifttemplate │ ├── Invalid.swifttemplate │ ├── InvalidTag.swifttemplate │ ├── Other.swifttemplate │ ├── Runtime.swifttemplate │ ├── SelfIncludeCycle.swifttemplate │ ├── SubfolderFileIncludes.swifttemplate │ ├── SubfolderIncludes.swifttemplate │ ├── Throws.swifttemplate │ ├── includeCycle │ │ ├── One.swifttemplate │ │ └── Two.swifttemplate │ └── lib │ │ ├── Equality.swift │ │ ├── One.swifttemplate │ │ └── Two.swifttemplate │ └── Templates │ ├── Basic.stencil │ ├── GenerationWays.stencil │ ├── Include.stencil │ ├── Other.stencil │ ├── Partial.stencil │ ├── SourceryTemplateEJS.sourcerytemplate │ └── SourceryTemplateStencil.sourcerytemplate ├── SourceryUtils.podspec ├── SourceryUtils ├── Sources │ ├── Path+Extensions.swift │ ├── Sha.swift │ ├── Time.swift │ └── Version.swift └── Supporting Files │ ├── Info.plist │ └── SourceryUtils.h ├── Templates ├── .swiftlint.yml ├── CodableContext │ ├── CodableContext.h │ └── Info.plist ├── CodableContextTests │ ├── CodableContextTests.swift │ └── Info.plist ├── Templates.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── TemplatesTests.xcscheme ├── Templates │ ├── AutoCases.stencil │ ├── AutoCodable.swifttemplate │ ├── AutoEquatable.stencil │ ├── AutoHashable.stencil │ ├── AutoLenses.stencil │ ├── AutoMockable.stencil │ ├── Decorator.swifttemplate │ └── LinuxMain.stencil ├── Tests │ ├── Context │ │ ├── AutoCases.swift │ │ ├── AutoCodable.swift │ │ ├── AutoEquatable.swift │ │ ├── AutoHashable.swift │ │ ├── AutoLenses.swift │ │ ├── AutoMockable.swift │ │ └── LinuxMain.swift │ ├── Context_Linux │ │ ├── AutoCases.swift │ │ ├── AutoEquatable.swift │ │ ├── AutoHashable.swift │ │ ├── AutoLenses.swift │ │ ├── AutoMockable.swift │ │ └── LinuxMain.swift │ ├── Expected │ │ ├── AutoCases.expected │ │ ├── AutoCodable.expected │ │ ├── AutoEquatable.expected │ │ ├── AutoHashable.expected │ │ ├── AutoLenses.expected │ │ ├── AutoMockable.expected │ │ └── LinuxMain.expected │ ├── Generated │ │ ├── AutoCases.generated.swift │ │ ├── AutoCodable.generated.swift │ │ ├── AutoEquatable.generated.swift │ │ ├── AutoHashable.generated.swift │ │ ├── AutoLenses.generated.swift │ │ ├── AutoMockable.generated.swift │ │ └── LinuxMain.generated.swift │ ├── Info.plist │ └── TemplatesTests.swift └── artifactbundle.info.json.template ├── Tests └── SourceryLibTests ├── TryCatch ├── Info.plist ├── TryCatch.m └── include │ └── TryCatch.h ├── docs ├── Classes │ ├── Actor.html │ ├── ArrayType.html │ ├── AssociatedType.html │ ├── AssociatedValue.html │ ├── Attribute.html │ ├── Class.html │ ├── ClosureParameter.html │ ├── ClosureType.html │ ├── DictionaryType.html │ ├── DiffableResult.html │ ├── Enum.html │ ├── EnumCase.html │ ├── GenericParameter.html │ ├── GenericRequirement.html │ ├── GenericRequirement │ │ └── Relationship.html │ ├── GenericType.html │ ├── GenericTypeParameter.html │ ├── Import.html │ ├── Method.html │ ├── MethodParameter.html │ ├── Modifier.html │ ├── Protocol.html │ ├── ProtocolComposition.html │ ├── SetType.html │ ├── Struct.html │ ├── Subscript.html │ ├── TupleElement.html │ ├── TupleType.html │ ├── Type.html │ ├── TypeName.html │ ├── Types.html │ └── Variable.html ├── Enums │ └── Composer.html ├── Examples.html ├── Extensions │ ├── Array.html │ ├── String.html │ ├── StringProtocol.html │ └── Typealias.html ├── Guides.html ├── Other Classes.html ├── Other Enums.html ├── Other Extensions.html ├── Other Protocols.html ├── Other Typealiases.html ├── Protocols │ ├── Annotated.html │ ├── Definition.html │ ├── Diffable.html │ ├── Documented.html │ └── Typed.html ├── Types.html ├── badge.svg ├── codable.html ├── css │ ├── highlight.css │ └── jazzy.css ├── decorator.html ├── diffable.html ├── enum-cases.html ├── equatable.html ├── hashable.html ├── img │ ├── carat.png │ ├── dash.png │ ├── gh.png │ └── spinner.gif ├── index.html ├── installing.html ├── js │ ├── jazzy.js │ ├── jazzy.search.js │ ├── jquery.min.js │ ├── lunr.min.js │ └── typeahead.jquery.js ├── lenses.html ├── linuxmain.html ├── mocks.html ├── search.json ├── usage.html └── writing-templates.html └── guides ├── Codable.md ├── Decorator.md ├── Diffable.md ├── Enum cases.md ├── Equatable.md ├── Hashable.md ├── Installing.md ├── Lenses.md ├── LinuxMain.md ├── Mocks.md ├── Usage.md └── Writing templates.md /.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/.bundle/config -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.github/workflows/bump_homebrew.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/.github/workflows/bump_homebrew.yml -------------------------------------------------------------------------------- /.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/.github/workflows/docker.yml -------------------------------------------------------------------------------- /.github/workflows/jazzy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/.github/workflows/jazzy.yml -------------------------------------------------------------------------------- /.github/workflows/release_macOS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/.github/workflows/release_macOS.yml -------------------------------------------------------------------------------- /.github/workflows/release_ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/.github/workflows/release_ubuntu.yml -------------------------------------------------------------------------------- /.github/workflows/test_macOS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/.github/workflows/test_macOS.yml -------------------------------------------------------------------------------- /.github/workflows/test_ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/.github/workflows/test_ubuntu.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.jazzy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/.jazzy.yaml -------------------------------------------------------------------------------- /.pre-commit-hooks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/.pre-commit-hooks.yaml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.4.1 -------------------------------------------------------------------------------- /.sourcery-macOS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/.sourcery-macOS.yml -------------------------------------------------------------------------------- /.sourcery-ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/.sourcery-ubuntu.yml -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 5.8 2 | -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /ABOUT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/ABOUT.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dangerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Dangerfile -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Dockerfile -------------------------------------------------------------------------------- /Funding.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Funding.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/LICENSE -------------------------------------------------------------------------------- /LINUX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/LINUX.md -------------------------------------------------------------------------------- /LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/LinuxMain.swift -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Package.swift -------------------------------------------------------------------------------- /Plugins/SourceryCommandPlugin/SourceryCommandPlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Plugins/SourceryCommandPlugin/SourceryCommandPlugin.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/README.md -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/RELEASING.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Rakefile -------------------------------------------------------------------------------- /Resources/Inside-iOS-Dev-Sourcery-Intro-To-Mocking-Video-Thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Resources/Inside-iOS-Dev-Sourcery-Intro-To-Mocking-Video-Thumbnail.png -------------------------------------------------------------------------------- /Resources/daemon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Resources/daemon.gif -------------------------------------------------------------------------------- /Resources/icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Resources/icon-1024.png -------------------------------------------------------------------------------- /Resources/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Resources/icon-128.png -------------------------------------------------------------------------------- /Resources/icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Resources/icon-16.png -------------------------------------------------------------------------------- /Resources/icon-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Resources/icon-256.png -------------------------------------------------------------------------------- /Resources/icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Resources/icon-32.png -------------------------------------------------------------------------------- /Resources/icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Resources/icon-512.png -------------------------------------------------------------------------------- /Resources/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Resources/icon-64.png -------------------------------------------------------------------------------- /Scripts/SwiftLint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Scripts/SwiftLint.sh -------------------------------------------------------------------------------- /Scripts/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Scripts/bootstrap -------------------------------------------------------------------------------- /Scripts/package_content: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Scripts/package_content -------------------------------------------------------------------------------- /Scripts/pre-commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Scripts/pre-commit.sh -------------------------------------------------------------------------------- /Scripts/update-placeholders: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Scripts/update-placeholders -------------------------------------------------------------------------------- /Sourcery-Example/CodeGenerated/Basic.generated.swift: -------------------------------------------------------------------------------- 1 | // Found 2 Types 2 | // AppDelegate ViewController 3 | -------------------------------------------------------------------------------- /Sourcery-Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Sourcery-Example/Podfile -------------------------------------------------------------------------------- /Sourcery-Example/Sourcery-Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Sourcery-Example/Sourcery-Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Sourcery-Example/Sourcery-Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Sourcery-Example/Sourcery-Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Sourcery-Example/Sourcery-Example.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Sourcery-Example/Sourcery-Example.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Sourcery-Example/Sourcery-Example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Sourcery-Example/Sourcery-Example/AppDelegate.swift -------------------------------------------------------------------------------- /Sourcery-Example/Sourcery-Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Sourcery-Example/Sourcery-Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Sourcery-Example/Sourcery-Example/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Sourcery-Example/Sourcery-Example/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Sourcery-Example/Sourcery-Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Sourcery-Example/Sourcery-Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Sourcery-Example/Sourcery-Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Sourcery-Example/Sourcery-Example/Info.plist -------------------------------------------------------------------------------- /Sourcery-Example/Sourcery-Example/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Sourcery-Example/Sourcery-Example/ViewController.swift -------------------------------------------------------------------------------- /Sourcery-Example/Templates/Basic.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Sourcery-Example/Templates/Basic.stencil -------------------------------------------------------------------------------- /Sourcery.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Sourcery.podspec -------------------------------------------------------------------------------- /Sourcery/Configuration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Sourcery/Configuration.swift -------------------------------------------------------------------------------- /Sourcery/Generating/Templates/JavaScript/JavaScriptTemplate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Sourcery/Generating/Templates/JavaScript/JavaScriptTemplate.swift -------------------------------------------------------------------------------- /Sourcery/Generating/Templates/Stencil/StencilTemplate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Sourcery/Generating/Templates/Stencil/StencilTemplate.swift -------------------------------------------------------------------------------- /Sourcery/Generating/Templates/Swift/SwiftTemplate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Sourcery/Generating/Templates/Swift/SwiftTemplate.swift -------------------------------------------------------------------------------- /Sourcery/Sourcery.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Sourcery/Sourcery.swift -------------------------------------------------------------------------------- /Sourcery/Templates/Coding.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Sourcery/Templates/Coding.stencil -------------------------------------------------------------------------------- /Sourcery/Templates/Description.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Sourcery/Templates/Description.stencil -------------------------------------------------------------------------------- /Sourcery/Templates/Diffable.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Sourcery/Templates/Diffable.stencil -------------------------------------------------------------------------------- /Sourcery/Templates/Equality.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Sourcery/Templates/Equality.stencil -------------------------------------------------------------------------------- /Sourcery/Templates/JSExport.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Sourcery/Templates/JSExport.ejs -------------------------------------------------------------------------------- /Sourcery/Templates/Typed.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Sourcery/Templates/Typed.stencil -------------------------------------------------------------------------------- /Sourcery/Templates/TypedSpec.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Sourcery/Templates/TypedSpec.stencil -------------------------------------------------------------------------------- /Sourcery/Utils/ByteRangeConversion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Sourcery/Utils/ByteRangeConversion.swift -------------------------------------------------------------------------------- /Sourcery/Utils/BytesRange + Editing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Sourcery/Utils/BytesRange + Editing.swift -------------------------------------------------------------------------------- /Sourcery/Utils/DryOutputModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Sourcery/Utils/DryOutputModels.swift -------------------------------------------------------------------------------- /Sourcery/Utils/FolderWatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Sourcery/Utils/FolderWatcher.swift -------------------------------------------------------------------------------- /Sourcery/Utils/NSRange + Editing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Sourcery/Utils/NSRange + Editing.swift -------------------------------------------------------------------------------- /Sourcery/Utils/Xcode+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Sourcery/Utils/Xcode+Extensions.swift -------------------------------------------------------------------------------- /SourceryExecutable/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryExecutable/Info.plist -------------------------------------------------------------------------------- /SourceryExecutable/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryExecutable/main.swift -------------------------------------------------------------------------------- /SourceryFramework.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryFramework.podspec -------------------------------------------------------------------------------- /SourceryFramework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryFramework/Info.plist -------------------------------------------------------------------------------- /SourceryFramework/SourceryFramework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryFramework/SourceryFramework.h -------------------------------------------------------------------------------- /SourceryFramework/Sources/Generating/Generator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryFramework/Sources/Generating/Generator.swift -------------------------------------------------------------------------------- /SourceryFramework/Sources/Generating/SourceryTemplate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryFramework/Sources/Generating/SourceryTemplate.swift -------------------------------------------------------------------------------- /SourceryFramework/Sources/Generating/Template.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryFramework/Sources/Generating/Template.swift -------------------------------------------------------------------------------- /SourceryFramework/Sources/Parsing/FileParserType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryFramework/Sources/Parsing/FileParserType.swift -------------------------------------------------------------------------------- /SourceryFramework/Sources/Parsing/String+TypeInference.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryFramework/Sources/Parsing/String+TypeInference.swift -------------------------------------------------------------------------------- /SourceryFramework/Sources/Parsing/SwiftSyntax/AST/AccessLevel+SwiftSyntax.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryFramework/Sources/Parsing/SwiftSyntax/AST/AccessLevel+SwiftSyntax.swift -------------------------------------------------------------------------------- /SourceryFramework/Sources/Parsing/SwiftSyntax/AST/Actor+SwiftSyntax.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryFramework/Sources/Parsing/SwiftSyntax/AST/Actor+SwiftSyntax.swift -------------------------------------------------------------------------------- /SourceryFramework/Sources/Parsing/SwiftSyntax/AST/Attribute+SwiftSyntax.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryFramework/Sources/Parsing/SwiftSyntax/AST/Attribute+SwiftSyntax.swift -------------------------------------------------------------------------------- /SourceryFramework/Sources/Parsing/SwiftSyntax/AST/Class+SwiftSyntax.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryFramework/Sources/Parsing/SwiftSyntax/AST/Class+SwiftSyntax.swift -------------------------------------------------------------------------------- /SourceryFramework/Sources/Parsing/SwiftSyntax/AST/Enum+SwiftSyntax.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryFramework/Sources/Parsing/SwiftSyntax/AST/Enum+SwiftSyntax.swift -------------------------------------------------------------------------------- /SourceryFramework/Sources/Parsing/SwiftSyntax/AST/EnumCase+SwiftSyntax.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryFramework/Sources/Parsing/SwiftSyntax/AST/EnumCase+SwiftSyntax.swift -------------------------------------------------------------------------------- /SourceryFramework/Sources/Parsing/SwiftSyntax/AST/GenericParameter+SwiftSyntax.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryFramework/Sources/Parsing/SwiftSyntax/AST/GenericParameter+SwiftSyntax.swift -------------------------------------------------------------------------------- /SourceryFramework/Sources/Parsing/SwiftSyntax/AST/GenericRequirement+SwiftSyntax.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryFramework/Sources/Parsing/SwiftSyntax/AST/GenericRequirement+SwiftSyntax.swift -------------------------------------------------------------------------------- /SourceryFramework/Sources/Parsing/SwiftSyntax/AST/GenericType+SwiftSyntax.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryFramework/Sources/Parsing/SwiftSyntax/AST/GenericType+SwiftSyntax.swift -------------------------------------------------------------------------------- /SourceryFramework/Sources/Parsing/SwiftSyntax/AST/Method+SwiftSyntax.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryFramework/Sources/Parsing/SwiftSyntax/AST/Method+SwiftSyntax.swift -------------------------------------------------------------------------------- /SourceryFramework/Sources/Parsing/SwiftSyntax/AST/MethodParameter+SwiftSyntax.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryFramework/Sources/Parsing/SwiftSyntax/AST/MethodParameter+SwiftSyntax.swift -------------------------------------------------------------------------------- /SourceryFramework/Sources/Parsing/SwiftSyntax/AST/Modifier+SwiftSyntax.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryFramework/Sources/Parsing/SwiftSyntax/AST/Modifier+SwiftSyntax.swift -------------------------------------------------------------------------------- /SourceryFramework/Sources/Parsing/SwiftSyntax/AST/Protocol+SwiftSyntax.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryFramework/Sources/Parsing/SwiftSyntax/AST/Protocol+SwiftSyntax.swift -------------------------------------------------------------------------------- /SourceryFramework/Sources/Parsing/SwiftSyntax/AST/Signature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryFramework/Sources/Parsing/SwiftSyntax/AST/Signature.swift -------------------------------------------------------------------------------- /SourceryFramework/Sources/Parsing/SwiftSyntax/AST/Struct+SwiftSyntax.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryFramework/Sources/Parsing/SwiftSyntax/AST/Struct+SwiftSyntax.swift -------------------------------------------------------------------------------- /SourceryFramework/Sources/Parsing/SwiftSyntax/AST/Subscript+SwiftSyntax.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryFramework/Sources/Parsing/SwiftSyntax/AST/Subscript+SwiftSyntax.swift -------------------------------------------------------------------------------- /SourceryFramework/Sources/Parsing/SwiftSyntax/AST/Type+SwiftSyntax.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryFramework/Sources/Parsing/SwiftSyntax/AST/Type+SwiftSyntax.swift -------------------------------------------------------------------------------- /SourceryFramework/Sources/Parsing/SwiftSyntax/AST/TypeName+SwiftSyntax.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryFramework/Sources/Parsing/SwiftSyntax/AST/TypeName+SwiftSyntax.swift -------------------------------------------------------------------------------- /SourceryFramework/Sources/Parsing/SwiftSyntax/AST/Variable+SwiftSyntax.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryFramework/Sources/Parsing/SwiftSyntax/AST/Variable+SwiftSyntax.swift -------------------------------------------------------------------------------- /SourceryFramework/Sources/Parsing/SwiftSyntax/FileParserSyntax.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryFramework/Sources/Parsing/SwiftSyntax/FileParserSyntax.swift -------------------------------------------------------------------------------- /SourceryFramework/Sources/Parsing/SwiftSyntax/Syntax+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryFramework/Sources/Parsing/SwiftSyntax/Syntax+Extensions.swift -------------------------------------------------------------------------------- /SourceryFramework/Sources/Parsing/SwiftSyntax/SyntaxTreeCollector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryFramework/Sources/Parsing/SwiftSyntax/SyntaxTreeCollector.swift -------------------------------------------------------------------------------- /SourceryFramework/Sources/Parsing/Utils/AnnotationsParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryFramework/Sources/Parsing/Utils/AnnotationsParser.swift -------------------------------------------------------------------------------- /SourceryFramework/Sources/Parsing/Utils/Bridges.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryFramework/Sources/Parsing/Utils/Bridges.swift -------------------------------------------------------------------------------- /SourceryFramework/Sources/Parsing/Utils/InlineParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryFramework/Sources/Parsing/Utils/InlineParser.swift -------------------------------------------------------------------------------- /SourceryFramework/Sources/Parsing/Utils/StringView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryFramework/Sources/Parsing/Utils/StringView.swift -------------------------------------------------------------------------------- /SourceryFramework/Sources/Parsing/Utils/Verifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryFramework/Sources/Parsing/Utils/Verifier.swift -------------------------------------------------------------------------------- /SourceryJS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryJS/Info.plist -------------------------------------------------------------------------------- /SourceryJS/Resources/ejs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryJS/Resources/ejs.js -------------------------------------------------------------------------------- /SourceryJS/SourceryJS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryJS/SourceryJS.h -------------------------------------------------------------------------------- /SourceryJS/Sources/EJSTemplate+Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryJS/Sources/EJSTemplate+Tests.swift -------------------------------------------------------------------------------- /SourceryJS/Sources/EJSTemplate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryJS/Sources/EJSTemplate.swift -------------------------------------------------------------------------------- /SourceryRuntime.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime.podspec -------------------------------------------------------------------------------- /SourceryRuntime/Sources/Common/AST/AccessLevel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/Common/AST/AccessLevel.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/Common/AST/Actor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/Common/AST/Actor.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/Common/AST/Annotations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/Common/AST/Annotations.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/Common/AST/Attribute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/Common/AST/Attribute.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/Common/AST/Class.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/Common/AST/Class.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/Common/AST/Definition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/Common/AST/Definition.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/Common/AST/Documentation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/Common/AST/Documentation.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/Common/AST/Import.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/Common/AST/Import.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/Common/AST/Modifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/Common/AST/Modifier.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/Common/AST/PhantomProtocols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/Common/AST/PhantomProtocols.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/Common/AST/Protocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/Common/AST/Protocol.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/Common/AST/ProtocolComposition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/Common/AST/ProtocolComposition.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/Common/AST/Struct.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/Common/AST/Struct.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/Common/AST/TypeName/Array.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/Common/AST/TypeName/Array.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/Common/AST/TypeName/Dictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/Common/AST/TypeName/Dictionary.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/Common/AST/TypeName/Generic.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/Common/AST/TypeName/Generic.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/Common/AST/TypeName/Set.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/Common/AST/TypeName/Set.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/Common/AST/TypeName/Typed.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/Common/AST/TypeName/Typed.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/Common/AST/Typealias.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/Common/AST/Typealias.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/Common/Array+Parallel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/Common/Array+Parallel.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/Common/BytesRange.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/Common/BytesRange.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/Common/Composer/Composer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/Common/Composer/Composer.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/Common/Composer/ParserResultsComposed.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/Common/Composer/ParserResultsComposed.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/Common/Diffable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/Common/Diffable.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/Common/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/Common/Extensions.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/Common/FileParserResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/Common/FileParserResult.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/Common/Log.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/Common/Log.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/Common/TemplateContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/Common/TemplateContext.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/Generated/AutoHashable.generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/Generated/AutoHashable.generated.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/Generated/Coding.generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/Generated/Coding.generated.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/Generated/JSExport.generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/Generated/JSExport.generated.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/Generated/Typed.generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/Generated/Typed.generated.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/Linux/AST/AssociatedType_Linux.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/Linux/AST/AssociatedType_Linux.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/Linux/AST/AssociatedValue_Linux.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/Linux/AST/AssociatedValue_Linux.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/Linux/AST/ClosureParameter_Linux.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/Linux/AST/ClosureParameter_Linux.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/Linux/AST/EnumCase_Linux.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/Linux/AST/EnumCase_Linux.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/Linux/AST/Enum_Linux.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/Linux/AST/Enum_Linux.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/Linux/AST/GenericParameter_Linux.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/Linux/AST/GenericParameter_Linux.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/Linux/AST/GenericRequirement_Linux.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/Linux/AST/GenericRequirement_Linux.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/Linux/AST/MethodParameter_Linux.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/Linux/AST/MethodParameter_Linux.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/Linux/AST/Method_Linux.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/Linux/AST/Method_Linux.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/Linux/AST/Protocol_Linux.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/Linux/AST/Protocol_Linux.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/Linux/AST/Subscript_Linux.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/Linux/AST/Subscript_Linux.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/Linux/AST/TypeName/Closure_Linux.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/Linux/AST/TypeName/Closure_Linux.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/Linux/AST/TypeName/GenericTypeParameter_Linux.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/Linux/AST/TypeName/GenericTypeParameter_Linux.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/Linux/AST/TypeName/Tuple_Linux.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/Linux/AST/TypeName/Tuple_Linux.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/Linux/AST/TypeName/TypeName_Linux.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/Linux/AST/TypeName/TypeName_Linux.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/Linux/AST/Type_Linux.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/Linux/AST/Type_Linux.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/Linux/AST/Variable_Linux.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/Linux/AST/Variable_Linux.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/Linux/DynamicMemberLookup_Linux.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/Linux/DynamicMemberLookup_Linux.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/Linux/NSException_Linux.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/Linux/NSException_Linux.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/Linux/TypesCollection_Linux.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/Linux/TypesCollection_Linux.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/Linux/Types_Linux.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/Linux/Types_Linux.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/macOS/AST/AssociatedType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/macOS/AST/AssociatedType.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/macOS/AST/AssociatedValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/macOS/AST/AssociatedValue.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/macOS/AST/ClosureParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/macOS/AST/ClosureParameter.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/macOS/AST/Enum.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/macOS/AST/Enum.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/macOS/AST/EnumCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/macOS/AST/EnumCase.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/macOS/AST/GenericParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/macOS/AST/GenericParameter.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/macOS/AST/GenericRequirement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/macOS/AST/GenericRequirement.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/macOS/AST/Method.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/macOS/AST/Method.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/macOS/AST/MethodParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/macOS/AST/MethodParameter.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/macOS/AST/Subscript.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/macOS/AST/Subscript.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/macOS/AST/Type.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/macOS/AST/Type.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/macOS/AST/TypeName/Closure.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/macOS/AST/TypeName/Closure.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/macOS/AST/TypeName/GenericTypeParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/macOS/AST/TypeName/GenericTypeParameter.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/macOS/AST/TypeName/Tuple.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/macOS/AST/TypeName/Tuple.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/macOS/AST/TypeName/TypeName.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/macOS/AST/TypeName/TypeName.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/macOS/AST/Variable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/macOS/AST/Variable.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/macOS/Types.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/macOS/Types.swift -------------------------------------------------------------------------------- /SourceryRuntime/Sources/macOS/TypesCollection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Sources/macOS/TypesCollection.swift -------------------------------------------------------------------------------- /SourceryRuntime/Supporting Files/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Supporting Files/Info.plist -------------------------------------------------------------------------------- /SourceryRuntime/Supporting Files/SourceryRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryRuntime/Supporting Files/SourceryRuntime.h -------------------------------------------------------------------------------- /SourceryStencil/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryStencil/Info.plist -------------------------------------------------------------------------------- /SourceryStencil/SourceryStencil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryStencil/SourceryStencil.h -------------------------------------------------------------------------------- /SourceryStencil/Sources/NewLineNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryStencil/Sources/NewLineNode.swift -------------------------------------------------------------------------------- /SourceryStencil/Sources/StencilTemplate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryStencil/Sources/StencilTemplate.swift -------------------------------------------------------------------------------- /SourceryStencil/Sources/TypedNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryStencil/Sources/TypedNode.swift -------------------------------------------------------------------------------- /SourcerySwift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourcerySwift/Info.plist -------------------------------------------------------------------------------- /SourcerySwift/SourcerySwift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourcerySwift/SourcerySwift.h -------------------------------------------------------------------------------- /SourcerySwift/Sources/SourceryRuntime.content.generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourcerySwift/Sources/SourceryRuntime.content.generated.swift -------------------------------------------------------------------------------- /SourcerySwift/Sources/SourceryRuntime_Linux.content.generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourcerySwift/Sources/SourceryRuntime_Linux.content.generated.swift -------------------------------------------------------------------------------- /SourcerySwift/Sources/SwiftTemplate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourcerySwift/Sources/SwiftTemplate.swift -------------------------------------------------------------------------------- /SourceryTests/ConfigurationSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/ConfigurationSpec.swift -------------------------------------------------------------------------------- /SourceryTests/Generating/JavaScriptTemplateSpecs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Generating/JavaScriptTemplateSpecs.swift -------------------------------------------------------------------------------- /SourceryTests/Generating/StencilTemplateSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Generating/StencilTemplateSpec.swift -------------------------------------------------------------------------------- /SourceryTests/Generating/SwiftTemplateSpecs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Generating/SwiftTemplateSpecs.swift -------------------------------------------------------------------------------- /SourceryTests/GeneratorSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/GeneratorSpec.swift -------------------------------------------------------------------------------- /SourceryTests/Helpers/Builders.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Helpers/Builders.swift -------------------------------------------------------------------------------- /SourceryTests/Helpers/CustomMatchers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Helpers/CustomMatchers.swift -------------------------------------------------------------------------------- /SourceryTests/Helpers/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Helpers/Extensions.swift -------------------------------------------------------------------------------- /SourceryTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Info.plist -------------------------------------------------------------------------------- /SourceryTests/Models/ActorSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Models/ActorSpec.swift -------------------------------------------------------------------------------- /SourceryTests/Models/ArrayTypeSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Models/ArrayTypeSpec.swift -------------------------------------------------------------------------------- /SourceryTests/Models/ClassSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Models/ClassSpec.swift -------------------------------------------------------------------------------- /SourceryTests/Models/DiffableSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Models/DiffableSpec.swift -------------------------------------------------------------------------------- /SourceryTests/Models/EnumSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Models/EnumSpec.swift -------------------------------------------------------------------------------- /SourceryTests/Models/MethodSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Models/MethodSpec.swift -------------------------------------------------------------------------------- /SourceryTests/Models/ProtocolSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Models/ProtocolSpec.swift -------------------------------------------------------------------------------- /SourceryTests/Models/StructSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Models/StructSpec.swift -------------------------------------------------------------------------------- /SourceryTests/Models/TypeSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Models/TypeSpec.swift -------------------------------------------------------------------------------- /SourceryTests/Models/TypealiasSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Models/TypealiasSpec.swift -------------------------------------------------------------------------------- /SourceryTests/Models/TypedSpec.generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Models/TypedSpec.generated.swift -------------------------------------------------------------------------------- /SourceryTests/Models/VariableSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Models/VariableSpec.swift -------------------------------------------------------------------------------- /SourceryTests/Output/DryOutputSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Output/DryOutputSpec.swift -------------------------------------------------------------------------------- /SourceryTests/Parsing/ComposerSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Parsing/ComposerSpec.swift -------------------------------------------------------------------------------- /SourceryTests/Parsing/FileParserSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Parsing/FileParserSpec.swift -------------------------------------------------------------------------------- /SourceryTests/Parsing/FileParser_AssociatedTypeSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Parsing/FileParser_AssociatedTypeSpec.swift -------------------------------------------------------------------------------- /SourceryTests/Parsing/FileParser_AttributesModifierSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Parsing/FileParser_AttributesModifierSpec.swift -------------------------------------------------------------------------------- /SourceryTests/Parsing/FileParser_MethodsSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Parsing/FileParser_MethodsSpec.swift -------------------------------------------------------------------------------- /SourceryTests/Parsing/FileParser_ProtocolComposition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Parsing/FileParser_ProtocolComposition.swift -------------------------------------------------------------------------------- /SourceryTests/Parsing/FileParser_SubscriptsSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Parsing/FileParser_SubscriptsSpec.swift -------------------------------------------------------------------------------- /SourceryTests/Parsing/FileParser_TypeNameSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Parsing/FileParser_TypeNameSpec.swift -------------------------------------------------------------------------------- /SourceryTests/Parsing/FileParser_VariableSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Parsing/FileParser_VariableSpec.swift -------------------------------------------------------------------------------- /SourceryTests/Parsing/Helpers/AnnotationsParserSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Parsing/Helpers/AnnotationsParserSpec.swift -------------------------------------------------------------------------------- /SourceryTests/Parsing/Helpers/StringViewSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Parsing/Helpers/StringViewSpec.swift -------------------------------------------------------------------------------- /SourceryTests/Parsing/Helpers/TemplateAnnotationsParserSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Parsing/Helpers/TemplateAnnotationsParserSpec.swift -------------------------------------------------------------------------------- /SourceryTests/Parsing/Helpers/TemplatesAnnotationParser_ForceParseInlineCodeSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Parsing/Helpers/TemplatesAnnotationParser_ForceParseInlineCodeSpec.swift -------------------------------------------------------------------------------- /SourceryTests/Parsing/Helpers/VerifierSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Parsing/Helpers/VerifierSpec.swift -------------------------------------------------------------------------------- /SourceryTests/Sourcery+PerformanceSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Sourcery+PerformanceSpec.swift -------------------------------------------------------------------------------- /SourceryTests/SourcerySpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/SourcerySpec.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Configs/invalid.yml: -------------------------------------------------------------------------------- 1 | invalid configuration 2 | -------------------------------------------------------------------------------- /SourceryTests/Stub/Configs/multi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Configs/multi.yml -------------------------------------------------------------------------------- /SourceryTests/Stub/Configs/parent.yml: -------------------------------------------------------------------------------- 1 | configurations: 2 | - child: valid.yml 3 | -------------------------------------------------------------------------------- /SourceryTests/Stub/Configs/valid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Configs/valid.yml -------------------------------------------------------------------------------- /SourceryTests/Stub/DryRun-Code/Base.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/DryRun-Code/Base.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Errors/localized-error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Errors/localized-error.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/JavaScriptTemplates/AllTypealiases.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/JavaScriptTemplates/AllTypealiases.ejs -------------------------------------------------------------------------------- /SourceryTests/Stub/JavaScriptTemplates/Equality.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/JavaScriptTemplates/Equality.ejs -------------------------------------------------------------------------------- /SourceryTests/Stub/JavaScriptTemplates/Function.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/JavaScriptTemplates/Function.ejs -------------------------------------------------------------------------------- /SourceryTests/Stub/JavaScriptTemplates/Includes.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/JavaScriptTemplates/Includes.ejs -------------------------------------------------------------------------------- /SourceryTests/Stub/JavaScriptTemplates/Other.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/JavaScriptTemplates/Other.ejs -------------------------------------------------------------------------------- /SourceryTests/Stub/JavaScriptTemplates/ProtocolCompositions.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/JavaScriptTemplates/ProtocolCompositions.ejs -------------------------------------------------------------------------------- /SourceryTests/Stub/JavaScriptTemplates/SubfolderIncludes.ejs: -------------------------------------------------------------------------------- 1 | <%- include('lib/One') %><% -%> 2 | -------------------------------------------------------------------------------- /SourceryTests/Stub/JavaScriptTemplates/Typealiases.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/JavaScriptTemplates/Typealiases.ejs -------------------------------------------------------------------------------- /SourceryTests/Stub/JavaScriptTemplates/lib/One.ejs: -------------------------------------------------------------------------------- 1 | <%- include('Two') %><% -%> 2 | -------------------------------------------------------------------------------- /SourceryTests/Stub/JavaScriptTemplates/lib/Two.ejs: -------------------------------------------------------------------------------- 1 | <%- include('../Equality') %><% -%> 2 | -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Admin/AdminCardTestingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Admin/AdminCardTestingViewController.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Admin/AdminLogViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Admin/AdminLogViewController.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Admin/AdminPanelViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Admin/AdminPanelViewController.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Admin/AuctionWebViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Admin/AuctionWebViewController.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Admin/ChooseAuctionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Admin/ChooseAuctionViewController.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Admin/PasswordAlertViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Admin/PasswordAlertViewController.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/App/APIPingManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/App/APIPingManager.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/App/AppDelegate+GlobalActions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/App/AppDelegate+GlobalActions.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/App/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/App/AppDelegate.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/App/AppSetup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/App/AppSetup.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/App/AppViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/App/AppViewController.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/App/BidderDetailsRetrieval.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/App/BidderDetailsRetrieval.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/App/CardHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/App/CardHandler.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/App/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/App/Constants.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/App/GlobalFunctions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/App/GlobalFunctions.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/App/KioskDateFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/App/KioskDateFormatter.h -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/App/KioskDateFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/App/KioskDateFormatter.m -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/App/Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/App/Logger.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/App/MarkdownParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/App/MarkdownParser.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/App/Models/Artist.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/App/Models/Artist.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/App/Models/Artwork.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/App/Models/Artwork.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/App/Models/Bid.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/App/Models/Bid.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/App/Models/Bidder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/App/Models/Bidder.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/App/Models/BidderPosition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/App/Models/BidderPosition.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/App/Models/BuyersPremium.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/App/Models/BuyersPremium.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/App/Models/Card.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/App/Models/Card.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/App/Models/GenericError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/App/Models/GenericError.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/App/Models/Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/App/Models/Image.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/App/Models/JSONAble.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/App/Models/JSONAble.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/App/Models/Location.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/App/Models/Location.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/App/Models/Sale.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/App/Models/Sale.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/App/Models/SaleArtwork.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/App/Models/SaleArtwork.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/App/Models/SaleArtworkViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/App/Models/SaleArtworkViewModel.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/App/Models/SystemTime.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/App/Models/SystemTime.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/App/Models/User.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/App/Models/User.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/App/NSErrorExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/App/NSErrorExtensions.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/App/Networking/APIKeys.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/App/Networking/APIKeys.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/App/Networking/ArtsyAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/App/Networking/ArtsyAPI.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/App/Networking/NetworkLogger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/App/Networking/NetworkLogger.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/App/Networking/Networking.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/App/Networking/Networking.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/App/Networking/UserCredentials.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/App/Networking/UserCredentials.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/App/Networking/XAppToken.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/App/Networking/XAppToken.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/App/OfflineViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/App/OfflineViewController.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/App/STPCard+Validation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/App/STPCard+Validation.h -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/App/STPCard+Validation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/App/STPCard+Validation.m -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/App/StubResponses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/App/StubResponses.h -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/App/StubResponses.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/App/StubResponses.m -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/App/SwiftExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/App/SwiftExtensions.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/App/UIStoryboardSegueExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/App/UIStoryboardSegueExtensions.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/App/UIViewControllerExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/App/UIViewControllerExtensions.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/App/UIViewSubclassesErrorExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/App/UIViewSubclassesErrorExtensions.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/App/Views/Button Subclasses/Button.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/App/Views/Button Subclasses/Button.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/App/Views/RegisterFlowView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/App/Views/RegisterFlowView.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/App/Views/SimulatorOnlyView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/App/Views/SimulatorOnlyView.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/App/Views/Spinner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/App/Views/Spinner.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/App/Views/SwitchView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/App/Views/SwitchView.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/App/Views/Text Fields/CursorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/App/Views/Text Fields/CursorView.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/App/Views/Text Fields/TextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/App/Views/Text Fields/TextField.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Auction Listings/ListingsCountdownManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Auction Listings/ListingsCountdownManager.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Auction Listings/ListingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Auction Listings/ListingsViewController.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Auction Listings/ListingsViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Auction Listings/ListingsViewModel.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Auction Listings/MasonryCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Auction Listings/MasonryCollectionViewCell.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Auction Listings/TableCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Auction Listings/TableCollectionViewCell.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Auction Listings/WebViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Auction Listings/WebViewController.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/AdminCCBypassNetworkModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/AdminCCBypassNetworkModel.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/BidCheckingNetworkModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/BidCheckingNetworkModel.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/BidDetailsPreviewView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/BidDetailsPreviewView.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/BidderNetworkModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/BidderNetworkModel.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/ConfirmYourBidArtsyLoginViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/ConfirmYourBidArtsyLoginViewController.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/ConfirmYourBidEnterYourEmailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/ConfirmYourBidEnterYourEmailViewController.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/ConfirmYourBidPINViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/ConfirmYourBidPINViewController.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/ConfirmYourBidPasswordViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/ConfirmYourBidPasswordViewController.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/ConfirmYourBidViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/ConfirmYourBidViewController.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/FulfillmentContainerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/FulfillmentContainerViewController.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/FulfillmentNavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/FulfillmentNavigationController.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/GenericFormValidationViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/GenericFormValidationViewModel.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/KeypadContainerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/KeypadContainerView.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/KeypadView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/KeypadView.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/KeypadViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/KeypadViewModel.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/KeypadViewPreviewIB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/KeypadViewPreviewIB.png -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/LoadingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/LoadingViewController.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/LoadingViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/LoadingViewModel.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/ManualCreditCardInputViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/ManualCreditCardInputViewController.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/ManualCreditCardInputViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/ManualCreditCardInputViewModel.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/Models/BidDetails.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/Models/BidDetails.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/Models/NewUser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/Models/NewUser.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/Models/RegistrationCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/Models/RegistrationCoordinator.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/PlaceBidNetworkModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/PlaceBidNetworkModel.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/PlaceBidViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/PlaceBidViewController.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/RegisterViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/RegisterViewController.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/RegistrationEmailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/RegistrationEmailViewController.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/RegistrationMobileViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/RegistrationMobileViewController.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/RegistrationPasswordViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/RegistrationPasswordViewController.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/RegistrationPasswordViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/RegistrationPasswordViewModel.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/RegistrationPostalZipViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/RegistrationPostalZipViewController.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/StripeManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/StripeManager.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/SwipeCreditCardViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/SwipeCreditCardViewController.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/YourBiddingDetailsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/YourBiddingDetailsViewController.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/edit_button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/edit_button@2x.png -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/toolbar_close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/toolbar_close@2x.png -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Help/HelpAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Help/HelpAnimator.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Help/HelpViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Help/HelpViewController.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/HelperFunctions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/HelperFunctions.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/ListingsCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/ListingsCollectionViewCell.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Observable+JSONAble.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Observable+JSONAble.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Observable+Logging.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Observable+Logging.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Observable+Operators.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Observable+Operators.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Sale Artwork Details/ImageTiledDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Sale Artwork Details/ImageTiledDataSource.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Sale Artwork Details/SaleArtworkDetailsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Sale Artwork Details/SaleArtworkDetailsViewController.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Sale Artwork Details/SaleArtworkZoomViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Sale Artwork Details/SaleArtworkZoomViewController.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/Sale Artwork Details/WhitespaceGobbler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/Sale Artwork Details/WhitespaceGobbler.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/UIKit+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/UIKit+Rx.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/UILabel+Fonts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/UILabel+Fonts.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/UIView+LongPressDisplayMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/UIView+LongPressDisplayMessage.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/Kiosk/UIViewController+Bidding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/Kiosk/UIViewController+Bidding.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Performance-Code/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Performance-Code/LICENSE -------------------------------------------------------------------------------- /SourceryTests/Stub/Result/AllTypealiases.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Result/AllTypealiases.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Result/Basic+Other+SourceryTemplates.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Result/Basic+Other+SourceryTemplates.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Result/Basic+Other+SourceryTemplates_Linux.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Result/Basic+Other+SourceryTemplates_Linux.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Result/Basic+Other.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Result/Basic+Other.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Result/Basic.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Result/Basic.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Result/BasicFooExcluded.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Result/BasicFooExcluded.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Result/Function.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Result/Function.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Result/Other.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Result/Other.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Result/ProtocolCompositions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Result/ProtocolCompositions.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Result/Typealiases.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Result/Typealiases.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Source/Bar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Source/Bar.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Source/Foo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Source/Foo.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Source/FooBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Source/FooBar.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Source/TestProject/TestProject.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Source/TestProject/TestProject.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SourceryTests/Stub/Source/TestProject/TestProject.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Source/TestProject/TestProject.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SourceryTests/Stub/Source/TestProject/TestProject/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Source/TestProject/TestProject/Info.plist -------------------------------------------------------------------------------- /SourceryTests/Stub/Source_Linux/Bar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Source_Linux/Bar.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Source_Linux/Foo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Source_Linux/Foo.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Source_Linux/FooBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Source_Linux/FooBar.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/Source_Linux/TestProject/TestProject.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Source_Linux/TestProject/TestProject.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SourceryTests/Stub/Source_Linux/TestProject/TestProject.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Source_Linux/TestProject/TestProject.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SourceryTests/Stub/Source_Linux/TestProject/TestProject/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Source_Linux/TestProject/TestProject/Info.plist -------------------------------------------------------------------------------- /SourceryTests/Stub/Stubs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Stubs.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/SwiftTemplates/Equality.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/SwiftTemplates/Equality.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/SwiftTemplates/Equality.swifttemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/SwiftTemplates/Equality.swifttemplate -------------------------------------------------------------------------------- /SourceryTests/Stub/SwiftTemplates/Function.swifttemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/SwiftTemplates/Function.swifttemplate -------------------------------------------------------------------------------- /SourceryTests/Stub/SwiftTemplates/IncludeCycle.swifttemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/SwiftTemplates/IncludeCycle.swifttemplate -------------------------------------------------------------------------------- /SourceryTests/Stub/SwiftTemplates/IncludeFile.swifttemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/SwiftTemplates/IncludeFile.swifttemplate -------------------------------------------------------------------------------- /SourceryTests/Stub/SwiftTemplates/IncludeFileNoExtension.swifttemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/SwiftTemplates/IncludeFileNoExtension.swifttemplate -------------------------------------------------------------------------------- /SourceryTests/Stub/SwiftTemplates/Includes.swifttemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/SwiftTemplates/Includes.swifttemplate -------------------------------------------------------------------------------- /SourceryTests/Stub/SwiftTemplates/IncludesNoExtension.swifttemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/SwiftTemplates/IncludesNoExtension.swifttemplate -------------------------------------------------------------------------------- /SourceryTests/Stub/SwiftTemplates/Invalid.swifttemplate: -------------------------------------------------------------------------------- 1 | <%= %> 2 | -------------------------------------------------------------------------------- /SourceryTests/Stub/SwiftTemplates/InvalidTag.swifttemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/SwiftTemplates/InvalidTag.swifttemplate -------------------------------------------------------------------------------- /SourceryTests/Stub/SwiftTemplates/Other.swifttemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/SwiftTemplates/Other.swifttemplate -------------------------------------------------------------------------------- /SourceryTests/Stub/SwiftTemplates/Runtime.swifttemplate: -------------------------------------------------------------------------------- 1 | <%= types.implementing["Some"] %> 2 | -------------------------------------------------------------------------------- /SourceryTests/Stub/SwiftTemplates/SelfIncludeCycle.swifttemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/SwiftTemplates/SelfIncludeCycle.swifttemplate -------------------------------------------------------------------------------- /SourceryTests/Stub/SwiftTemplates/SubfolderFileIncludes.swifttemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/SwiftTemplates/SubfolderFileIncludes.swifttemplate -------------------------------------------------------------------------------- /SourceryTests/Stub/SwiftTemplates/SubfolderIncludes.swifttemplate: -------------------------------------------------------------------------------- 1 | <%- include("lib/One.swifttemplate") -%> 2 | -------------------------------------------------------------------------------- /SourceryTests/Stub/SwiftTemplates/Throws.swifttemplate: -------------------------------------------------------------------------------- 1 | <% fatalError("Template not implemented") %> 2 | -------------------------------------------------------------------------------- /SourceryTests/Stub/SwiftTemplates/includeCycle/One.swifttemplate: -------------------------------------------------------------------------------- 1 | <%- include("Two.swifttemplate") -%> 2 | -------------------------------------------------------------------------------- /SourceryTests/Stub/SwiftTemplates/includeCycle/Two.swifttemplate: -------------------------------------------------------------------------------- 1 | <%- include("One.swifttemplate") -%> 2 | -------------------------------------------------------------------------------- /SourceryTests/Stub/SwiftTemplates/lib/Equality.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/SwiftTemplates/lib/Equality.swift -------------------------------------------------------------------------------- /SourceryTests/Stub/SwiftTemplates/lib/One.swifttemplate: -------------------------------------------------------------------------------- 1 | <%- include("Two.swifttemplate") -%> 2 | -------------------------------------------------------------------------------- /SourceryTests/Stub/SwiftTemplates/lib/Two.swifttemplate: -------------------------------------------------------------------------------- 1 | <%- include("../Equality.swifttemplate") -%> 2 | -------------------------------------------------------------------------------- /SourceryTests/Stub/Templates/Basic.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Templates/Basic.stencil -------------------------------------------------------------------------------- /SourceryTests/Stub/Templates/GenerationWays.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Templates/GenerationWays.stencil -------------------------------------------------------------------------------- /SourceryTests/Stub/Templates/Include.stencil: -------------------------------------------------------------------------------- 1 | {% include "Partial.stencil" %} 2 | -------------------------------------------------------------------------------- /SourceryTests/Stub/Templates/Other.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Templates/Other.stencil -------------------------------------------------------------------------------- /SourceryTests/Stub/Templates/Partial.stencil: -------------------------------------------------------------------------------- 1 | partial template content 2 | -------------------------------------------------------------------------------- /SourceryTests/Stub/Templates/SourceryTemplateEJS.sourcerytemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Templates/SourceryTemplateEJS.sourcerytemplate -------------------------------------------------------------------------------- /SourceryTests/Stub/Templates/SourceryTemplateStencil.sourcerytemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryTests/Stub/Templates/SourceryTemplateStencil.sourcerytemplate -------------------------------------------------------------------------------- /SourceryUtils.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryUtils.podspec -------------------------------------------------------------------------------- /SourceryUtils/Sources/Path+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryUtils/Sources/Path+Extensions.swift -------------------------------------------------------------------------------- /SourceryUtils/Sources/Sha.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryUtils/Sources/Sha.swift -------------------------------------------------------------------------------- /SourceryUtils/Sources/Time.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryUtils/Sources/Time.swift -------------------------------------------------------------------------------- /SourceryUtils/Sources/Version.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryUtils/Sources/Version.swift -------------------------------------------------------------------------------- /SourceryUtils/Supporting Files/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryUtils/Supporting Files/Info.plist -------------------------------------------------------------------------------- /SourceryUtils/Supporting Files/SourceryUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/SourceryUtils/Supporting Files/SourceryUtils.h -------------------------------------------------------------------------------- /Templates/.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Templates/.swiftlint.yml -------------------------------------------------------------------------------- /Templates/CodableContext/CodableContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Templates/CodableContext/CodableContext.h -------------------------------------------------------------------------------- /Templates/CodableContext/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Templates/CodableContext/Info.plist -------------------------------------------------------------------------------- /Templates/CodableContextTests/CodableContextTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Templates/CodableContextTests/CodableContextTests.swift -------------------------------------------------------------------------------- /Templates/CodableContextTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Templates/CodableContextTests/Info.plist -------------------------------------------------------------------------------- /Templates/Templates.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Templates/Templates.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Templates/Templates.xcodeproj/xcshareddata/xcschemes/TemplatesTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Templates/Templates.xcodeproj/xcshareddata/xcschemes/TemplatesTests.xcscheme -------------------------------------------------------------------------------- /Templates/Templates/AutoCases.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Templates/Templates/AutoCases.stencil -------------------------------------------------------------------------------- /Templates/Templates/AutoCodable.swifttemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Templates/Templates/AutoCodable.swifttemplate -------------------------------------------------------------------------------- /Templates/Templates/AutoEquatable.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Templates/Templates/AutoEquatable.stencil -------------------------------------------------------------------------------- /Templates/Templates/AutoHashable.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Templates/Templates/AutoHashable.stencil -------------------------------------------------------------------------------- /Templates/Templates/AutoLenses.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Templates/Templates/AutoLenses.stencil -------------------------------------------------------------------------------- /Templates/Templates/AutoMockable.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Templates/Templates/AutoMockable.stencil -------------------------------------------------------------------------------- /Templates/Templates/Decorator.swifttemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Templates/Templates/Decorator.swifttemplate -------------------------------------------------------------------------------- /Templates/Templates/LinuxMain.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Templates/Templates/LinuxMain.stencil -------------------------------------------------------------------------------- /Templates/Tests/Context/AutoCases.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Templates/Tests/Context/AutoCases.swift -------------------------------------------------------------------------------- /Templates/Tests/Context/AutoCodable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Templates/Tests/Context/AutoCodable.swift -------------------------------------------------------------------------------- /Templates/Tests/Context/AutoEquatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Templates/Tests/Context/AutoEquatable.swift -------------------------------------------------------------------------------- /Templates/Tests/Context/AutoHashable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Templates/Tests/Context/AutoHashable.swift -------------------------------------------------------------------------------- /Templates/Tests/Context/AutoLenses.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Templates/Tests/Context/AutoLenses.swift -------------------------------------------------------------------------------- /Templates/Tests/Context/AutoMockable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Templates/Tests/Context/AutoMockable.swift -------------------------------------------------------------------------------- /Templates/Tests/Context/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Templates/Tests/Context/LinuxMain.swift -------------------------------------------------------------------------------- /Templates/Tests/Context_Linux/AutoCases.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Templates/Tests/Context_Linux/AutoCases.swift -------------------------------------------------------------------------------- /Templates/Tests/Context_Linux/AutoEquatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Templates/Tests/Context_Linux/AutoEquatable.swift -------------------------------------------------------------------------------- /Templates/Tests/Context_Linux/AutoHashable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Templates/Tests/Context_Linux/AutoHashable.swift -------------------------------------------------------------------------------- /Templates/Tests/Context_Linux/AutoLenses.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Templates/Tests/Context_Linux/AutoLenses.swift -------------------------------------------------------------------------------- /Templates/Tests/Context_Linux/AutoMockable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Templates/Tests/Context_Linux/AutoMockable.swift -------------------------------------------------------------------------------- /Templates/Tests/Context_Linux/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Templates/Tests/Context_Linux/LinuxMain.swift -------------------------------------------------------------------------------- /Templates/Tests/Expected/AutoCases.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Templates/Tests/Expected/AutoCases.expected -------------------------------------------------------------------------------- /Templates/Tests/Expected/AutoCodable.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Templates/Tests/Expected/AutoCodable.expected -------------------------------------------------------------------------------- /Templates/Tests/Expected/AutoEquatable.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Templates/Tests/Expected/AutoEquatable.expected -------------------------------------------------------------------------------- /Templates/Tests/Expected/AutoHashable.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Templates/Tests/Expected/AutoHashable.expected -------------------------------------------------------------------------------- /Templates/Tests/Expected/AutoLenses.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Templates/Tests/Expected/AutoLenses.expected -------------------------------------------------------------------------------- /Templates/Tests/Expected/AutoMockable.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Templates/Tests/Expected/AutoMockable.expected -------------------------------------------------------------------------------- /Templates/Tests/Expected/LinuxMain.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Templates/Tests/Expected/LinuxMain.expected -------------------------------------------------------------------------------- /Templates/Tests/Generated/AutoCases.generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Templates/Tests/Generated/AutoCases.generated.swift -------------------------------------------------------------------------------- /Templates/Tests/Generated/AutoCodable.generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Templates/Tests/Generated/AutoCodable.generated.swift -------------------------------------------------------------------------------- /Templates/Tests/Generated/AutoEquatable.generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Templates/Tests/Generated/AutoEquatable.generated.swift -------------------------------------------------------------------------------- /Templates/Tests/Generated/AutoHashable.generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Templates/Tests/Generated/AutoHashable.generated.swift -------------------------------------------------------------------------------- /Templates/Tests/Generated/AutoLenses.generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Templates/Tests/Generated/AutoLenses.generated.swift -------------------------------------------------------------------------------- /Templates/Tests/Generated/AutoMockable.generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Templates/Tests/Generated/AutoMockable.generated.swift -------------------------------------------------------------------------------- /Templates/Tests/Generated/LinuxMain.generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Templates/Tests/Generated/LinuxMain.generated.swift -------------------------------------------------------------------------------- /Templates/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Templates/Tests/Info.plist -------------------------------------------------------------------------------- /Templates/Tests/TemplatesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Templates/Tests/TemplatesTests.swift -------------------------------------------------------------------------------- /Templates/artifactbundle.info.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/Templates/artifactbundle.info.json.template -------------------------------------------------------------------------------- /Tests/SourceryLibTests: -------------------------------------------------------------------------------- 1 | ../SourceryTests -------------------------------------------------------------------------------- /TryCatch/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/TryCatch/Info.plist -------------------------------------------------------------------------------- /TryCatch/TryCatch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/TryCatch/TryCatch.m -------------------------------------------------------------------------------- /TryCatch/include/TryCatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/TryCatch/include/TryCatch.h -------------------------------------------------------------------------------- /docs/Classes/Actor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/Classes/Actor.html -------------------------------------------------------------------------------- /docs/Classes/ArrayType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/Classes/ArrayType.html -------------------------------------------------------------------------------- /docs/Classes/AssociatedType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/Classes/AssociatedType.html -------------------------------------------------------------------------------- /docs/Classes/AssociatedValue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/Classes/AssociatedValue.html -------------------------------------------------------------------------------- /docs/Classes/Attribute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/Classes/Attribute.html -------------------------------------------------------------------------------- /docs/Classes/Class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/Classes/Class.html -------------------------------------------------------------------------------- /docs/Classes/ClosureParameter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/Classes/ClosureParameter.html -------------------------------------------------------------------------------- /docs/Classes/ClosureType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/Classes/ClosureType.html -------------------------------------------------------------------------------- /docs/Classes/DictionaryType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/Classes/DictionaryType.html -------------------------------------------------------------------------------- /docs/Classes/DiffableResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/Classes/DiffableResult.html -------------------------------------------------------------------------------- /docs/Classes/Enum.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/Classes/Enum.html -------------------------------------------------------------------------------- /docs/Classes/EnumCase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/Classes/EnumCase.html -------------------------------------------------------------------------------- /docs/Classes/GenericParameter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/Classes/GenericParameter.html -------------------------------------------------------------------------------- /docs/Classes/GenericRequirement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/Classes/GenericRequirement.html -------------------------------------------------------------------------------- /docs/Classes/GenericRequirement/Relationship.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/Classes/GenericRequirement/Relationship.html -------------------------------------------------------------------------------- /docs/Classes/GenericType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/Classes/GenericType.html -------------------------------------------------------------------------------- /docs/Classes/GenericTypeParameter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/Classes/GenericTypeParameter.html -------------------------------------------------------------------------------- /docs/Classes/Import.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/Classes/Import.html -------------------------------------------------------------------------------- /docs/Classes/Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/Classes/Method.html -------------------------------------------------------------------------------- /docs/Classes/MethodParameter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/Classes/MethodParameter.html -------------------------------------------------------------------------------- /docs/Classes/Modifier.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/Classes/Modifier.html -------------------------------------------------------------------------------- /docs/Classes/Protocol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/Classes/Protocol.html -------------------------------------------------------------------------------- /docs/Classes/ProtocolComposition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/Classes/ProtocolComposition.html -------------------------------------------------------------------------------- /docs/Classes/SetType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/Classes/SetType.html -------------------------------------------------------------------------------- /docs/Classes/Struct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/Classes/Struct.html -------------------------------------------------------------------------------- /docs/Classes/Subscript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/Classes/Subscript.html -------------------------------------------------------------------------------- /docs/Classes/TupleElement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/Classes/TupleElement.html -------------------------------------------------------------------------------- /docs/Classes/TupleType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/Classes/TupleType.html -------------------------------------------------------------------------------- /docs/Classes/Type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/Classes/Type.html -------------------------------------------------------------------------------- /docs/Classes/TypeName.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/Classes/TypeName.html -------------------------------------------------------------------------------- /docs/Classes/Types.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/Classes/Types.html -------------------------------------------------------------------------------- /docs/Classes/Variable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/Classes/Variable.html -------------------------------------------------------------------------------- /docs/Enums/Composer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/Enums/Composer.html -------------------------------------------------------------------------------- /docs/Examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/Examples.html -------------------------------------------------------------------------------- /docs/Extensions/Array.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/Extensions/Array.html -------------------------------------------------------------------------------- /docs/Extensions/String.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/Extensions/String.html -------------------------------------------------------------------------------- /docs/Extensions/StringProtocol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/Extensions/StringProtocol.html -------------------------------------------------------------------------------- /docs/Extensions/Typealias.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/Extensions/Typealias.html -------------------------------------------------------------------------------- /docs/Guides.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/Guides.html -------------------------------------------------------------------------------- /docs/Other Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/Other Classes.html -------------------------------------------------------------------------------- /docs/Other Enums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/Other Enums.html -------------------------------------------------------------------------------- /docs/Other Extensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/Other Extensions.html -------------------------------------------------------------------------------- /docs/Other Protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/Other Protocols.html -------------------------------------------------------------------------------- /docs/Other Typealiases.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/Other Typealiases.html -------------------------------------------------------------------------------- /docs/Protocols/Annotated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/Protocols/Annotated.html -------------------------------------------------------------------------------- /docs/Protocols/Definition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/Protocols/Definition.html -------------------------------------------------------------------------------- /docs/Protocols/Diffable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/Protocols/Diffable.html -------------------------------------------------------------------------------- /docs/Protocols/Documented.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/Protocols/Documented.html -------------------------------------------------------------------------------- /docs/Protocols/Typed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/Protocols/Typed.html -------------------------------------------------------------------------------- /docs/Types.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/Types.html -------------------------------------------------------------------------------- /docs/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/badge.svg -------------------------------------------------------------------------------- /docs/codable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/codable.html -------------------------------------------------------------------------------- /docs/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/css/highlight.css -------------------------------------------------------------------------------- /docs/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/css/jazzy.css -------------------------------------------------------------------------------- /docs/decorator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/decorator.html -------------------------------------------------------------------------------- /docs/diffable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/diffable.html -------------------------------------------------------------------------------- /docs/enum-cases.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/enum-cases.html -------------------------------------------------------------------------------- /docs/equatable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/equatable.html -------------------------------------------------------------------------------- /docs/hashable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/hashable.html -------------------------------------------------------------------------------- /docs/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/img/carat.png -------------------------------------------------------------------------------- /docs/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/img/dash.png -------------------------------------------------------------------------------- /docs/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/img/gh.png -------------------------------------------------------------------------------- /docs/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/img/spinner.gif -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/installing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/installing.html -------------------------------------------------------------------------------- /docs/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/js/jazzy.js -------------------------------------------------------------------------------- /docs/js/jazzy.search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/js/jazzy.search.js -------------------------------------------------------------------------------- /docs/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/js/jquery.min.js -------------------------------------------------------------------------------- /docs/js/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/js/lunr.min.js -------------------------------------------------------------------------------- /docs/js/typeahead.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/js/typeahead.jquery.js -------------------------------------------------------------------------------- /docs/lenses.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/lenses.html -------------------------------------------------------------------------------- /docs/linuxmain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/linuxmain.html -------------------------------------------------------------------------------- /docs/mocks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/mocks.html -------------------------------------------------------------------------------- /docs/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/search.json -------------------------------------------------------------------------------- /docs/usage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/usage.html -------------------------------------------------------------------------------- /docs/writing-templates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/docs/writing-templates.html -------------------------------------------------------------------------------- /guides/Codable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/guides/Codable.md -------------------------------------------------------------------------------- /guides/Decorator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/guides/Decorator.md -------------------------------------------------------------------------------- /guides/Diffable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/guides/Diffable.md -------------------------------------------------------------------------------- /guides/Enum cases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/guides/Enum cases.md -------------------------------------------------------------------------------- /guides/Equatable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/guides/Equatable.md -------------------------------------------------------------------------------- /guides/Hashable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/guides/Hashable.md -------------------------------------------------------------------------------- /guides/Installing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/guides/Installing.md -------------------------------------------------------------------------------- /guides/Lenses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/guides/Lenses.md -------------------------------------------------------------------------------- /guides/LinuxMain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/guides/LinuxMain.md -------------------------------------------------------------------------------- /guides/Mocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/guides/Mocks.md -------------------------------------------------------------------------------- /guides/Usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/guides/Usage.md -------------------------------------------------------------------------------- /guides/Writing templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/Sourcery/HEAD/guides/Writing templates.md --------------------------------------------------------------------------------