Skip to content

Commit 2f5f77a

Browse files
authored
Merge pull request #95 from SwiftGen/feature/stencil-0.12
Stencil 0.12
2 parents 7c039b8 + 99452a9 commit 2f5f77a

40 files changed

+1316
-795
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@
2727
pair.
2828
[David Jennes](https://github.com/djbe)
2929
[#247](https://github.com/AliSoftware/SwiftGen/pull/247)
30+
* Updated Stencil to the latest version (0.12.0).
31+
[David Jennes](https://github.com/djbe)
32+
[#95](https://github.com/SwiftGen/StencilSwiftKit/pull/95)
3033

3134
### Internal Changes
3235

Gemfile

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,19 @@
22

33
source 'https://rubygems.org'
44

5-
gem 'cocoapods', '~> 1.5'
6-
gem 'octokit', '~> 4.7'
7-
gem 'rake', '~> 10.4'
8-
gem 'rubocop', '~> 0.51'
9-
gem 'xcpretty'
5+
# The bare minimum for building, e.g. in Homebrew
6+
group :build do
7+
gem 'rake', '~> 12.3'
8+
gem 'xcpretty'
9+
end
10+
11+
# In addition to :build, for contributing
12+
group :development do
13+
gem 'cocoapods', '~> 1.5'
14+
gem 'rubocop', '~> 0.58'
15+
end
16+
17+
# For releasing to GitHub
18+
group :release do
19+
gem 'octokit', '~> 4.9'
20+
end

Gemfile.lock

Lines changed: 28 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ GEM
1010
addressable (2.5.2)
1111
public_suffix (>= 2.0.2, < 4.0)
1212
ast (2.4.0)
13-
atomos (0.1.2)
13+
atomos (0.1.3)
1414
claide (1.0.2)
15-
cocoapods (1.5.0)
15+
cocoapods (1.5.3)
1616
activesupport (>= 4.0.2, < 5)
1717
claide (>= 1.0.2, < 2.0)
18-
cocoapods-core (= 1.5.0)
18+
cocoapods-core (= 1.5.3)
1919
cocoapods-deintegrate (>= 1.0.2, < 2.0)
2020
cocoapods-downloader (>= 1.2.0, < 2.0)
2121
cocoapods-plugins (>= 1.0.0, < 2.0)
@@ -31,79 +31,81 @@ GEM
3131
nap (~> 1.0)
3232
ruby-macho (~> 1.1)
3333
xcodeproj (>= 1.5.7, < 2.0)
34-
cocoapods-core (1.5.0)
34+
cocoapods-core (1.5.3)
3535
activesupport (>= 4.0.2, < 6)
3636
fuzzy_match (~> 2.0.4)
3737
nap (~> 1.0)
3838
cocoapods-deintegrate (1.0.2)
39-
cocoapods-downloader (1.2.0)
39+
cocoapods-downloader (1.2.1)
4040
cocoapods-plugins (1.0.0)
4141
nap
4242
cocoapods-search (1.0.0)
4343
cocoapods-stats (1.0.0)
44-
cocoapods-trunk (1.3.0)
44+
cocoapods-trunk (1.3.1)
4545
nap (>= 0.8, < 2.0)
4646
netrc (~> 0.11)
4747
cocoapods-try (1.1.0)
4848
colored2 (3.1.2)
4949
concurrent-ruby (1.0.5)
5050
escape (0.0.4)
51-
faraday (0.15.0)
51+
faraday (0.15.2)
5252
multipart-post (>= 1.2, < 3)
5353
fourflusher (2.0.1)
5454
fuzzy_match (2.0.4)
5555
gh_inspector (1.1.3)
5656
i18n (0.9.5)
5757
concurrent-ruby (~> 1.0)
58+
jaro_winkler (1.5.1)
5859
minitest (5.11.3)
59-
molinillo (0.6.5)
60+
molinillo (0.6.6)
6061
multipart-post (2.0.0)
61-
nanaimo (0.2.5)
62+
nanaimo (0.2.6)
6263
nap (1.1.0)
6364
netrc (0.11.0)
64-
octokit (4.8.0)
65+
octokit (4.10.0)
6566
sawyer (~> 0.8.0, >= 0.5.3)
6667
parallel (1.12.1)
67-
parser (2.5.1.0)
68+
parser (2.5.1.2)
6869
ast (~> 2.4.0)
69-
powerpack (0.1.1)
70-
public_suffix (3.0.2)
70+
powerpack (0.1.2)
71+
public_suffix (3.0.3)
7172
rainbow (3.0.0)
72-
rake (10.5.0)
73+
rake (12.3.1)
7374
rouge (2.0.7)
74-
rubocop (0.55.0)
75+
rubocop (0.58.2)
76+
jaro_winkler (~> 1.5.1)
7577
parallel (~> 1.10)
76-
parser (>= 2.5)
78+
parser (>= 2.5, != 2.5.1.1)
7779
powerpack (~> 0.1)
7880
rainbow (>= 2.2.2, < 4.0)
7981
ruby-progressbar (~> 1.7)
8082
unicode-display_width (~> 1.0, >= 1.0.1)
81-
ruby-macho (1.1.0)
82-
ruby-progressbar (1.9.0)
83+
ruby-macho (1.2.0)
84+
ruby-progressbar (1.10.0)
8385
sawyer (0.8.1)
8486
addressable (>= 2.3.5, < 2.6)
8587
faraday (~> 0.8, < 1.0)
8688
thread_safe (0.3.6)
8789
tzinfo (1.2.5)
8890
thread_safe (~> 0.1)
89-
unicode-display_width (1.3.2)
90-
xcodeproj (1.5.7)
91+
unicode-display_width (1.4.0)
92+
xcodeproj (1.6.0)
9193
CFPropertyList (>= 2.3.3, < 4.0)
92-
atomos (~> 0.1.2)
94+
atomos (~> 0.1.3)
9395
claide (>= 1.0.2, < 2.0)
9496
colored2 (~> 3.1)
95-
nanaimo (~> 0.2.4)
96-
xcpretty (0.2.8)
97+
nanaimo (~> 0.2.6)
98+
xcpretty (0.3.0)
9799
rouge (~> 2.0.7)
98100

99101
PLATFORMS
100102
ruby
101103

102104
DEPENDENCIES
103105
cocoapods (~> 1.5)
104-
octokit (~> 4.7)
105-
rake (~> 10.4)
106-
rubocop (~> 0.51)
106+
octokit (~> 4.9)
107+
rake (~> 12.3)
108+
rubocop (~> 0.58)
107109
xcpretty
108110

109111
BUNDLED WITH

Package.resolved

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
"repositoryURL": "https://github.com/stencilproject/Stencil.git",
2525
"state": {
2626
"branch": null,
27-
"revision": "c2e25f25acfbe24442809c055141d8323af8f6cc",
28-
"version": "0.11.0"
27+
"revision": "6a4959cea0aa2667eeb5c20d9196d242ea172fcd",
28+
"version": "0.12.0"
2929
}
3030
}
3131
]

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ let package = Package(
77
.library(name: "StencilSwiftKit", targets: ["StencilSwiftKit"])
88
],
99
dependencies: [
10-
.package(url: "https://github.com/stencilproject/Stencil.git", .upToNextMinor(from: "0.11.0"))
10+
.package(url: "https://github.com/stencilproject/Stencil.git", .upToNextMinor(from: "0.12.0"))
1111
],
1212
targets: [
1313
.target(

Podfile.lock

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
PODS:
22
- PathKit (0.8.0)
3-
- Stencil (0.11.0):
3+
- Stencil (0.12.0):
44
- PathKit (~> 0.8.0)
55
- StencilSwiftKit (2.5.0):
6-
- Stencil (~> 0.11)
6+
- Stencil (~> 0.12)
77
- SwiftLint (0.25.1)
88

99
DEPENDENCIES:
1010
- StencilSwiftKit (from `.`)
1111
- SwiftLint (~> 0.25)
1212

1313
SPEC REPOS:
14-
https://github.com/CocoaPods/Specs.git:
14+
https://github.com/cocoapods/specs.git:
1515
- PathKit
1616
- Stencil
1717
- SwiftLint
@@ -22,10 +22,10 @@ EXTERNAL SOURCES:
2222

2323
SPEC CHECKSUMS:
2424
PathKit: dcab05d701474011aae0e40cf892298a831f63d6
25-
Stencil: a1873ecd92cbc053c6b391de7583b9f5bfbb3de6
26-
StencilSwiftKit: 6bad36133ce4dc2ef41728f35a5008e88e5fabf4
25+
Stencil: c324035607f483153c780fb42367d284cadd30a6
26+
StencilSwiftKit: 80a778f61bb742fd7714a5f9f3c2249d2eafa594
2727
SwiftLint: ce933681be10c3266e82576dad676fa815a602e9
2828

2929
PODFILE CHECKSUM: 0bd9ec310bace9d5b62e785ea1fb74547c15074d
3030

31-
COCOAPODS: 1.5.0
31+
COCOAPODS: 1.5.3

Pods/Local Podspecs/StencilSwiftKit.podspec.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Pods/Manifest.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)