xapp 0.1.3 → 0.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ce57680a33be9736c4057e6259ff47203ff1ae1d
4
- data.tar.gz: 18b4593f215c866275391f7091b573e4bd289314
3
+ metadata.gz: f45d61f3e22f7d28a96c46d8002e373529318445
4
+ data.tar.gz: 64116d75ff2da48b07851ae5c7906f6cc2bd05fd
5
5
  SHA512:
6
- metadata.gz: 5432c72427ad3ac6e64ab36c22f37af7c0b206268b702410e04583edad5b9d8124211572737c99903a6395c664a590e28c835cbca9849512bab8fce9291720e8
7
- data.tar.gz: f83a812a299321efdf28846a88aee3e9aee5894f00bcf40e9ef1f74681748e43a066cd375e2e377d23c311f5633f6ce12e888bc2d244eaddffa4ca47966a6451
6
+ metadata.gz: 568e5e648e85a7864bb6fd3a7b3fc8349a49266143d9762d7b8029428c5081a483a86f84518758e9c234cc0564253d958968c8c795810876d6120b4c802c4671
7
+ data.tar.gz: 855e8fab4cd4012e1fab5dec697462428de8445594c0fe9bcc8307010fe3083549487bd98eba0470f2d3a349e30877bd9a04b5bda25ad2cde4162d9d410b5a41
data/.DS_Store ADDED
Binary file
data/LICENSE ADDED
@@ -0,0 +1,19 @@
1
+ Copyright (c) 2019 Reece Como <reece.como@gmail.com>
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy
4
+ of this software and associated documentation files (the "Software"), to deal
5
+ in the Software without restriction, including without limitation the rights
6
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
+ copies of the Software, and to permit persons to whom the Software is
8
+ furnished to do so, subject to the following conditions:
9
+
10
+ The above copyright notice and this permission notice shall be included in
11
+ all copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,33 @@
1
+ # XApp
2
+ A tiny tool to help you quickly create iOS projects with strong foundations.
3
+
4
+ [![Gem Version](https://badge.fury.io/rb/xapp.svg)](https://badge.fury.io/rb/xapp)
5
+
6
+ <p align="center">
7
+ <img src="https://raw.githubusercontent.com/reececomo/XApp/master/XApp.jpg" alt="XApp" width="300" style="max-width:300px;width:auto;height:auto;"/>
8
+ </p>
9
+
10
+ ## What does XApp do?
11
+ XApp initialises a new base iOS project with the essential tools for building a great app.
12
+
13
+ Uses [CocoaPods](https://cocoapods.org) for dependency management, preconfigured with:
14
+ - [R.swift](https://github.com/mac-cain13/R.swift) for strong-typed resources
15
+ - [Swinject](https://github.com/Swinject/Swinject) for dependency injection
16
+ - [SwiftLint](https://github.com/realm/SwiftLint) for linting
17
+ - [SwiftyBeaver](https://github.com/SwiftyBeaver/SwiftyBeaver) for logging
18
+ - [XRouter](https://github.com/reececomo/XRouter) for routing
19
+
20
+ As well as [Quick](https://github.com/Quick/Quick)/[Nimble](https://github.com/Quick/Nimble) for behavior-driven unit tests.
21
+
22
+ ## Basic Usage
23
+
24
+ ```bash
25
+ # Install XApp
26
+ [sudo] gem install xapp
27
+
28
+ # Initialise a new iOS project
29
+ xapp init MyCoolApp
30
+ ```
31
+
32
+ ## Compatibility
33
+ XApp is compatible with all modern MVC and MVVM frameworks, including [RxSwift](https://github.com/ReactiveX/RxSwift).
data/XApp.jpg ADDED
Binary file
data/lib/.DS_Store ADDED
Binary file
Binary file
data/lib/xapp.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  class XApp
2
2
 
3
- VERSION = '0.1.3'
3
+ VERSION = '0.2.0'
4
4
 
5
5
  def self.init_template(name)
6
6
  puts "\n\s\sInit new project..."
data/xapp.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'xapp'
3
- s.version = '0.1.3'
3
+ s.version = '0.2.0'
4
4
  s.email = 'reece@hubr.io'
5
5
  s.authors = ['Reece Como']
6
6
  s.date = %q{2019-01-26}
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.1.3
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Reece Como
@@ -17,8 +17,12 @@ executables:
17
17
  extensions: []
18
18
  extra_rdoc_files: []
19
19
  files:
20
- - README.MD
20
+ - ".DS_Store"
21
+ - LICENSE
22
+ - README.md
23
+ - XApp.jpg
21
24
  - bin/xapp
25
+ - lib/.DS_Store
22
26
  - lib/project-template.zip
23
27
  - lib/xapp.rb
24
28
  - xapp.gemspec
data/README.MD DELETED
@@ -1 +0,0 @@
1
- # Router-Coordinator-Model-Observer Project Template