xapp 0.2.0 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gitignore +2 -0
- data/README.md +7 -4
- data/lib/project-template.zip +0 -0
- data/xapp.gemspec +2 -2
- metadata +2 -3
- data/.DS_Store +0 -0
- data/lib/.DS_Store +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 742f27759f4b6d4697f7ab676bcd3b2131e7e8a4
|
|
4
|
+
data.tar.gz: c3fc2866540c29e3147a2f3043634fbf67f3e950
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 123d3df70a4f3dd15a7fe2a63500923d4853514834ae9cb42ad400a6c0510ca2a7af2b22e734dfa9176066203060e2c147480329d7396303f0709086a7a090bd
|
|
7
|
+
data.tar.gz: d920e6094d2ef036ecf520a8aea0a284be7f67bad034f067c8dcef5ce17aa6bc8fe9ce2b1ad150d189e02dfdb41cbe95fb468b6c1371dea2da5ee36f8d27a11f
|
data/.gitignore
ADDED
data/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# XApp
|
|
2
|
-
|
|
2
|
+
Quickly create scalable, production ready iOS projects built on solid foundations.
|
|
3
3
|
|
|
4
4
|
[](https://badge.fury.io/rb/xapp)
|
|
5
5
|
|
|
@@ -8,16 +8,19 @@ A tiny tool to help you quickly create iOS projects with strong foundations.
|
|
|
8
8
|
</p>
|
|
9
9
|
|
|
10
10
|
## What does XApp do?
|
|
11
|
-
XApp
|
|
11
|
+
XApp helps you quickly setup new Apps, preconfigured with the essentials:
|
|
12
12
|
|
|
13
13
|
Uses [CocoaPods](https://cocoapods.org) for dependency management, preconfigured with:
|
|
14
|
-
- [
|
|
14
|
+
- [Moya](https://github.com/Moya/Moya)/[ModelMapper](https://github.com/sunshinejr/Moya-ModelMapper) for networking and API response mapping
|
|
15
|
+
- [SwiftyBeaver](https://github.com/SwiftyBeaver/SwiftyBeaver) for logging
|
|
16
|
+
- [R.swift](https://github.com/mac-cain13/R.swift) for static-typed compile-time resources
|
|
17
|
+
- [RxSwift/RxCocoa](https://www.github.com/ReactiveX/RxSwift) for reactive programming and data-binding
|
|
15
18
|
- [Swinject](https://github.com/Swinject/Swinject) for dependency injection
|
|
16
19
|
- [SwiftLint](https://github.com/realm/SwiftLint) for linting
|
|
17
20
|
- [SwiftyBeaver](https://github.com/SwiftyBeaver/SwiftyBeaver) for logging
|
|
18
21
|
- [XRouter](https://github.com/reececomo/XRouter) for routing
|
|
19
22
|
|
|
20
|
-
As well as [Quick](https://github.com/Quick/Quick)/[Nimble](https://github.com/Quick/Nimble) for behavior-driven unit tests.
|
|
23
|
+
As well as [Quick](https://github.com/Quick/Quick)/[Nimble](https://github.com/Quick/Nimble) for your behavior-driven unit tests.
|
|
21
24
|
|
|
22
25
|
## Basic Usage
|
|
23
26
|
|
data/lib/project-template.zip
CHANGED
|
Binary file
|
data/xapp.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'xapp'
|
|
3
|
-
s.version = '0.
|
|
3
|
+
s.version = '0.3.0'
|
|
4
4
|
s.email = 'reece@hubr.io'
|
|
5
5
|
s.authors = ['Reece Como']
|
|
6
6
|
s.date = %q{2019-01-26}
|
|
@@ -10,4 +10,4 @@ Gem::Specification.new do |s|
|
|
|
10
10
|
s.executables << 'xapp'
|
|
11
11
|
|
|
12
12
|
s.require_paths = ["lib"]
|
|
13
|
-
end
|
|
13
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: xapp
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Reece Como
|
|
@@ -17,12 +17,11 @@ executables:
|
|
|
17
17
|
extensions: []
|
|
18
18
|
extra_rdoc_files: []
|
|
19
19
|
files:
|
|
20
|
-
- ".
|
|
20
|
+
- ".gitignore"
|
|
21
21
|
- LICENSE
|
|
22
22
|
- README.md
|
|
23
23
|
- XApp.jpg
|
|
24
24
|
- bin/xapp
|
|
25
|
-
- lib/.DS_Store
|
|
26
25
|
- lib/project-template.zip
|
|
27
26
|
- lib/xapp.rb
|
|
28
27
|
- xapp.gemspec
|
data/.DS_Store
DELETED
|
Binary file
|
data/lib/.DS_Store
DELETED
|
Binary file
|