Skip to content

Commit 6a56a19

Browse files
committed
Merge branch 'release/1.0.0'
2 parents dd2af01 + 769cfdc commit 6a56a19

File tree

68 files changed

+4073
-3
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+4073
-3
lines changed

.gitattributes

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
fastlane/* linguist-vendored
2+
*.rb linguist-vendored
3+
Podfile* linguist-vendored
4+
Gemfile* linguist-vendored
5+
Brewfile* linguist-vendored
6+
*.podspec linguist-vendored

.gitignore

100644100755
Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ playground.xcworkspace
4343
# you should judge for yourself, the pros and cons are mentioned at:
4444
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
4545
#
46-
# Pods/
46+
Pods/
4747

4848
# Carthage
4949
#
@@ -63,3 +63,13 @@ fastlane/report.xml
6363
fastlane/Preview.html
6464
fastlane/screenshots
6565
fastlane/test_output
66+
fastlane/xcov_report
67+
68+
## Ruby specific
69+
# for a library or gem, you might want to ignore these files since the code is
70+
# intended to run in multiple environments; otherwise, check them in:
71+
Gemfile.lock
72+
73+
# Environment normalization:
74+
/.bundle/
75+
/vendor/bundle

.swiftlint.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
line_length: 200
2+
file_length: 500

.travis.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
osx_image: xcode8.2
2+
language: objective-c
3+
cache:
4+
- bundler
5+
- cocoapods
6+
branches:
7+
only:
8+
- develop
9+
- master
10+
notifications:
11+
email: false
12+
before_install:
13+
- gem install bundler
14+
- bundle update && brew update
15+
- bundle install && brew bundle
16+
- bundle exec pod repo update --silent
17+
script:
18+
- bundle exec fastlane run_tests
19+
after_success:
20+
- bundle exec fastlane ci_framework_deploy

Brewfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
brew 'swiftlint'
2+
brew 'git-flow'

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
`parallax-view-controller-transition-swift` adheres to [Semantic Versioning](http://semver.org/).

CODE_OF_CONDUCT.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# Contributor Covenant Code of Conduct
2+
3+
## Our Pledge
4+
5+
In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.
6+
7+
## Our Standards
8+
9+
Examples of behavior that contributes to creating a positive environment include:
10+
11+
* Using welcoming and inclusive language
12+
* Being respectful of differing viewpoints and experiences
13+
* Gracefully accepting constructive criticism
14+
* Focusing on what is best for the community
15+
* Showing empathy towards other community members
16+
17+
Examples of unacceptable behavior by participants include:
18+
19+
* The use of sexualized language or imagery and unwelcome sexual attention or advances
20+
* Trolling, insulting/derogatory comments, and personal or political attacks
21+
* Public or private harassment
22+
* Publishing others' private information, such as a physical or electronic address, without explicit permission
23+
* Other conduct which could reasonably be considered inappropriate in a professional setting
24+
25+
## Our Responsibilities
26+
27+
Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior.
28+
29+
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.
30+
31+
## Scope
32+
33+
This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.
34+
35+
## Enforcement
36+
37+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at [[email protected]](mailto:[email protected]). All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.
38+
39+
Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.
40+
41+
## Attribution
42+
43+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version]
44+
45+
[homepage]: http://contributor-covenant.org
46+
[version]: http://contributor-covenant.org/version/1/4/

CONTRIBUTING.md

Lines changed: 94 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
# Contributing to parallax-view-controller-transition-swift
2+
3+
First off, thanks for taking the time to contribute! :tada::+1:
4+
5+
The following is a set of guidelines for contributing to Digipolitan and its packages, which are hosted in the [Digipolitan Organization](https://github.com/digipolitan) on GitHub.
6+
These are just guidelines, not rules. Use your best judgment, and feel free to propose changes to this document in a pull request.
7+
8+
#### Table Of Contents
9+
10+
[What should I know before I get started?](#what-should-i-know-before-i-get-started)
11+
* [Code of Conduct](#code-of-conduct)
12+
13+
[How Can I Contribute?](#how-can-i-contribute)
14+
* [Reporting Bugs](#reporting-bugs)
15+
16+
## What should I know before I get started?
17+
18+
### Code of Conduct
19+
20+
This project adheres to the Contributor Covenant [code of conduct](CODE_OF_CONDUCT.md).
21+
By participating, you are expected to uphold this code.
22+
Please report unacceptable behavior to [[email protected]](mailto:[email protected]).
23+
24+
### Reporting Bugs
25+
26+
This section guides you through submitting a bug report for Digipolitan. Following these guidelines helps maintainers and the community understand your report :pencil:, reproduce the behavior :computer: :computer:, and find related reports :mag_right:.
27+
28+
Before creating bug reports, please check [this list](#before-submitting-a-bug-report) as you might find out that you don't need to create one. When you are creating a bug report, please [include as many details as possible](#how-do-i-submit-a-good-bug-report). If you'd like, you can use [this template](#template-for-submitting-bug-reports) to structure the information.
29+
30+
#### Before Submitting A Bug Report
31+
32+
* **Perform a [search](https://github.com/issues?q=+is%3Aissue+user%3Adigipolitan)** to see if the problem has already been reported. If it has, add a comment to the existing issue instead of opening a new one.
33+
34+
#### How Do I Submit A (Good) Bug Report?
35+
36+
Bugs are tracked as [GitHub issues](https://guides.github.com/features/issues/). After you've determined
37+
38+
Explain the problem and include additional details to help maintainers reproduce the problem:
39+
40+
* **Use a clear and descriptive title** for the issue to identify the problem.
41+
* **Describe the exact steps which reproduce the problem** in as many details as possible.
42+
* **Provide specific examples to demonstrate the steps**. Include links to files or GitHub projects, or copy/pasteable snippets, which you use in those examples. If you're providing snippets in the issue, use [Markdown code blocks](https://help.github.com/articles/markdown-basics/#multiple-lines).
43+
* **Describe the behavior you observed after following the steps** and point out what exactly is the problem with that behavior.
44+
* **Explain which behavior you expected to see instead and why.**
45+
* **Include screenshots and animated GIFs** which show you following the described steps and clearly demonstrate the problem.
46+
* **If you're reporting that parallax-view-controller-transition-swift crashed**, include a crash report with a stack trace from the operating system. On iOS, the crash report is available in Xcode, on macOS, the crash report will be available in `Console.app` under "Diagnostic and usage information" > "User diagnostic reports". Include the crash report in the issue in a [code block](https://help.github.com/articles/markdown-basics/#multiple-lines), a [file attachment](https://help.github.com/articles/file-attachments-on-issues-and-pull-requests/), or put it in a [gist](https://gist.github.com/) and provide link to that gist.
47+
* **If the problem is related to performance**, include a CPU profile capture and a screenshot with your report.
48+
* **If the problem wasn't triggered by a specific action**, describe what you were doing before the problem happened and share more information using the guidelines below.
49+
50+
Provide more context by answering these questions:
51+
52+
* **Did the problem start happening recently** (e.g. after updating to a new version of parallax-view-controller-transition-swift) or was this always a problem?
53+
* If the problem started happening recently, **can you reproduce the problem in an older version of parallax-view-controller-transition-swift ?** What's the most recent version in which the problem doesn't happen? You can download older versions of parallax-view-controller-transition-swift from [the releases page](https://github.com/digipolitan/parallax-view-controller-transition-swift/releases).
54+
* **Can you reliably reproduce the issue?** If not, provide details about how often the problem happens and under which conditions it normally happens.
55+
56+
Include details about your configuration and environment:
57+
58+
* **Which version of parallax-view-controller-transition-swift are you using?
59+
* **What's the name and version of the macOS or iOS you're using**?
60+
61+
#### Template For Submitting Bug Reports
62+
63+
[Short description of problem here]
64+
65+
**Reproduction Steps:**
66+
67+
1. [First Step]
68+
2. [Second Step]
69+
3. [Other Steps...]
70+
71+
**Expected behavior:**
72+
73+
[Describe expected behavior here]
74+
75+
**Observed behavior:**
76+
77+
[Describe observed behavior here]
78+
79+
**Screenshots and GIFs**
80+
81+
![Screenshots and GIFs which follow reproduction steps to demonstrate the problem](url)
82+
83+
**parallax-view-controller-transition-swift version:** [Enter parallax-view-controller-transition-swift version here]
84+
**OS and version:** [Enter macOS / iOS / linux name and version here]
85+
86+
**Installed packages:**
87+
88+
[List of installed packages here]
89+
90+
**Additional information:**
91+
92+
* Problem started happening recently, didn't happen in an older version of parallax-view-controller-transition-swift: [Yes/No]
93+
* Problem can be reliably reproduced, doesn't happen randomly: [Yes/No]
94+
* Problem happens with all files and projects, not only some files or projects: [Yes/No]
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Pod::Spec.new do |s|
2+
s.name = "DGParallaxViewControllerTransition"
3+
s.version = "1.0.0"
4+
s.summary = "Parallax interactive transition during UIViewController presentation"
5+
s.homepage = "https://github.com/Digipolitan/parallax-view-controller-transition-swift"
6+
s.authors = "Digipolitan"
7+
s.source = { :git => "https://github.com/Digipolitan/parallax-view-controller-transition-swift.git", :tag => "v#{s.version}" }
8+
s.license = { :type => "BSD", :file => "LICENSE" }
9+
s.source_files = 'Sources/**/*.{swift,h}'
10+
s.ios.deployment_target = '8.0'
11+
s.tvos.deployment_target = '9.0'
12+
s.requires_arc = true
13+
end

0 commit comments

Comments
 (0)