-
Notifications
You must be signed in to change notification settings - Fork 269
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
19 changed files
with
386 additions
and
277 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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
disabled_rules: | ||
- line_length | ||
- missing_docs | ||
- function_parameter_count | ||
opt_in_rules: | ||
- empty_count | ||
- missing_docs | ||
included: | ||
excluded: | ||
- docs | ||
- PresentrExample | ||
- PresentrTests | ||
force_cast: warning | ||
force_try: | ||
severity: warning | ||
line_length: 150 | ||
type_body_length: | ||
- 300 # warning | ||
- 400 # error | ||
file_length: | ||
warning: 500 | ||
error: 1200 | ||
type_name: | ||
min_length: 4 # only warning | ||
max_length: # warning and error | ||
warning: 40 | ||
error: 50 | ||
excluded: iPhone # excluded via string | ||
variable_name: | ||
min_length: | ||
error: 1 # only error | ||
excluded: # excluded via string array | ||
- id | ||
- URL | ||
- GlobalAPIKey | ||
reporter: "json" # reporter type (xcode, json, csv, checkstyle) |
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,14 @@ | ||
### What's New | ||
|
||
#### 0.1.8 | ||
- .FullScreen PresentationType | ||
- Ability to set animation on/off for dismissOnTap | ||
|
||
#### 0.1.7 | ||
- Ability to set dismiss transition type | ||
- Modify background color & opacity | ||
- Add blur to background | ||
|
||
#### 0.1.6 | ||
- Custom PresentationType's | ||
- Round corners option |
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,6 +1,6 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "Presentr" | ||
s.version = "0.1.7" | ||
s.version = "0.1.8" | ||
s.summary = "A simple Swift wrapper for typical custom view controller presentations." | ||
s.description = <<-DESC | ||
A micro framework created in Swift. Simplifies creating custom view controller presentations. Specially the typical ones we use which are a popup, an alert, or a any non-full-screen modal. Abstracts having to deal with custom presentation controllers and transitioning delegates | ||
|
@@ -10,7 +10,7 @@ Pod::Spec.new do |s| | |
s.author = { "Daniel Lozano" => "[email protected]" } | ||
s.social_media_url = "http://twitter.com/danlozanov" | ||
s.platform = :ios, "8.0" | ||
s.source = { :git => "https://github.com/icalialabs/Presentr.git", :tag => "0.1.7" } | ||
s.source = { :git => "https://github.com/icalialabs/Presentr.git", :tag => "0.1.8" } | ||
s.source_files = "Presentr/**/*.{swift}" | ||
s.resources = "Presentr/**/*.{xib,ttf}" | ||
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.