Skip to content

Commit

Permalink
Merge pull request #5 from zalazara/release/0.1.0
Browse files Browse the repository at this point in the history
Release/0.1.0
  • Loading branch information
zalazara authored Sep 15, 2022
2 parents 16f5849 + 3566083 commit 82b9bfd
Show file tree
Hide file tree
Showing 55 changed files with 2,250 additions and 53 deletions.
187 changes: 158 additions & 29 deletions Example/Kuru Example.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

This file was deleted.

10 changes: 10 additions & 0 deletions Example/Kuru Example.xcworkspace/contents.xcworkspacedata

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

Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>IDEDidComputeMac32BitWarning</key>
<true/>
</dict>
</plist>
9 changes: 9 additions & 0 deletions Example/Kuru Example/Kuru_ExampleApp.swift
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,15 @@ struct Kuru_ExampleApp: App {

func registerComponents() {
Kuru.registerComponent(ScreenContainerComponent.self, for: "screenContainer")

Kuru.registerComponents([
"asyncImageView" : AsyncImageViewComponent.self,
"titleText" : TitleTextComponent.self,
"subtitleText" : SubtitleTextComponent.self,
"circleIconButton" : CircleIconButton.self,
"navigationView" : NavigationViewComponent.self
])

Kuru.registerComponent(AsyncImageViewComponent.self, for: "asyncImageView")
Kuru.registerComponent(TitleTextComponent.self, for: "titleText")
Kuru.registerComponent(SubtitleTextComponent.self, for: "subtitleText")
Expand Down
20 changes: 20 additions & 0 deletions Example/Podfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Uncomment the next line to define a global platform for your project
platform :ios, '13.0'

target 'Kuru Example' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!

# Pods for Kuru Example
pod 'Kuru', :path => '../'

target 'Kuru ExampleTests' do
inherit! :search_paths
# Pods for testing
end

target 'Kuru ExampleUITests' do
# Pods for testing
end

end
16 changes: 16 additions & 0 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
PODS:
- Kuru (0.0.3)

DEPENDENCIES:
- Kuru (from `../`)

EXTERNAL SOURCES:
Kuru:
:path: "../"

SPEC CHECKSUMS:
Kuru: 26ba71cf79c73d8311f64c4919a056878422dd17

PODFILE CHECKSUM: 01a500900fa497891157bc8b70fbb3837ab7844a

COCOAPODS: 1.11.3
42 changes: 42 additions & 0 deletions Example/Pods/Local Podspecs/Kuru.podspec.json

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

16 changes: 16 additions & 0 deletions Example/Pods/Manifest.lock

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

1,044 changes: 1,044 additions & 0 deletions Example/Pods/Pods.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

26 changes: 26 additions & 0 deletions Example/Pods/Target Support Files/Kuru/Kuru-Info.plist

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

5 changes: 5 additions & 0 deletions Example/Pods/Target Support Files/Kuru/Kuru-dummy.m

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

12 changes: 12 additions & 0 deletions Example/Pods/Target Support Files/Kuru/Kuru-prefix.pch

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

16 changes: 16 additions & 0 deletions Example/Pods/Target Support Files/Kuru/Kuru-umbrella.h

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

13 changes: 13 additions & 0 deletions Example/Pods/Target Support Files/Kuru/Kuru.debug.xcconfig

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

6 changes: 6 additions & 0 deletions Example/Pods/Target Support Files/Kuru/Kuru.modulemap

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

13 changes: 13 additions & 0 deletions Example/Pods/Target Support Files/Kuru/Kuru.release.xcconfig

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

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

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

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

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

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

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

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

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

Loading

0 comments on commit 82b9bfd

Please sign in to comment.