Skip to content

Commit

Permalink
docs: update metadata for 0.9.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Antondomashnev committed Sep 22, 2017
1 parent cec5ee2 commit 6af1ddc
Show file tree
Hide file tree
Showing 39 changed files with 518 additions and 473 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

---

## Master
## 0.9.0

### New Features

Expand Down

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

2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ namespace :release do

json = get('https://circleci.com/api/v1.1/project/github/krzysztofzablocki/Sourcery/tree/master')
master_branch_status = json[0]['status']
results << log_result(master_branch_status == 'success', 'Master branch is green on CI', 'Please check master branch CI status first')
results << log_result(master_branch_status == 'success' || master_branch_status == 'fixed', 'Master branch is green on CI', 'Please check master branch CI status first')
exit 1 unless results.all?
end

Expand Down
2 changes: 1 addition & 1 deletion Sourcery.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = "Sourcery"
s.version = "0.8.0"
s.version = "0.9.0"
s.summary = "A tool that brings meta-programming to Swift, allowing you to code generate Swift code."

s.description = <<-DESC
Expand Down
4 changes: 2 additions & 2 deletions Sourcery.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1140,7 +1140,7 @@
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 0.8.0;
CURRENT_PROJECT_VERSION = 0.9.0;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)",
Expand All @@ -1161,7 +1161,7 @@
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 0.8.0;
CURRENT_PROJECT_VERSION = 0.9.0;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)",
Expand Down
2 changes: 1 addition & 1 deletion Sourcery/Version.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ import Foundation

struct Version {
public let value: String
public static let current = Version(value: "0.8.0")
public static let current = Version(value: "0.9.0")
}
7 changes: 6 additions & 1 deletion SourceryRuntime/Sources/Coding.generated.swift
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
// Generated using Sourcery 0.8.0 — https://github.com/krzysztofzablocki/Sourcery
// Generated using Sourcery 0.9.0 — https://github.com/krzysztofzablocki/Sourcery
// DO NOT EDIT

import Foundation


extension NSCoder {

@nonobjc func decode(forKey: String) -> String? {
Expand Down Expand Up @@ -45,10 +46,12 @@ extension AssociatedValue: NSCoding {}

extension Attribute: NSCoding {}


extension ClosureType: NSCoding {}

extension DictionaryType: NSCoding {}


extension EnumCase: NSCoding {}

extension FileParserResult: NSCoding {}
Expand All @@ -57,6 +60,8 @@ extension Method: NSCoding {}

extension MethodParameter: NSCoding {}



extension TemplateContext: NSCoding {}

extension TupleElement: NSCoding {}
Expand Down
4 changes: 3 additions & 1 deletion SourceryRuntime/Sources/Description.generated.swift
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// Generated using Sourcery 0.8.0 — https://github.com/krzysztofzablocki/Sourcery
// Generated using Sourcery 0.9.0 — https://github.com/krzysztofzablocki/Sourcery
// DO NOT EDIT


extension ArrayType {
/// :nodoc:
override public var description: String {
Expand Down Expand Up @@ -104,6 +105,7 @@ extension Method {
string += "isStatic = \(String(describing: self.isStatic)), "
string += "isClass = \(String(describing: self.isClass)), "
string += "isInitializer = \(String(describing: self.isInitializer)), "
string += "isDeinitializer = \(String(describing: self.isDeinitializer)), "
string += "isFailableInitializer = \(String(describing: self.isFailableInitializer)), "
string += "isConvenienceInitializer = \(String(describing: self.isConvenienceInitializer)), "
string += "isRequired = \(String(describing: self.isRequired)), "
Expand Down
3 changes: 2 additions & 1 deletion SourceryRuntime/Sources/Diffable.generated.swift
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// Generated using Sourcery 0.8.0 — https://github.com/krzysztofzablocki/Sourcery
// Generated using Sourcery 0.9.0 — https://github.com/krzysztofzablocki/Sourcery
// DO NOT EDIT


extension ArrayType: Diffable {
func diffAgainst(_ object: Any?) -> DiffableResult {
let results = DiffableResult()
Expand Down
3 changes: 2 additions & 1 deletion SourceryRuntime/Sources/Equality.generated.swift
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// Generated using Sourcery 0.8.0 — https://github.com/krzysztofzablocki/Sourcery
// Generated using Sourcery 0.9.0 — https://github.com/krzysztofzablocki/Sourcery
// DO NOT EDIT


extension ArrayType {
/// :nodoc:
override public func isEqual(_ object: Any?) -> Bool {
Expand Down
7 changes: 6 additions & 1 deletion SourceryRuntime/Sources/JSExport.generated.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated using Sourcery 0.8.0 — https://github.com/krzysztofzablocki/Sourcery
// Generated using Sourcery 0.9.0 — https://github.com/krzysztofzablocki/Sourcery
// DO NOT EDIT

import JavaScriptCore
Expand Down Expand Up @@ -142,6 +142,7 @@ extension Enum: EnumAutoJSExport {}

extension EnumCase: EnumCaseAutoJSExport {}


@objc protocol MethodAutoJSExport: JSExport {
var name: String { get }
var selectorName: String { get }
Expand All @@ -160,6 +161,7 @@ extension EnumCase: EnumCaseAutoJSExport {}
var isStatic: Bool { get }
var isClass: Bool { get }
var isInitializer: Bool { get }
var isDeinitializer: Bool { get }
var isFailableInitializer: Bool { get }
var isConvenienceInitializer: Bool { get }
var isRequired: Bool { get }
Expand Down Expand Up @@ -225,6 +227,7 @@ extension MethodParameter: MethodParameterAutoJSExport {}

extension Protocol: ProtocolAutoJSExport {}


@objc protocol StructAutoJSExport: JSExport {
var kind: String { get }
var module: String? { get }
Expand Down Expand Up @@ -344,6 +347,8 @@ extension Type: TypeAutoJSExport {}

extension TypeName: TypeNameAutoJSExport {}



@objc protocol TypesCollectionAutoJSExport: JSExport {
}

Expand Down
3 changes: 2 additions & 1 deletion SourceryRuntime/Sources/Typed.generated.swift
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// Generated using Sourcery 0.8.0 — https://github.com/krzysztofzablocki/Sourcery
// Generated using Sourcery 0.9.0 — https://github.com/krzysztofzablocki/Sourcery
// DO NOT EDIT


extension AssociatedValue {
/// Whether type is optional. Shorthand for `typeName.isOptional`
public var isOptional: Bool { return typeName.isOptional }
Expand Down
12 changes: 6 additions & 6 deletions docs/Classes/ArrayType.html
Original file line number Diff line number Diff line change
Expand Up @@ -173,9 +173,9 @@ <h1>ArrayType</h1>
<li class="item">
<div>
<code>
<a name="/s:vC15SourceryRuntime9ArrayType4nameSS"></a>
<a name="/c:@M@SourceryRuntime@objc(cs)ArrayType(py)name"></a>
<a name="//apple_ref/swift/Property/name" class="dashAnchor"></a>
<a class="token" href="#/s:vC15SourceryRuntime9ArrayType4nameSS">name</a>
<a class="token" href="#/c:@M@SourceryRuntime@objc(cs)ArrayType(py)name">name</a>
</code>
</div>
<div class="height-container">
Expand All @@ -200,9 +200,9 @@ <h4>Declaration</h4>
<li class="item">
<div>
<code>
<a name="/s:vC15SourceryRuntime9ArrayType15elementTypeNameCS_8TypeName"></a>
<a name="/c:@M@SourceryRuntime@objc(cs)ArrayType(py)elementTypeName"></a>
<a name="//apple_ref/swift/Property/elementTypeName" class="dashAnchor"></a>
<a class="token" href="#/s:vC15SourceryRuntime9ArrayType15elementTypeNameCS_8TypeName">elementTypeName</a>
<a class="token" href="#/c:@M@SourceryRuntime@objc(cs)ArrayType(py)elementTypeName">elementTypeName</a>
</code>
</div>
<div class="height-container">
Expand All @@ -227,9 +227,9 @@ <h4>Declaration</h4>
<li class="item">
<div>
<code>
<a name="/s:vC15SourceryRuntime9ArrayType11elementTypeGSqCS_4Type_"></a>
<a name="/c:@M@SourceryRuntime@objc(cs)ArrayType(py)elementType"></a>
<a name="//apple_ref/swift/Property/elementType" class="dashAnchor"></a>
<a class="token" href="#/s:vC15SourceryRuntime9ArrayType11elementTypeGSqCS_4Type_">elementType</a>
<a class="token" href="#/c:@M@SourceryRuntime@objc(cs)ArrayType(py)elementType">elementType</a>
</code>
</div>
<div class="height-container">
Expand Down
54 changes: 27 additions & 27 deletions docs/Classes/AssociatedValue.html
Original file line number Diff line number Diff line change
Expand Up @@ -173,9 +173,9 @@ <h1>AssociatedValue</h1>
<li class="item">
<div>
<code>
<a name="/s:vC15SourceryRuntime15AssociatedValue9localNameGSqSS_"></a>
<a name="/c:@M@SourceryRuntime@objc(cs)AssociatedValue(py)localName"></a>
<a name="//apple_ref/swift/Property/localName" class="dashAnchor"></a>
<a class="token" href="#/s:vC15SourceryRuntime15AssociatedValue9localNameGSqSS_">localName</a>
<a class="token" href="#/c:@M@SourceryRuntime@objc(cs)AssociatedValue(py)localName">localName</a>
</code>
</div>
<div class="height-container">
Expand All @@ -201,9 +201,9 @@ <h4>Declaration</h4>
<li class="item">
<div>
<code>
<a name="/s:vC15SourceryRuntime15AssociatedValue12externalNameGSqSS_"></a>
<a name="/c:@M@SourceryRuntime@objc(cs)AssociatedValue(py)externalName"></a>
<a name="//apple_ref/swift/Property/externalName" class="dashAnchor"></a>
<a class="token" href="#/s:vC15SourceryRuntime15AssociatedValue12externalNameGSqSS_">externalName</a>
<a class="token" href="#/c:@M@SourceryRuntime@objc(cs)AssociatedValue(py)externalName">externalName</a>
</code>
</div>
<div class="height-container">
Expand All @@ -229,9 +229,9 @@ <h4>Declaration</h4>
<li class="item">
<div>
<code>
<a name="/s:vC15SourceryRuntime15AssociatedValue8typeNameCS_8TypeName"></a>
<a name="/c:@M@SourceryRuntime@objc(cs)AssociatedValue(py)typeName"></a>
<a name="//apple_ref/swift/Property/typeName" class="dashAnchor"></a>
<a class="token" href="#/s:vC15SourceryRuntime15AssociatedValue8typeNameCS_8TypeName">typeName</a>
<a class="token" href="#/c:@M@SourceryRuntime@objc(cs)AssociatedValue(py)typeName">typeName</a>
</code>
</div>
<div class="height-container">
Expand All @@ -256,9 +256,9 @@ <h4>Declaration</h4>
<li class="item">
<div>
<code>
<a name="/s:vC15SourceryRuntime15AssociatedValue4typeGSqCS_4Type_"></a>
<a name="/c:@M@SourceryRuntime@objc(cs)AssociatedValue(py)type"></a>
<a name="//apple_ref/swift/Property/type" class="dashAnchor"></a>
<a class="token" href="#/s:vC15SourceryRuntime15AssociatedValue4typeGSqCS_4Type_">type</a>
<a class="token" href="#/c:@M@SourceryRuntime@objc(cs)AssociatedValue(py)type">type</a>
</code>
</div>
<div class="height-container">
Expand All @@ -283,9 +283,9 @@ <h4>Declaration</h4>
<li class="item">
<div>
<code>
<a name="/s:vC15SourceryRuntime15AssociatedValue11annotationsGVs10DictionarySSCSo8NSObject_"></a>
<a name="/c:@M@SourceryRuntime@objc(cs)AssociatedValue(py)annotations"></a>
<a name="//apple_ref/swift/Property/annotations" class="dashAnchor"></a>
<a class="token" href="#/s:vC15SourceryRuntime15AssociatedValue11annotationsGVs10DictionarySSCSo8NSObject_">annotations</a>
<a class="token" href="#/c:@M@SourceryRuntime@objc(cs)AssociatedValue(py)annotations">annotations</a>
</code>
</div>
<div class="height-container">
Expand Down Expand Up @@ -314,9 +314,9 @@ <h4>Declaration</h4>
<li class="item">
<div>
<code>
<a name="/s:vC15SourceryRuntime15AssociatedValue10isOptionalSb"></a>
<a name="/c:@CM@SourceryRuntime@objc(cs)AssociatedValue(py)isOptional"></a>
<a name="//apple_ref/swift/Property/isOptional" class="dashAnchor"></a>
<a class="token" href="#/s:vC15SourceryRuntime15AssociatedValue10isOptionalSb">isOptional</a>
<a class="token" href="#/c:@CM@SourceryRuntime@objc(cs)AssociatedValue(py)isOptional">isOptional</a>
</code>
</div>
<div class="height-container">
Expand All @@ -341,9 +341,9 @@ <h4>Declaration</h4>
<li class="item">
<div>
<code>
<a name="/s:vC15SourceryRuntime15AssociatedValue29isImplicitlyUnwrappedOptionalSb"></a>
<a name="/c:@CM@SourceryRuntime@objc(cs)AssociatedValue(py)isImplicitlyUnwrappedOptional"></a>
<a name="//apple_ref/swift/Property/isImplicitlyUnwrappedOptional" class="dashAnchor"></a>
<a class="token" href="#/s:vC15SourceryRuntime15AssociatedValue29isImplicitlyUnwrappedOptionalSb">isImplicitlyUnwrappedOptional</a>
<a class="token" href="#/c:@CM@SourceryRuntime@objc(cs)AssociatedValue(py)isImplicitlyUnwrappedOptional">isImplicitlyUnwrappedOptional</a>
</code>
</div>
<div class="height-container">
Expand All @@ -368,9 +368,9 @@ <h4>Declaration</h4>
<li class="item">
<div>
<code>
<a name="/s:vC15SourceryRuntime15AssociatedValue17unwrappedTypeNameSS"></a>
<a name="/c:@CM@SourceryRuntime@objc(cs)AssociatedValue(py)unwrappedTypeName"></a>
<a name="//apple_ref/swift/Property/unwrappedTypeName" class="dashAnchor"></a>
<a class="token" href="#/s:vC15SourceryRuntime15AssociatedValue17unwrappedTypeNameSS">unwrappedTypeName</a>
<a class="token" href="#/c:@CM@SourceryRuntime@objc(cs)AssociatedValue(py)unwrappedTypeName">unwrappedTypeName</a>
</code>
</div>
<div class="height-container">
Expand All @@ -395,17 +395,17 @@ <h4>Declaration</h4>
<li class="item">
<div>
<code>
<a name="/s:vC15SourceryRuntime15AssociatedValue14actualTypeNameGSqCS_8TypeName_"></a>
<a name="/c:@CM@SourceryRuntime@objc(cs)AssociatedValue(py)actualTypeName"></a>
<a name="//apple_ref/swift/Property/actualTypeName" class="dashAnchor"></a>
<a class="token" href="#/s:vC15SourceryRuntime15AssociatedValue14actualTypeNameGSqCS_8TypeName_">actualTypeName</a>
<a class="token" href="#/c:@CM@SourceryRuntime@objc(cs)AssociatedValue(py)actualTypeName">actualTypeName</a>
</code>
</div>
<div class="height-container">
<div class="pointer-container"></div>
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Actual type name if declaration uses typealias, otherwise just a <code><a href="../Classes/AssociatedValue.html#/s:vC15SourceryRuntime15AssociatedValue8typeNameCS_8TypeName">typeName</a></code>. Shorthand for <code>typeName.actualTypeName</code></p>
<p>Actual type name if declaration uses typealias, otherwise just a <code><a href="../Classes/AssociatedValue.html#/c:@M@SourceryRuntime@objc(cs)AssociatedValue(py)typeName">typeName</a></code>. Shorthand for <code>typeName.actualTypeName</code></p>

</div>
<div class="declaration">
Expand All @@ -422,9 +422,9 @@ <h4>Declaration</h4>
<li class="item">
<div>
<code>
<a name="/s:vC15SourceryRuntime15AssociatedValue7isTupleSb"></a>
<a name="/c:@CM@SourceryRuntime@objc(cs)AssociatedValue(py)isTuple"></a>
<a name="//apple_ref/swift/Property/isTuple" class="dashAnchor"></a>
<a class="token" href="#/s:vC15SourceryRuntime15AssociatedValue7isTupleSb">isTuple</a>
<a class="token" href="#/c:@CM@SourceryRuntime@objc(cs)AssociatedValue(py)isTuple">isTuple</a>
</code>
</div>
<div class="height-container">
Expand All @@ -449,9 +449,9 @@ <h4>Declaration</h4>
<li class="item">
<div>
<code>
<a name="/s:vC15SourceryRuntime15AssociatedValue9isClosureSb"></a>
<a name="/c:@CM@SourceryRuntime@objc(cs)AssociatedValue(py)isClosure"></a>
<a name="//apple_ref/swift/Property/isClosure" class="dashAnchor"></a>
<a class="token" href="#/s:vC15SourceryRuntime15AssociatedValue9isClosureSb">isClosure</a>
<a class="token" href="#/c:@CM@SourceryRuntime@objc(cs)AssociatedValue(py)isClosure">isClosure</a>
</code>
</div>
<div class="height-container">
Expand All @@ -476,9 +476,9 @@ <h4>Declaration</h4>
<li class="item">
<div>
<code>
<a name="/s:vC15SourceryRuntime15AssociatedValue7isArraySb"></a>
<a name="/c:@CM@SourceryRuntime@objc(cs)AssociatedValue(py)isArray"></a>
<a name="//apple_ref/swift/Property/isArray" class="dashAnchor"></a>
<a class="token" href="#/s:vC15SourceryRuntime15AssociatedValue7isArraySb">isArray</a>
<a class="token" href="#/c:@CM@SourceryRuntime@objc(cs)AssociatedValue(py)isArray">isArray</a>
</code>
</div>
<div class="height-container">
Expand All @@ -503,9 +503,9 @@ <h4>Declaration</h4>
<li class="item">
<div>
<code>
<a name="/s:vC15SourceryRuntime15AssociatedValue12isDictionarySb"></a>
<a name="/c:@CM@SourceryRuntime@objc(cs)AssociatedValue(py)isDictionary"></a>
<a name="//apple_ref/swift/Property/isDictionary" class="dashAnchor"></a>
<a class="token" href="#/s:vC15SourceryRuntime15AssociatedValue12isDictionarySb">isDictionary</a>
<a class="token" href="#/c:@CM@SourceryRuntime@objc(cs)AssociatedValue(py)isDictionary">isDictionary</a>
</code>
</div>
<div class="height-container">
Expand Down
Loading

0 comments on commit 6af1ddc

Please sign in to comment.