├── .gitignore ├── awesome_logo.png ├── AwesomeiOSLogo.sketch ├── .travis.yml ├── .github ├── PULL_REQUEST_TEMPLATE.md └── CONTRIBUTING.md ├── Dangerfile ├── LICENSE ├── helloworld.swift └── CODE_OF_CONDUCT.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.do 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /awesome_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totocaster/awesome-ios/master/awesome_logo.png -------------------------------------------------------------------------------- /AwesomeiOSLogo.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totocaster/awesome-ios/master/AwesomeiOSLogo.sketch -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: ruby 2 | rvm: 3 | - 2.2 4 | before_script: 5 | - gem install awesome_bot 6 | - gem install danger 7 | script: 8 | - allowed_dupes=CONTRIBUTING,mocaplatform,Awesome-Swift-Education,XCDYouTubeKit,SRGMediaPlayer,PayPal-iOS-SDK,PerfectlySoft 9 | - allowed_redirects=growthpush,awesomelinkcounter,eepurl,bluemix,amazon 10 | - awesome_bot README.md --allow-ssl --white-list $allowed_dupes,$allowed_redirects 11 | - danger 12 | notifications: 13 | email: false 14 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ## Project URL 4 | 5 | 6 | ## Description 7 | 8 | 9 | ## Why it should be included to `awesome-ios` (optional) 10 | 11 | ## Checklist 12 | 13 | 14 | - [ ] Only one project/change is in this pull request 15 | - [ ] Addition in chronological order (bottom of category) 16 | - [ ] Supports iOS 9 / tvOS 10 or later 17 | - [ ] Supports Swift 3 18 | - [ ] Has a commit from less than 2 years ago 19 | - [ ] Has a **clear** README in English 20 | -------------------------------------------------------------------------------- /Dangerfile: -------------------------------------------------------------------------------- 1 | # Ensure there is a summary for a pull request 2 | fail 'Please provide a summary in the Pull Request description' if github.pr_body.length < 5 3 | 4 | # Warn when there are merge commits in the diff 5 | warn 'Please rebase to get rid of the merge commits in this Pull Request' if git.commits.any? { |c| c.message =~ /^Merge branch 'master'/ } 6 | 7 | # Only one library per pull request 8 | warn 'Too many changes (when adding, please keep it to one project per Pull Request)' if git.insertions > 1 9 | 10 | # Warn if pull request is not updated 11 | warn 'Please update the Pull Request title to contain the library name' if github.pr_title.include? 'Update README.md' 12 | 13 | # Check links 14 | require 'json' 15 | results = File.read 'ab-results-README.md-markdown-table.json' 16 | j = JSON.parse results 17 | if j['error']==true 18 | fail j['title'] 19 | markdown j['message'] 20 | end 21 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 Vinicius Souza 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contribution Guidelines 2 | 3 | Please ensure your pull request adheres to the following guidelines: 4 | 5 | - Search previous suggestions before making a new one, as yours may be a duplicate. 6 | - **Make an individual pull request for each suggestion.** 7 | - Use the following format: `[PACKAGE](LINK) - DESCRIPTION.` 8 | - New categories, or improvements to the existing categorization are welcome. 9 | - Keep descriptions short and simple, but descriptive. 10 | - End all descriptions with a full stop/period. 11 | - Check your spelling and grammar. 12 | - Make sure that your suggestion is positioned as the last item category. 13 | - Make sure your text editor is set to remove trailing whitespace. 14 | - If project has been made in Swift, add :large_orange_diamond: in the end of description. 15 | - If project is a Swift Extension, add :large_orange_diamond:[e] in the end of description. 16 | - If project has been made for Apple Watch, add ⌚ in the end of description. 17 | 18 | #### Deleting 19 | 20 | Typical reasons for deleting project: 21 | 22 | - No updates / no longer works 23 | - Deprecated 24 | - Lacks license 25 | 26 | #### Projects are ineligible if: 27 | - Doesn't have commit for more than two years. 28 | - Doesn't support iOS 9 or later. 29 | - Doesn't support Swift 3. 30 | - Only have README in another language (Chinese, Japanese, Portuguese and etc) 31 | - We cannot clearly understand the objective. 32 | - Without clear README 33 | 34 | Your contributions are always welcome! Thank you for your suggestions! :smiley: 35 | -------------------------------------------------------------------------------- /helloworld.swift: -------------------------------------------------------------------------------- 1 | print("Hello iOS Developers!") 2 | print("awesome-ios") 3 | print("awesome-ios") 4 | print("awesome-ios") 5 | print("awesome-ios") 6 | print("awesome-ios") 7 | print("awesome-ios") 8 | print("awesome-ios") 9 | print("awesome-ios") 10 | print("awesome-ios") 11 | print("awesome-ios") 12 | print("awesome-ios") 13 | print("awesome-ios") 14 | print("awesome-ios") 15 | print("awesome-ios") 16 | print("awesome-ios") 17 | print("awesome-ios") 18 | print("awesome-ios") 19 | print("awesome-ios") 20 | print("awesome-ios") 21 | print("awesome-ios") 22 | print("awesome-ios") 23 | print("awesome-ios") 24 | print("awesome-ios") 25 | print("awesome-ios") 26 | print("awesome-ios") 27 | print("awesome-ios") 28 | print("awesome-ios") 29 | print("awesome-ios") 30 | print("awesome-ios") 31 | print("awesome-ios") 32 | print("awesome-ios") 33 | print("awesome-ios") 34 | print("awesome-ios") 35 | print("awesome-ios") 36 | print("awesome-ios") 37 | print("awesome-ios") 38 | print("awesome-ios") 39 | print("awesome-ios") 40 | print("awesome-ios") 41 | print("awesome-ios") 42 | print("awesome-ios") 43 | print("awesome-ios") 44 | print("awesome-ios") 45 | print("awesome-ios") 46 | print("awesome-ios") 47 | print("awesome-ios") 48 | print("awesome-ios") 49 | print("awesome-ios") 50 | print("awesome-ios") 51 | print("awesome-ios") 52 | print("awesome-ios") 53 | print("awesome-ios") 54 | print("awesome-ios") 55 | print("awesome-ios") 56 | print("awesome-ios") 57 | print("awesome-ios") 58 | print("awesome-ios") 59 | print("awesome-ios") 60 | print("awesome-ios") 61 | print("awesome-ios") 62 | print("awesome-ios") 63 | print("awesome-ios") 64 | print("awesome-ios") 65 | print("awesome-ios") 66 | print("awesome-ios") 67 | print("awesome-ios") 68 | print("awesome-ios") 69 | print("awesome-ios") 70 | print("awesome-ios") 71 | print("awesome-ios") 72 | print("awesome-ios") 73 | print("awesome-ios") 74 | print("awesome-ios") 75 | print("awesome-ios") 76 | print("awesome-ios") 77 | print("awesome-ios") 78 | print("awesome-ios") 79 | print("awesome-ios") 80 | print("awesome-ios") 81 | print("awesome-ios") 82 | print("awesome-ios") 83 | print("awesome-ios") 84 | print("awesome-ios") 85 | print("awesome-ios") 86 | print("awesome-ios") 87 | print("awesome-ios") 88 | print("awesome-ios") 89 | print("awesome-ios") 90 | print("awesome-ios") 91 | print("awesome-ios") 92 | print("awesome-ios") 93 | print("awesome-ios") 94 | print("awesome-ios") 95 | print("awesome-ios") 96 | print("awesome-ios") 97 | print("awesome-ios") 98 | print("awesome-ios") 99 | print("awesome-ios") 100 | print("awesome-ios") 101 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | In the interest of fostering an open and welcoming environment, we as 6 | contributors and maintainers pledge to making participation in our project and 7 | our community a harassment-free experience for everyone, regardless of age, body 8 | size, disability, ethnicity, gender identity and expression, level of experience, 9 | nationality, personal appearance, race, religion, or sexual identity and 10 | orientation. 11 | 12 | ## Our Standards 13 | 14 | Examples of behavior that contributes to creating a positive environment 15 | include: 16 | 17 | * Using welcoming and inclusive language 18 | * Being respectful of differing viewpoints and experiences 19 | * Gracefully accepting constructive criticism 20 | * Focusing on what is best for the community 21 | * Showing empathy towards other community members 22 | 23 | Examples of unacceptable behavior by participants include: 24 | 25 | * The use of sexualized language or imagery and unwelcome sexual attention or 26 | advances 27 | * Trolling, insulting/derogatory comments, and personal or political attacks 28 | * Public or private harassment 29 | * Publishing others' private information, such as a physical or electronic 30 | address, without explicit permission 31 | * Other conduct which could reasonably be considered inappropriate in a 32 | professional setting 33 | 34 | Critical examination of beliefs, including critical commentary on another person’s views, does not, by itself, constitute hostile conduct, harassment, or trolling. One of the underlying rationales of this Code of Conduct is to promote the free exchange of ideas, not to inhibit it. 35 | 36 | ## Our Responsibilities 37 | 38 | Project maintainers are responsible for clarifying the standards of acceptable 39 | behavior and are expected to take appropriate and fair corrective action in 40 | response to any instances of unacceptable behavior. 41 | 42 | Project maintainers have the right and responsibility to remove, edit, or 43 | reject comments, commits, code, wiki edits, issues, and other contributions 44 | that are not aligned to this Code of Conduct, or to ban temporarily or 45 | permanently any contributor for other behaviors that they deem inappropriate, 46 | threatening, offensive, or harmful. 47 | 48 | ## Scope 49 | 50 | This Code of Conduct applies both within project spaces and in public spaces 51 | when an individual is representing the project or its community. Examples of 52 | representing a project or community include using an official project e-mail 53 | address, posting via an official social media account, or acting as an appointed 54 | representative at an online or offline event. Representation of a project may be 55 | further defined and clarified by project maintainers. 56 | 57 | ## Enforcement 58 | 59 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 60 | reported by contacting the project team at dev@lucasfarah.me. All 61 | complaints will be reviewed and investigated and will result in a response that 62 | is deemed necessary and appropriate to the circumstances. The project team is 63 | obligated to maintain confidentiality with regard to the reporter of an incident. 64 | Further details of specific enforcement policies may be posted separately. 65 | 66 | Project maintainers who do not follow or enforce the Code of Conduct in good 67 | faith may face temporary or permanent repercussions as determined by other 68 | members of the project's leadership. 69 | 70 | ## Attribution 71 | 72 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, 73 | available at [http://contributor-covenant.org/version/1/4][version] 74 | 75 | [homepage]: http://contributor-covenant.org 76 | [version]: http://contributor-covenant.org/version/1/4/ 77 | --------------------------------------------------------------------------------