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

Created Yoshi #1

Merged
merged 23 commits into from
Feb 8, 2016
Merged
Show file tree
Hide file tree
Changes from 12 commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
7f99980
Initial Commit
MichaelCampbell Dec 22, 2015
4ac8942
Added YoshiCustomMenu implementation
MichaelCampbell Dec 23, 2015
7d512b7
Added YoshiMenuDateSelector implementation
MichaelCampbell Dec 24, 2015
e93634d
Added Labels to ViewController so that we can see when the selections…
MichaelCampbell Jan 5, 2016
6ee1213
Removed YoshiMenuType from YoshiMenu
MichaelCampbell Jan 5, 2016
c92eb10
Removed unnecessary map to YoshiTableViewMenuItem in AppDelegate of e…
MichaelCampbell Jan 6, 2016
af32842
Updated presentViewController completion in DebugConfigurationManager…
MichaelCampbell Jan 6, 2016
a731565
Removed unnecessary optional UIAlertAction return types
MichaelCampbell Jan 6, 2016
fc5bd09
Set iOS Deployment Target as 8.0 for Yoshi
MichaelCampbell Jan 8, 2016
3d8604c
Removed unnecessary optional UIAlertAction return types
MichaelCampbell Jan 6, 2016
dd3bc99
Removing Stack view to make example iOS8 compliant
Jan 8, 2016
bdcd933
Merge pull request #5 from prolificinteractive/chore/iOS8_Support
yoyoyoseob Jan 8, 2016
bf30b5f
Updated the description and usage sections in the README.
htinlinn Feb 3, 2016
2a052ce
Updated the contributing to yoshi section with link to the Prolific s…
htinlinn Feb 6, 2016
38297e9
Merge pull request #8 from prolificinteractive/chore/update_readme
MichaelCampbell Feb 6, 2016
555fc3b
Updated License
MichaelCampbell Feb 6, 2016
12ce2fb
Merge pull request #11 from prolificinteractive/chore/license_update
htinlinn Feb 6, 2016
4411383
Updated Example project with debug check
MichaelCampbell Feb 6, 2016
72de4e7
Merge pull request #12 from prolificinteractive/chore/debug_check
htinlinn Feb 6, 2016
e7ea76d
Updated styling to match Prolific Swift Style Guide
MichaelCampbell Feb 6, 2016
a1ce03e
Merge pull request #13 from prolificinteractive/chore/style_updates
htinlinn Feb 6, 2016
e2328dd
Integrated SwiftLint
MichaelCampbell Feb 6, 2016
88024b8
Merge pull request #9 from prolificinteractive/chore/SwiftLint_Integr…
htinlinn Feb 6, 2016
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
33 changes: 33 additions & 0 deletions Example/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Xcode
#
build/
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata
*.xccheckout
*.moved-aside
DerivedData
*.hmap
*.ipa
*.xcuserstate

# CocoaPods
#
# We recommend against adding the Pods directory to your .gitignore. However
# you should judge for yourself, the pros and cons are mentioned at:
# http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control
#
Pods/

# Carthage
#
# Add this line if you want to avoid checking in source code from Carthage dependencies.
# Carthage/Checkouts

Carthage/Build
7 changes: 7 additions & 0 deletions Example/Podfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
use_frameworks!

target 'YoshiExample', :exclusive => true do
pod "Yoshi", :path => "../"
end
14 changes: 14 additions & 0 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
PODS:
- Yoshi (0.1.0)

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

EXTERNAL SOURCES:
Yoshi:
:path: "../"

SPEC CHECKSUMS:
Yoshi: c72d7ab825483c0ae033238ce7073f7a546ce6a3

COCOAPODS: 0.39.0
Loading