swift-boiler 1.0.7 → 1.0.8
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/README.md +5 -3
- data/lib/swift/boiler/version.rb +1 -1
- metadata +6 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a7180d5763e7275a6f7f8108de12bf7ff1b4bab5
|
4
|
+
data.tar.gz: 1eae7fb8edcca109dd6b2df2eac67ab220605130
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d9d147f5d40bfe831292eb89b2c3081f1757bd9760b921901e33a2b8de72763710291bd093f5ecd516a8380bb1292c0cccbec7bdcbe2f02b44a6ac29fedc054b
|
7
|
+
data.tar.gz: 73de7a41cfffa6e09c32092d69d68368e51390ce884971f32f3dc005bb5dbbad614c4b53f6fabc1e3961ebc476aa00ca7a807665b6034070a57c7aa79007e07f
|
data/README.md
CHANGED
@@ -7,8 +7,7 @@ Swift-Boiler is a tool developed for iOS developers to speed up the process of i
|
|
7
7
|
### Install Swift-Boiler via [Homebrew](http://brew.sh):
|
8
8
|
|
9
9
|
```sh
|
10
|
-
$
|
11
|
-
$ brew install swift-boiler
|
10
|
+
$ gem install swift-boiler
|
12
11
|
```
|
13
12
|
|
14
13
|
<!-- ### Install it with [Homebrew](http://brew.sh):
|
@@ -22,18 +21,21 @@ $ gem install swift-boiler
|
|
22
21
|
Swift-Boiler has only one swift-boil binary, and the command follow this specific syntax:
|
23
22
|
<summary>swi
|
24
23
|
ft-boil \<option\></summary>
|
24
|
+
|
25
25
|
```sh
|
26
26
|
$ swift-boil --help
|
27
27
|
```
|
28
28
|
|
29
29
|
<summary>swift-boil \<option\> \<template_path\> \<class_name\> \<options\> \<properties\></summary>
|
30
|
+
|
30
31
|
```sh
|
31
32
|
$ swift-boil -t /Desktop/mytemplate.mustache MyView toplabel:UILabel bottomlabel:UILabel
|
32
33
|
$ swift-boil -t /Desktop/mytemplate.mustache MyView -d toplabel:UILabel bottomlabel:UILabel
|
33
34
|
```
|
34
35
|
|
35
36
|
<summary>swift-boil \<command\> \<class_name\> \<options\> \<properties\></summary>
|
36
|
-
|
37
|
+
|
38
|
+
``sh
|
37
39
|
$ swift-boil v MyView mainlabel:UILabel firstView:UIView secondView:CustomView
|
38
40
|
$ swift-boil view MyView -d mainlabel:UILabel firstView:UIView secondView:CustomView
|
39
41
|
```
|
data/lib/swift/boiler/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: swift-boiler
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Pedro Peres
|
@@ -66,7 +66,11 @@ dependencies:
|
|
66
66
|
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: 1.0.3
|
69
|
-
description:
|
69
|
+
description: Swift-Boiler is a tool developed for iOS developers to speed up the process
|
70
|
+
of implementing views, models, controllers, and many other common patterns found
|
71
|
+
in an iOS project. Inspired by the swift syntax and the simplicity of the Rails
|
72
|
+
generate tool, Swift-Boiler is a simple to use boiler plate code generator that
|
73
|
+
will get you up running in no time.
|
70
74
|
email:
|
71
75
|
- pedro.peres@weightwatchers.com
|
72
76
|
executables:
|