Skip to content

Commit

Permalink
Merge branch 'deploy/3.0.0' into productive
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeehut committed Oct 18, 2018
2 parents 2883a4f + c3ea519 commit 2e4215f
Show file tree
Hide file tree
Showing 34 changed files with 848 additions and 335 deletions.
1 change: 1 addition & 0 deletions .jamithub/projconf.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"projectType":"swiftFramework","sourceAvailability":"open"}
84 changes: 84 additions & 0 deletions .projlint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
shared_variables:
rightholder: Flinesoft
project_name: Imperio

rules:
- xcode_build_phases:
project_path: <:project_name:>.xcodeproj
target_name: <:project_name:> iOS
run_scripts:
SwiftLint: |
if [ "${CONFIGURATION}" = "Debug" ]; then
if which swiftlint > /dev/null; then
swiftlint
else
echo "warning: SwiftLint not installed, download it from https://github.com/realm/SwiftLint"
fi
fi
ProjLint: |
if [ "${CONFIGURATION}" = "Debug" ]; then
if which projlint > /dev/null; then
projlint lint --xcode --timeout 2 --ignore-network-errors
else
echo "warning: ProjLint not installed, download it from https://github.com/JamitLabs/ProjLint"
fi
fi
- xcode_project_navigator:
project_path: <:project_name:>.xcodeproj
sorted:
- Frameworks/<:project_name:>
- Frameworks/SupportingFiles
- Tests/<:project_name:>Tests
- Tests/SupportingFiles
inner_group_order:
- assets
- entitlements
- plists
- strings
- others
- [code_files, interfaces]
- folders
structure:
- Frameworks:
- <:project_name:>
- SupportingFiles:
- Info.plist
- Tests:
- <:project_name:>Tests
- SupportingFiles:
- Info.plist
- RootFiles:
- beak.swift
- .projlint.yml
- .swiftlint.yml
- Package.swift
- Products
- file_content_template:
matching:
.swiftlint.yml:
template_url: "https://raw.githubusercontent.com/JamitLabs/ProjLintTemplates/master/Framework/SwiftLint.stencil"
parameters:
rightholder: <:rightholder:>
.projlint.yml:
template_url: "https://raw.githubusercontent.com/JamitLabs/ProjLintTemplates/master/Framework/ProjLint.stencil"
parameters:
rightholder: <:rightholder:>
project_name: <:project_name:>
- file_existence:
existing_paths:
- .gitignore
- .swiftlint.yml
- .sourcery/LinuxMain.stencil
- CODE_OF_CONDUCT.md
- CONTRIBUTING.md
- CHANGELOG.md
- LICENSE
- README.md
- <:project_name:>.podspec
- Package.swift
- beak.swift
- <:project_name:>.xcodeproj/xcshareddata/IDETemplateMacros.plist
- Frameworks/SupportingFiles/Info.plist
- Tests/SupportingFiles/Info.plist
Loading

0 comments on commit 2e4215f

Please sign in to comment.