├── .gitignore ├── Cartfile ├── Cartfile.resolved ├── LICENSE ├── README.md ├── RxCoreNFC.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── xcshareddata │ └── xcschemes │ │ └── RxCoreNFC.xcscheme └── xcuserdata │ └── maxim.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── RxCoreNFC ├── Info.plist ├── NFCNDEFReaderSession+Rx.swift └── RxCoreNFC.h └── RxCoreNFCTests ├── Info.plist └── RxCoreNFCTests.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreNFC/HEAD/.gitignore -------------------------------------------------------------------------------- /Cartfile: -------------------------------------------------------------------------------- 1 | github "ReactiveX/RxSwift" ~> 3.6.1 2 | -------------------------------------------------------------------------------- /Cartfile.resolved: -------------------------------------------------------------------------------- 1 | github "ReactiveX/RxSwift" "3.6.1" 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreNFC/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreNFC/HEAD/README.md -------------------------------------------------------------------------------- /RxCoreNFC.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreNFC/HEAD/RxCoreNFC.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /RxCoreNFC.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreNFC/HEAD/RxCoreNFC.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /RxCoreNFC.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreNFC/HEAD/RxCoreNFC.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /RxCoreNFC.xcodeproj/xcshareddata/xcschemes/RxCoreNFC.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreNFC/HEAD/RxCoreNFC.xcodeproj/xcshareddata/xcschemes/RxCoreNFC.xcscheme -------------------------------------------------------------------------------- /RxCoreNFC.xcodeproj/xcuserdata/maxim.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreNFC/HEAD/RxCoreNFC.xcodeproj/xcuserdata/maxim.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /RxCoreNFC/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreNFC/HEAD/RxCoreNFC/Info.plist -------------------------------------------------------------------------------- /RxCoreNFC/NFCNDEFReaderSession+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreNFC/HEAD/RxCoreNFC/NFCNDEFReaderSession+Rx.swift -------------------------------------------------------------------------------- /RxCoreNFC/RxCoreNFC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreNFC/HEAD/RxCoreNFC/RxCoreNFC.h -------------------------------------------------------------------------------- /RxCoreNFCTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreNFC/HEAD/RxCoreNFCTests/Info.plist -------------------------------------------------------------------------------- /RxCoreNFCTests/RxCoreNFCTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreNFC/HEAD/RxCoreNFCTests/RxCoreNFCTests.swift --------------------------------------------------------------------------------