├── .dockerignore ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── Book ├── .gitignore ├── README.md ├── Rakefile ├── SwiftMoment.md ├── generator.rb └── lib.rb ├── CONTRIBUTORS.md ├── Dockerfile ├── LICENSE ├── Package.swift ├── README.md ├── Resources └── install_swiftlint.sh ├── SwiftMoment.podspec ├── SwiftMoment.xcworkspace └── contents.xcworkspacedata ├── SwiftMoment ├── MyPlayground.playground │ ├── Contents.swift │ ├── Sources │ │ └── SupportCode.swift │ └── contents.xcplayground ├── SwiftMoment.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── SwiftMoment iOS.xcscheme │ │ ├── SwiftMoment macOS.xcscheme │ │ ├── SwiftMoment tvOS.xcscheme │ │ └── SwiftMoment watchOS.xcscheme ├── SwiftMoment │ ├── Duration.swift │ ├── Extensions.swift │ ├── Info.plist │ ├── LazyBox.swift │ ├── Moment.swift │ ├── MomentCache.swift │ ├── MomentFromNow.bundle │ │ ├── Root.plist │ │ ├── ar.lproj │ │ │ └── NSDateTimeAgo.strings │ │ ├── bg.lproj │ │ │ └── NSDateTimeAgo.strings │ │ ├── cs.lproj │ │ │ └── NSDateTimeAgo.strings │ │ ├── da.lproj │ │ │ └── NSDateTimeAgo.strings │ │ ├── de.lproj │ │ │ └── NSDateTimeAgo.strings │ │ ├── en.lproj │ │ │ └── NSDateTimeAgo.strings │ │ ├── en_US.lproj │ │ │ └── NSDateTimeAgo.strings │ │ ├── es.lproj │ │ │ └── NSDateTimeAgo.strings │ │ ├── fi.lproj │ │ │ └── NSDateTimeAgo.strings │ │ ├── fr.lproj │ │ │ └── NSDateTimeAgo.strings │ │ ├── gre.lproj │ │ │ └── NSDateTimeAgo.strings │ │ ├── he.lproj │ │ │ └── NSDateTimeAgo.strings │ │ ├── hu.lproj │ │ │ └── NSDateTimeAgo.strings │ │ ├── is.lproj │ │ │ └── NSDateTimeAgo.strings │ │ ├── it.lproj │ │ │ └── NSDateTimeAgo.strings │ │ ├── ja.lproj │ │ │ └── NSDateTimeAgo.strings │ │ ├── ko.lproj │ │ │ └── NSDateTimeAgo.strings │ │ ├── lv.lproj │ │ │ └── NSDateTimeAgo.strings │ │ ├── ms.lproj │ │ │ └── NSDateTimeAgo.strings │ │ ├── nb.lproj │ │ │ └── NSDateTimeAgo.strings │ │ ├── nl.lproj │ │ │ └── NSDateTimeAgo.strings │ │ ├── pl.lproj │ │ │ └── NSDateTimeAgo.strings │ │ ├── pt-PT.lproj │ │ │ └── NSDateTimeAgo.strings │ │ ├── pt.lproj │ │ │ └── NSDateTimeAgo.strings │ │ ├── ro.lproj │ │ │ └── NSDateTimeAgo.strings │ │ ├── ru.lproj │ │ │ └── NSDateTimeAgo.strings │ │ ├── sk.lproj │ │ │ └── NSDateTimeAgo.strings │ │ ├── sq.lproj │ │ │ └── NSDateTimeAgo.strings │ │ ├── sv.lproj │ │ │ └── NSDateTimeAgo.strings │ │ ├── th.lproj │ │ │ └── NSDateTimeAgo.strings │ │ ├── tr.lproj │ │ │ └── NSDateTimeAgo.strings │ │ ├── tr_TR.lproj │ │ │ └── NSDateTimeAgo.strings │ │ ├── uk.lproj │ │ │ └── NSDateTimeAgo.strings │ │ ├── vi.lproj │ │ │ └── NSDateTimeAgo.strings │ │ ├── zh-Hans.lproj │ │ │ └── NSDateTimeAgo.strings │ │ └── zh-Hant.lproj │ │ │ └── NSDateTimeAgo.strings │ ├── MomentFromNow.swift │ ├── Operators.swift │ ├── SwiftMoment.h │ └── TimeUnit.swift └── SwiftMomentTests │ ├── DurationTests.swift │ ├── ExtensionsTests.swift │ ├── FromNowTests.swift │ ├── Info.plist │ ├── LinuxMain.swift │ ├── MomentTests.swift │ └── XCTestManifests.swift └── fastlane └── Fastfile /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/.travis.yml -------------------------------------------------------------------------------- /Book/.gitignore: -------------------------------------------------------------------------------- 1 | SwiftMoment.playgroundbook 2 | -------------------------------------------------------------------------------- /Book/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/Book/README.md -------------------------------------------------------------------------------- /Book/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/Book/Rakefile -------------------------------------------------------------------------------- /Book/SwiftMoment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/Book/SwiftMoment.md -------------------------------------------------------------------------------- /Book/generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/Book/generator.rb -------------------------------------------------------------------------------- /Book/lib.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/Book/lib.rb -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/README.md -------------------------------------------------------------------------------- /Resources/install_swiftlint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/Resources/install_swiftlint.sh -------------------------------------------------------------------------------- /SwiftMoment.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment.podspec -------------------------------------------------------------------------------- /SwiftMoment.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SwiftMoment/MyPlayground.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/MyPlayground.playground/Contents.swift -------------------------------------------------------------------------------- /SwiftMoment/MyPlayground.playground/Sources/SupportCode.swift: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /SwiftMoment/MyPlayground.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/MyPlayground.playground/contents.xcplayground -------------------------------------------------------------------------------- /SwiftMoment/SwiftMoment.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMoment.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SwiftMoment/SwiftMoment.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMoment.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SwiftMoment/SwiftMoment.xcodeproj/xcshareddata/xcschemes/SwiftMoment iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMoment.xcodeproj/xcshareddata/xcschemes/SwiftMoment iOS.xcscheme -------------------------------------------------------------------------------- /SwiftMoment/SwiftMoment.xcodeproj/xcshareddata/xcschemes/SwiftMoment macOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMoment.xcodeproj/xcshareddata/xcschemes/SwiftMoment macOS.xcscheme -------------------------------------------------------------------------------- /SwiftMoment/SwiftMoment.xcodeproj/xcshareddata/xcschemes/SwiftMoment tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMoment.xcodeproj/xcshareddata/xcschemes/SwiftMoment tvOS.xcscheme -------------------------------------------------------------------------------- /SwiftMoment/SwiftMoment.xcodeproj/xcshareddata/xcschemes/SwiftMoment watchOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMoment.xcodeproj/xcshareddata/xcschemes/SwiftMoment watchOS.xcscheme -------------------------------------------------------------------------------- /SwiftMoment/SwiftMoment/Duration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMoment/Duration.swift -------------------------------------------------------------------------------- /SwiftMoment/SwiftMoment/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMoment/Extensions.swift -------------------------------------------------------------------------------- /SwiftMoment/SwiftMoment/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMoment/Info.plist -------------------------------------------------------------------------------- /SwiftMoment/SwiftMoment/LazyBox.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMoment/LazyBox.swift -------------------------------------------------------------------------------- /SwiftMoment/SwiftMoment/Moment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMoment/Moment.swift -------------------------------------------------------------------------------- /SwiftMoment/SwiftMoment/MomentCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMoment/MomentCache.swift -------------------------------------------------------------------------------- /SwiftMoment/SwiftMoment/MomentFromNow.bundle/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMoment/MomentFromNow.bundle/Root.plist -------------------------------------------------------------------------------- /SwiftMoment/SwiftMoment/MomentFromNow.bundle/ar.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMoment/MomentFromNow.bundle/ar.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /SwiftMoment/SwiftMoment/MomentFromNow.bundle/bg.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMoment/MomentFromNow.bundle/bg.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /SwiftMoment/SwiftMoment/MomentFromNow.bundle/cs.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMoment/MomentFromNow.bundle/cs.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /SwiftMoment/SwiftMoment/MomentFromNow.bundle/da.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMoment/MomentFromNow.bundle/da.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /SwiftMoment/SwiftMoment/MomentFromNow.bundle/de.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMoment/MomentFromNow.bundle/de.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /SwiftMoment/SwiftMoment/MomentFromNow.bundle/en.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMoment/MomentFromNow.bundle/en.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /SwiftMoment/SwiftMoment/MomentFromNow.bundle/en_US.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMoment/MomentFromNow.bundle/en_US.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /SwiftMoment/SwiftMoment/MomentFromNow.bundle/es.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMoment/MomentFromNow.bundle/es.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /SwiftMoment/SwiftMoment/MomentFromNow.bundle/fi.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMoment/MomentFromNow.bundle/fi.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /SwiftMoment/SwiftMoment/MomentFromNow.bundle/fr.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMoment/MomentFromNow.bundle/fr.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /SwiftMoment/SwiftMoment/MomentFromNow.bundle/gre.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMoment/MomentFromNow.bundle/gre.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /SwiftMoment/SwiftMoment/MomentFromNow.bundle/he.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMoment/MomentFromNow.bundle/he.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /SwiftMoment/SwiftMoment/MomentFromNow.bundle/hu.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMoment/MomentFromNow.bundle/hu.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /SwiftMoment/SwiftMoment/MomentFromNow.bundle/is.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMoment/MomentFromNow.bundle/is.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /SwiftMoment/SwiftMoment/MomentFromNow.bundle/it.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMoment/MomentFromNow.bundle/it.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /SwiftMoment/SwiftMoment/MomentFromNow.bundle/ja.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMoment/MomentFromNow.bundle/ja.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /SwiftMoment/SwiftMoment/MomentFromNow.bundle/ko.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMoment/MomentFromNow.bundle/ko.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /SwiftMoment/SwiftMoment/MomentFromNow.bundle/lv.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMoment/MomentFromNow.bundle/lv.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /SwiftMoment/SwiftMoment/MomentFromNow.bundle/ms.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMoment/MomentFromNow.bundle/ms.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /SwiftMoment/SwiftMoment/MomentFromNow.bundle/nb.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMoment/MomentFromNow.bundle/nb.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /SwiftMoment/SwiftMoment/MomentFromNow.bundle/nl.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMoment/MomentFromNow.bundle/nl.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /SwiftMoment/SwiftMoment/MomentFromNow.bundle/pl.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMoment/MomentFromNow.bundle/pl.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /SwiftMoment/SwiftMoment/MomentFromNow.bundle/pt-PT.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMoment/MomentFromNow.bundle/pt-PT.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /SwiftMoment/SwiftMoment/MomentFromNow.bundle/pt.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMoment/MomentFromNow.bundle/pt.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /SwiftMoment/SwiftMoment/MomentFromNow.bundle/ro.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMoment/MomentFromNow.bundle/ro.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /SwiftMoment/SwiftMoment/MomentFromNow.bundle/ru.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMoment/MomentFromNow.bundle/ru.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /SwiftMoment/SwiftMoment/MomentFromNow.bundle/sk.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMoment/MomentFromNow.bundle/sk.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /SwiftMoment/SwiftMoment/MomentFromNow.bundle/sq.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMoment/MomentFromNow.bundle/sq.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /SwiftMoment/SwiftMoment/MomentFromNow.bundle/sv.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMoment/MomentFromNow.bundle/sv.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /SwiftMoment/SwiftMoment/MomentFromNow.bundle/th.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMoment/MomentFromNow.bundle/th.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /SwiftMoment/SwiftMoment/MomentFromNow.bundle/tr.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMoment/MomentFromNow.bundle/tr.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /SwiftMoment/SwiftMoment/MomentFromNow.bundle/tr_TR.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMoment/MomentFromNow.bundle/tr_TR.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /SwiftMoment/SwiftMoment/MomentFromNow.bundle/uk.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMoment/MomentFromNow.bundle/uk.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /SwiftMoment/SwiftMoment/MomentFromNow.bundle/vi.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMoment/MomentFromNow.bundle/vi.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /SwiftMoment/SwiftMoment/MomentFromNow.bundle/zh-Hans.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMoment/MomentFromNow.bundle/zh-Hans.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /SwiftMoment/SwiftMoment/MomentFromNow.bundle/zh-Hant.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMoment/MomentFromNow.bundle/zh-Hant.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /SwiftMoment/SwiftMoment/MomentFromNow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMoment/MomentFromNow.swift -------------------------------------------------------------------------------- /SwiftMoment/SwiftMoment/Operators.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMoment/Operators.swift -------------------------------------------------------------------------------- /SwiftMoment/SwiftMoment/SwiftMoment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMoment/SwiftMoment.h -------------------------------------------------------------------------------- /SwiftMoment/SwiftMoment/TimeUnit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMoment/TimeUnit.swift -------------------------------------------------------------------------------- /SwiftMoment/SwiftMomentTests/DurationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMomentTests/DurationTests.swift -------------------------------------------------------------------------------- /SwiftMoment/SwiftMomentTests/ExtensionsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMomentTests/ExtensionsTests.swift -------------------------------------------------------------------------------- /SwiftMoment/SwiftMomentTests/FromNowTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMomentTests/FromNowTests.swift -------------------------------------------------------------------------------- /SwiftMoment/SwiftMomentTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMomentTests/Info.plist -------------------------------------------------------------------------------- /SwiftMoment/SwiftMomentTests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMomentTests/LinuxMain.swift -------------------------------------------------------------------------------- /SwiftMoment/SwiftMomentTests/MomentTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMomentTests/MomentTests.swift -------------------------------------------------------------------------------- /SwiftMoment/SwiftMomentTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/SwiftMoment/SwiftMomentTests/XCTestManifests.swift -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/SwiftMoment/HEAD/fastlane/Fastfile --------------------------------------------------------------------------------