Skip to content
This repository has been archived by the owner on Dec 29, 2022. It is now read-only.

Commit

Permalink
Refactored author mail template placeholder key
Browse files Browse the repository at this point in the history
  • Loading branch information
SvenTiigi committed May 2, 2019
1 parent a486108 commit 2ab0a68
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Sources/SwiftKit/Models/Kit.swift
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ extension Kit {
return [
"KITPROJECT": self.name,
"KITAUTHOR": self.author.name,
"KITAUTHORMAIL": self.author.email,
"KITMAILAUTHOR": self.author.email,
"KITURL": self.repositoryURL,
"KITORGANIZATION": self.organization.name,
"KITBUNDLEIDENTIFIER": self.organization.identifier,
Expand Down
2 changes: 1 addition & 1 deletion Template/KITPROJECT.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Pod::Spec.new do |s|
s.summary = "KITPROJECT"
s.homepage = "KITURL"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "KITAUTHOR" => "KITAUTHORMAIL" }
s.author = { "KITAUTHOR" => "KITMAILAUTHOR" }
s.source = { :git => "KITURL.git", :tag => s.version.to_s }
s.ios.deployment_target = "8.0"
s.tvos.deployment_target = "9.0"
Expand Down
2 changes: 1 addition & 1 deletion Template/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ Contributions are very welcome 🙌

```
KITPROJECT
Copyright (c) KITYEAR KITAUTHOR KITAUTHORMAIL
Copyright (c) KITYEAR KITAUTHOR KITMAILAUTHOR
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down

0 comments on commit 2ab0a68

Please sign in to comment.