This repository has been archived by the owner on Dec 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from gizmosachin/4.0
ColorSlider 4.0
- Loading branch information
Showing
69 changed files
with
6,293 additions
and
2,155 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
3.0 | ||
4.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,11 @@ | ||
language: objective-c | ||
osx_image: xcode8 | ||
osx_image: xcode9 | ||
env: | ||
global: | ||
- LC_CTYPE=en_US.UTF-8 | ||
- LANG=en_US.UTF-8 | ||
before_install: | ||
- brew update | ||
- brew reinstall xctool | ||
- bundle install | ||
script: | ||
- xcodebuild -showsdks | ||
- xcodebuild -project ColorSlider/ColorSlider.xcodeproj -scheme ColorSlider -sdk iphonesimulator10.0 build analyze | ||
- bundle exec pod lib lint --verbose | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
### One issue or bug per Pull Request | ||
|
||
Keep your Pull Requests small. Small PRs are easier to reason about which makes them significantly more likely to get merged. | ||
|
||
### Issues before features | ||
|
||
If you want to add a feature, please file an [Issue](issues) first. An Issue gives us the opportunity to discuss the requirements and implications of a feature with you before you start writing code. | ||
|
||
### Forwards compatibility | ||
|
||
Please do not write new code using deprecated APIs. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,23 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'ColorSlider' | ||
s.version = '3.0.1' | ||
s.summary = 'Snapchat-style color picker with live preview' | ||
s.version = '4.0' | ||
s.summary = 'Snapchat-style color picker in Swift' | ||
s.homepage = 'http://github.com/gizmosachin/ColorSlider' | ||
s.license = 'MIT' | ||
s.documentation_url = 'http://gizmosachin.com/ColorSlider/' | ||
|
||
s.social_media_url = 'http://twitter.com/gizmosachin' | ||
s.author = { 'Sachin Patel' => '[email protected]' } | ||
|
||
# source | ||
s.source = { :git => 'https://github.com/gizmosachin/ColorSlider.git', :tag => s.version } | ||
s.source_files = 'Sources/**', 'Sources/Internal/**' | ||
|
||
# platform | ||
s.platform = :ios | ||
s.ios.deployment_target = '9.0' | ||
s.source_files = 'Sources/*.swift' | ||
|
||
# build settings | ||
s.requires_arc = true | ||
s.frameworks = 'Foundation', 'UIKit', 'CoreGraphics', 'QuartzCore' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.