Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Splitting of Filters+Strings #63

Merged
merged 10 commits into from
Aug 23, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,23 +18,25 @@ _None_

### Internal Changes

_None_
* Refactoring of `Filters+Strings`.
[Antondomashnev](https://github.com/antondomashnev)
[#59](https://github.com/SwiftGen/StencilSwiftKit/pull/63)

## 2.1.0

### New Features

* Added the `basename` and `dirname` string filters for getting a filename, or parent folder (respectively), out of a path.
[David Jennes](https://github.com/djbe)
[David Jennes](https://github.com/djbe)
[#60](https://github.com/SwiftGen/StencilSwiftKit/pull/60)
* Modify the `swiftIdentifier` string filter to accept an optional "pretty" mode, to also apply the `snakeToCamelCase` filter and other manipulations if needed for a "prettier" but still valid identifier.
[David Jennes](https://github.com/djbe)
[David Jennes](https://github.com/djbe)
[#61](https://github.com/SwiftGen/StencilSwiftKit/pull/61)

### Internal Changes

* Ensure `swiftlint` is run using `bundler`.
[David Jennes](https://github.com/djbe)
[David Jennes](https://github.com/djbe)
[#59](https://github.com/SwiftGen/StencilSwiftKit/pull/59)

## 2.0.1
Expand Down
24 changes: 24 additions & 0 deletions Package.pins
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"autoPin": true,
"pins": [
{
"package": "PathKit",
"reason": null,
"repositoryURL": "https://github.com/kylef/PathKit.git",
"version": "0.8.0"
},
{
"package": "Spectre",
"reason": null,
"repositoryURL": "https://github.com/kylef/Spectre.git",
"version": "0.7.2"
},
{
"package": "Stencil",
"reason": null,
"repositoryURL": "https://github.com/kylef/Stencil.git",
"version": "0.9.0"
}
],
"version": 1
}
34 changes: 34 additions & 0 deletions Package.resolved
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"object": {
"pins": [
{
"package": "PathKit",
"repositoryURL": "https://github.com/kylef/PathKit.git",
"state": {
"branch": null,
"revision": "891a3fec2699fc43aed18b7649950677c0152a22",
"version": "0.8.0"
}
},
{
"package": "Spectre",
"repositoryURL": "https://github.com/kylef/Spectre.git",
"state": {
"branch": null,
"revision": "e46b75cf03ad5e563b4b0a5068d3d6f04d77d80b",
"version": "0.7.2"
}
},
{
"package": "Stencil",
"repositoryURL": "https://github.com/kylef/Stencil.git",
"state": {
"branch": null,
"revision": "65a461d0a103896c8ff7e3f17f7be1a5badadeb0",
"version": "0.9.0"
}
}
]
},
"version": 1
}
2 changes: 1 addition & 1 deletion Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ EXTERNAL SOURCES:
SPEC CHECKSUMS:
PathKit: dcab05d701474011aae0e40cf892298a831f63d6
Stencil: 510f0b0518a366b67b6a9c5085a0399741b6d2f9
StencilSwiftKit: 76100a047f59c3358a3abe0cd5cc99db19a3dcc7
StencilSwiftKit: 682c70ed061e6a91774da284a4370799692e518a

PODFILE CHECKSUM: 81c0228e2e71a9683d0eed53bd9f6bd1165815b7

Expand Down
32 changes: 0 additions & 32 deletions Pods/Local Podspecs/Stencil.podspec.json

This file was deleted.

17 changes: 16 additions & 1 deletion Pods/Local Podspecs/StencilSwiftKit.podspec.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Pods/Manifest.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading