├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── GEMS.md ├── LICENSE.md └── README.md /.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | language: node_js 3 | node_js: 4 | - "stable" 5 | before_script: 6 | - "npm install -g markdown-link-check" 7 | script: 8 | - "markdown-link-check ./README.md" 9 | - "markdown-link-check ./GEMS.md" 10 | notifications: 11 | webhooks: 12 | urls: 13 | - https://www.travisbuddy.com/ 14 | on_success: never 15 | -------------------------------------------------------------------------------- /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, sex characteristics, gender identity and expression, 9 | level of experience, education, socio-economic status, nationality, personal 10 | appearance, race, religion, or sexual identity and 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 | ## Our Responsibilities 35 | 36 | Project maintainers are responsible for clarifying the standards of acceptable 37 | behavior and are expected to take appropriate and fair corrective action in 38 | response to any instances of unacceptable behavior. 39 | 40 | Project maintainers have the right and responsibility to remove, edit, or 41 | reject comments, commits, code, wiki edits, issues, and other contributions 42 | that are not aligned to this Code of Conduct, or to ban temporarily or 43 | permanently any contributor for other behaviors that they deem inappropriate, 44 | threatening, offensive, or harmful. 45 | 46 | ## Scope 47 | 48 | This Code of Conduct applies both within project spaces and in public spaces 49 | when an individual is representing the project or its community. Examples of 50 | representing a project or community include using an official project e-mail 51 | address, posting via an official social media account, or acting as an appointed 52 | representative at an online or offline event. Representation of a project may be 53 | further defined and clarified by project maintainers. 54 | 55 | ## Enforcement 56 | 57 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 58 | reported by contacting the project team at [INSERT EMAIL ADDRESS]. All 59 | complaints will be reviewed and investigated and will result in a response that 60 | is deemed necessary and appropriate to the circumstances. The project team is 61 | obligated to maintain confidentiality with regard to the reporter of an incident. 62 | Further details of specific enforcement policies may be posted separately. 63 | 64 | Project maintainers who do not follow or enforce the Code of Conduct in good 65 | faith may face temporary or permanent repercussions as determined by other 66 | members of the project's leadership. 67 | 68 | ## Attribution 69 | 70 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, 71 | available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html 72 | 73 | [homepage]: https://www.contributor-covenant.org 74 | 75 | For answers to common questions about this code of conduct, see 76 | https://www.contributor-covenant.org/faq 77 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing to Ruby/Rails Resources 2 | 3 | Thanks for taking the time to contribute :+1: 4 | 5 | The following is a set of guidelines for contributing to Awesome Lucky. These are just guidelines, not rules, use your best judgment and feel free to propose changes to this project. Also, please read our [code of conduct](https://github.com/andrewmcodes/ruby-rails-resources/blob/master/CODE_OF_CONDUCT.md) prior to submitting an issue or pull request. 6 | 7 | Thanks! :heart: 8 | 9 | ## How Can I Contribute 10 | 11 | ### Creating Issues 12 | 13 | Do you know any cool Lucky project that isn't listed here? It isn't also on the [open issues](https://github.com/andrewmcodes/ruby-rails-resources/issues) or [pull requests](https://github.com/andrewmcodes/ruby-rails-resources/pulls)? 14 | Please create a new issue or submit a pull request, we will be happy to receive it! 15 | 16 | ### Submitting Pull Requests 17 | 18 | Feel free to take any open issue, just make sure that you follow the contribution guidelines. 19 | 20 | ### Voting and commenting 21 | 22 | Just use GitHub reactions and comments to express your feelings/experience about open suggestions (additions or removals). 23 | 24 | ## Contribution Guidelines 25 | 26 | - Please search previous suggestions before making a new one, as yours may be a duplicate. 27 | - Use the following format: `[Library](url) - Description.` 28 | - The link should be the name of the package or project. 29 | - Links and categories should be sorted alphabetically. 30 | - Add one link per pull-request. 31 | - Keep descriptions concise, clear and simple, and end them with a period/stop. 32 | - Check your spelling and grammar. 33 | - New categories, or improvements to the existing ones are also welcome. 34 | - Make sure your text editor is set to remove trailing whitespace. 35 | 36 | ## Quality standard 37 | 38 | To stay on the list, projects should follow these quality standards: 39 | 40 | - Generally used and useful to the community. 41 | - Actively maintained (even if that just means take care of open issues). 42 | - Stable. 43 | - Documented. 44 | - Tests. 45 | -------------------------------------------------------------------------------- /GEMS.md: -------------------------------------------------------------------------------- 1 | 2 | - [:gem: Gems](#gem-gems) 3 | - [CLI](#cli) 4 | - [CMS](#cms) 5 | - [CSS/Styling/UI](#cssstylingui) 6 | - [File Management](#file-management) 7 | - [Javascript Related](#javascript-related) 8 | - [Authentication & Authorization](#authentication--authorization) 9 | - [Documentation](#documentation) 10 | - [Editor Specific & Intellisense](#editor-specific--intellisense) 11 | - [Web Crawling](#web-crawling) 12 | - [CSV](#csv) 13 | - [Profiling, Benchmarks, & Debugging](#profiling-benchmarks--debugging) 14 | - [Jobs](#jobs) 15 | - [Structs](#structs) 16 | - [Devops](#devops) 17 | - [Shell Scripts/Command Line Tools](#shell-scriptscommand-line-tools) 18 | - [Notifications](#notifications) 19 | - [Integrations](#integrations) 20 | - [Forms](#forms) 21 | - [Code Quality](#code-quality) 22 | - [Locale/Accessibility](#localeaccessibility) 23 | - [Database](#database) 24 | - [Templating Languages & Frontend](#templating-languages--frontend) 25 | - [Git & Github](#git--github) 26 | - [Email](#email) 27 | - [Hacking](#hacking) 28 | - [Pagination](#pagination) 29 | - [Automation](#automation) 30 | - [Random](#random) 31 | - [Testing](#testing) 32 | - [Security](#security) 33 | - [Date & Time](#date--time) 34 | - [Feature Flags](#feature-flags) 35 | - [Multitenant](#multitenant) 36 | - [Analytics](#analytics) 37 | - [Secrets & Keys](#secrets--keys) 38 | - [Search & Filter](#search--filter) 39 | - [Payment](#payment) 40 | - [Adobe](#adobe) 41 | - [AI & ML](#ai--ml) 42 | - [DSL & API](#dsl--api) 43 | - [SEO](#seo) 44 | - [Decorators & Presenters](#decorators--presenters) 45 | - [URL's & Linking](#urls--linking) 46 | 47 | # :gem: Gems 48 | 49 | ## CLI 50 | 51 | 1. [highline](https://github.com/JEG2/highline) 52 | 2. [slop](https://github.com/leejarvis/slop) 53 | 3. [awesome-print](https://github.com/awesome-print/awesome_print) 54 | 4. [tty](https://github.com/piotrmurach/tty) 55 | 56 | ## CMS 57 | 58 | 1. [Comfortable Mexican Sofa](https://github.com/comfy/comfortable-mexican-sofa) 59 | 2. [ActiveAdmin](https://activeadmin.info/) 60 | 61 | ## CSS/Styling/UI 62 | 63 | 1. [twitter-bootstrap-rails](https://github.com/seyhunak/twitter-bootstrap-rails) 64 | 2. [devise-bootstrap-views](https://github.com/hisea/devise-bootstrap-views) 65 | 3. [bootstrap-datepicker-rails](https://github.com/Nerian/bootstrap-datepicker-rails) 66 | 4. [bootstrap-rubygem](https://github.com/twbs/bootstrap-rubygem) 67 | 5. [autoprefixer-rails](https://github.com/ai/autoprefixer-rails) 68 | 6. [csscss](https://github.com/zmoazeni/csscss) 69 | 7. [kss](https://github.com/kneath/kss) 70 | 8. [xray-rails](https://github.com/brentd/xray-rails) 71 | 9. [font-awesome-rails](https://github.com/bokmann/font-awesome-rails) 72 | 10. [data-confirm-modal](https://github.com/ifad/data-confirm-modal) 73 | 74 | ## File Management 75 | 76 | 1. [Paperclip](https://github.com/thoughtbot/paperclip) 77 | 78 | ## Javascript Related 79 | 80 | 1. [Webpacker](https://github.com/rails/webpacker) 81 | 2. [webpacker-react](https://github.com/renchap/webpacker-react) 82 | 3. [js-routes](https://github.com/railsware/js-routes) 83 | 4. [react_on_rails](https://github.com/shakacode/react_on_rails) 84 | 85 | ## Authentication & Authorization 86 | 87 | 1. [Devise](https://github.com/plataformatec/devise) 88 | 2. [Clearance](https://github.com/thoughtbot/clearance) 89 | 3. [Omniauth-amazon](https://github.com/wingrunr21/omniauth-amazon) 90 | 4. [Omniauth-dribbble](https://github.com/railsware/omniauth-dribbble) 91 | 5. [petergate](https://github.com/elorest/petergate) 92 | 6. [devise_invitable](https://github.com/scambra/devise_invitable) 93 | 7. [devise_masquerade](https://github.com/oivoodoo/devise_masquerade) 94 | 8. [doorkeeper](https://github.com/doorkeeper-gem/doorkeeper) 95 | 9. [ruby-saml](https://github.com/onelogin/ruby-saml) 96 | 10. [pundit](https://github.com/varvet/pundit) 97 | 98 | ## Documentation 99 | 100 | 1. [yard](https://github.com/lsegal/yard/) 101 | 2. [annotate_gem](https://github.com/ivantsepp/annotate_gem) 102 | 3. [annotate_models](https://github.com/ctran/annotate_models) 103 | 104 | ## Editor Specific & Intellisense 105 | 106 | 1. [vscode-ruby](https://github.com/rubyide/vscode-ruby) 107 | 2. [qira](https://github.com/qirahq/qira) 108 | 109 | ## Web Crawling 110 | 111 | 1. [spidr](https://github.com/postmodern/spidr) 112 | 2. [wombat](https://github.com/felipecsl/wombat) 113 | 114 | ## CSV 115 | 116 | 1. [csvreader](https://github.com/csvreader/csvreader) 117 | 118 | ## Profiling, Benchmarks, & Debugging 119 | 120 | 1. [rbspy](https://github.com/rbspy/rbspy) 121 | 2. [rack-mini-profiler](https://github.com/MiniProfiler/rack-mini-profiler) 122 | 3. [memory_profiler](https://github.com/SamSaffron/memory_profiler) 123 | 4. [peek](https://github.com/peek/peek) 124 | 5. [rails_panel](https://github.com/dejan/rails_panel) 125 | 6. [better_errors](https://github.com/BetterErrors/better_errors) 126 | 7. [oink](https://github.com/noahd1/oink) 127 | 8. [bullet](https://github.com/flyerhzm/bullet) 128 | 9. [pry-rails](https://github.com/rweng/pry-rails) 129 | 130 | ## Jobs 131 | 132 | 1. [sidekiq-scheduler](https://github.com/moove-it/sidekiq-scheduler) 133 | 2. [whenever](https://github.com/javan/whenever) 134 | 135 | ## Structs 136 | 137 | 1. [opt_struct](https://github.com/carlzulauf/opt_struct) 138 | 139 | ## Devops 140 | 141 | 1. [puppet](https://github.com/puppetlabs/puppet) 142 | 2. [chef cookbook for docker](https://github.com/chef-cookbooks/docker) 143 | 3. [aws-opsworks-cookbooks](https://github.com/aws/opsworks-cookbooks) 144 | 4. [chef](https://github.com/chef/chef) 145 | 146 | ## Shell Scripts/Command Line Tools 147 | 148 | 1. [fucking_shell_scripts](https://github.com/brandonhilkert/fucking_shell_scripts) 149 | 2. [tugboat](https://github.com/petems/tugboat) 150 | 3. [thor](https://github.com/erikhuda/thor) 151 | 4. [guard](https://github.com/guard/guard) 152 | 5. [tmuxinator](https://github.com/tmuxinator/tmuxinator) 153 | 6. [cli-ui](https://github.com/Shopify/cli-ui) 154 | 7. [colorls](https://github.com/athityakumar/colorls) 155 | 156 | ## Notifications 157 | 158 | 1. [rpush](https://github.com/rpush/rpush) 159 | 160 | ## Integrations 161 | 162 | 1. [google-drive-ruby](https://github.com/gimite/google-drive-ruby) 163 | 2. [google-maps-for-rails](https://github.com/apneadiving/Google-Maps-for-Rails) 164 | 3. [unsplash_rb](https://github.com/unsplash/unsplash_rb) 165 | 166 | ## Forms 167 | 168 | 1. [recaptcha](https://github.com/ambethia/recaptcha) 169 | 170 | ## Code Quality 171 | 172 | 1. [pronto](https://github.com/prontolabs/pronto) 173 | 2. [reek](https://github.com/troessner/reek) 174 | 3. [danger](https://github.com/danger/danger) 175 | 4. [simplecov](https://github.com/colszowka/simplecov) 176 | 5. [rubocop](https://github.com/rubocop-hq/rubocop) 177 | 6. [rails_best_practices](https://github.com/flyerhzm/rails_best_practices) 178 | 179 | ## Locale/Accessibility 180 | 181 | 1. [rails-i18n](https://github.com/svenfuchs/rails-i18n) 182 | 183 | ## Database 184 | 185 | 1. [pghero](https://github.com/ankane/pghero) 186 | 2. [graphql-ruby](https://github.com/rmosolgo/graphql-ruby) 187 | 3. [graphql-ruby-client](https://github.com/Shopify/graphql-ruby-client) 188 | 4. [seed_dump](https://github.com/rroblak/seed_dump) 189 | 5. [ruby-pg](https://github.com/ged/ruby-pg) 190 | 6. [mysql2](https://github.com/brianmario/mysql2) 191 | 192 | ## Templating Languages & Frontend 193 | 194 | 1. [slim](https://github.com/slim-template/slim) 195 | 2. [cells](https://github.com/trailblazer/cells) 196 | 3. [draper](https://github.com/drapergem/draper) 197 | 4. [components](https://github.com/varvet/components) 198 | 5. [haml-rails](https://github.com/indirect/haml-rails) 199 | 6. [haml](https://github.com/haml/haml) 200 | 201 | ## Git & Github 202 | 203 | 1. [github-changelog-generator](https://github.com/github-changelog-generator/github-changelog-generator) 204 | 2. [styleguide-git-commit-message](https://github.com/slashsbin/styleguide-git-commit-message) 205 | 3. [octobox](https://github.com/octobox/octobox) 206 | 4. [git-god](https://github.com/gorosgobe/git-god) 207 | 5. [github-changelog-generator](https://github.com/github-changelog-generator/github-changelog-generator) 208 | 6. [octokit.rb](https://github.com/octokit/octokit.rb) 209 | 210 | ## Email 211 | 212 | 1. [postal](https://github.com/atech/postal) 213 | 2. [mailcatcher](https://github.com/sj26/mailcatcher) 214 | 215 | ## Hacking 216 | 217 | 1. [hacker101](https://github.com/Hacker0x01/hacker101) 218 | 2. [metasploit-framework](https://github.com/rapid7/metasploit-framework) 219 | 220 | ## Pagination 221 | 222 | 1. [pagy](https://github.com/ddnexus/pagy) 223 | 2. [kaminari](https://github.com/kaminari/kaminari) 224 | 225 | ## Automation 226 | 227 | 1. [fastlane](https://github.com/fastlane/fastlane) 228 | 229 | ## Random 230 | 231 | 1. [stock_quote](https://github.com/tyrauber/stock_quote) 232 | 2. [ancestry](https://github.com/stefankroes/ancestry) 233 | 3. [browser-sniffer](https://github.com/Shopify/browser_sniffer) 234 | 235 | ## Testing 236 | 237 | 1. [fabrication](https://github.com/paulelliott/fabrication) 238 | 2. [factory_bot_rails](https://github.com/thoughtbot/factory_bot_rails) 239 | 3. [faker](https://github.com/stympy/faker) 240 | 241 | ## Security 242 | 243 | 1. [brakeman](https://github.com/varvet/pundit) 244 | 2. [guard-brakeman](https://github.com/guard/guard-brakeman) 245 | 246 | ## Date & Time 247 | 248 | 1. [ice_cube](https://github.com/seejohnrun/ice_cube) 249 | 250 | ## Feature Flags 251 | 252 | 1. [flipper](https://github.com/jnunemaker/flipper) 253 | 254 | ## Multitenant 255 | 256 | 1. [apartment](https://github.com/influitive/apartment) 257 | 2. [milia](https://github.com/jekuno/milia) 258 | 3. [activerecord-multi-tenant](https://github.com/citusdata/activerecord-multi-tenant) 259 | 260 | ## Analytics 261 | 262 | 1. [ahoy](https://github.com/ankane/ahoy) 263 | 264 | ## Secrets & Keys 265 | 266 | 1. [figaro](https://github.com/laserlemon/figaro) 267 | 268 | ## Search & Filter 269 | 270 | 1. [searchkick](https://github.com/ankane/searchkick) 271 | 2. [filterrific](https://github.com/jhund/filterrific) 272 | 273 | ## Payment 274 | 275 | 1. [stripe](https://github.com/stripe/stripe-ruby) 276 | 277 | ## Adobe 278 | 279 | 1. [psd.rb](https://github.com/layervault/psd.rb) 280 | 281 | ## AI & ML 282 | 283 | 1. [ruby-tesseract-ocr](https://github.com/meh/ruby-tesseract-ocr) 284 | 285 | ## DSL & API 286 | 287 | 1. [retriable](https://github.com/kamui/retriable) 288 | 289 | ## SEO 290 | 291 | 1. [sitemap_generator](https://github.com/kjvarga/sitemap_generator) 292 | 293 | ## Decorators & Presenters 294 | 295 | 1. [name_of_person](https://github.com/basecamp/name_of_person) 296 | 297 | ## URL's & Linking 298 | 299 | 1. [friendly_id](https://github.com/norman/friendly_id) 300 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | ## creative commons 2 | 3 | # CC0 1.0 Universal 4 | 5 | CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED HEREUNDER. 6 | 7 | ### Statement of Purpose 8 | 9 | The laws of most jurisdictions throughout the world automatically confer exclusive Copyright and Related Rights (defined below) upon the creator and subsequent owner(s) (each and all, an "owner") of an original work of authorship and/or a database (each, a "Work"). 10 | 11 | Certain owners wish to permanently relinquish those rights to a Work for the purpose of contributing to a commons of creative, cultural and scientific works ("Commons") that the public can reliably and without fear of later claims of infringement build upon, modify, incorporate in other works, reuse and redistribute as freely as possible in any form whatsoever and for any purposes, including without limitation commercial purposes. These owners may contribute to the Commons to promote the ideal of a free culture and the further production of creative, cultural and scientific works, or to gain reputation or greater distribution for their Work in part through the use and efforts of others. 12 | 13 | For these and/or other purposes and motivations, and without any expectation of additional consideration or compensation, the person associating CC0 with a Work (the "Affirmer"), to the extent that he or she is an owner of Copyright and Related Rights in the Work, voluntarily elects to apply CC0 to the Work and publicly distribute the Work under its terms, with knowledge of his or her Copyright and Related Rights in the Work and the meaning and intended legal effect of CC0 on those rights. 14 | 15 | 1. **Copyright and Related Rights.** A Work made available under CC0 may be protected by copyright and related or neighboring rights ("Copyright and Related Rights"). Copyright and Related Rights include, but are not limited to, the following: 16 | 17 | i. the right to reproduce, adapt, distribute, perform, display, communicate, and translate a Work; 18 | 19 | ii. moral rights retained by the original author(s) and/or performer(s); 20 | 21 | iii. publicity and privacy rights pertaining to a person's image or likeness depicted in a Work; 22 | 23 | iv. rights protecting against unfair competition in regards to a Work, subject to the limitations in paragraph 4(a), below; 24 | 25 | v. rights protecting the extraction, dissemination, use and reuse of data in a Work; 26 | 27 | vi. database rights (such as those arising under Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, and under any national implementation thereof, including any amended or successor version of such directive); and 28 | 29 | vii. other similar, equivalent or corresponding rights throughout the world based on applicable law or treaty, and any national implementations thereof. 30 | 31 | 2. **Waiver.** To the greatest extent permitted by, but not in contravention of, applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and unconditionally waives, abandons, and surrenders all of Affirmer's Copyright and Related Rights and associated claims and causes of action, whether now known or unknown (including existing as well as future claims and causes of action), in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each member of the public at large and to the detriment of Affirmer's heirs and successors, fully intending that such Waiver shall not be subject to revocation, rescission, cancellation, termination, or any other legal or equitable action to disrupt the quiet enjoyment of the Work by the public as contemplated by Affirmer's express Statement of Purpose. 32 | 33 | 3. **Public License Fallback.** Should any part of the Waiver for any reason be judged legally invalid or ineffective under applicable law, then the Waiver shall be preserved to the maximum extent permitted taking into account Affirmer's express Statement of Purpose. In addition, to the extent the Waiver is so judged Affirmer hereby grants to each affected person a royalty-free, non transferable, non sublicensable, non exclusive, irrevocable and unconditional license to exercise Affirmer's Copyright and Related Rights in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the "License"). The License shall be deemed effective as of the date CC0 was applied by Affirmer to the Work. Should any part of the License for any reason be judged legally invalid or ineffective under applicable law, such partial invalidity or ineffectiveness shall not invalidate the remainder of the License, and in such case Affirmer hereby affirms that he or she will not (i) exercise any of his or her remaining Copyright and Related Rights in the Work or (ii) assert any associated claims and causes of action with respect to the Work, in either case contrary to Affirmer's express Statement of Purpose. 34 | 35 | 4. **Limitations and Disclaimers.** 36 | 37 | a. No trademark or patent rights held by Affirmer are waived, abandoned, surrendered, licensed or otherwise affected by this document. 38 | 39 | b. Affirmer offers the Work as-is and makes no representations or warranties of any kind concerning the Work, express, implied, statutory or otherwise, including without limitation warranties of title, merchantability, fitness for a particular purpose, non infringement, or the absence of latent or other defects, accuracy, or the present or absence of errors, whether or not discoverable, all to the greatest extent permissible under applicable law. 40 | 41 | c. Affirmer disclaims responsibility for clearing rights of other persons that may apply to the Work or any use thereof, including without limitation any person's Copyright and Related Rights in the Work. Further, Affirmer disclaims responsibility for obtaining any necessary consents, permissions or other rights required for any use of the Work. 42 | 43 | d. Affirmer understands and acknowledges that Creative Commons is not a party to this document and has no duty or obligation with respect to this CC0 or use of the Work. 44 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Ruby & Ruby on Rails Resources :gem: 2 | 3 | - [Ruby & Ruby on Rails Resources :gem:](#ruby--ruby-on-rails-resources-gem) 4 | - [:tv: Free Courses](#tv-free-courses) 5 | - [:tv: Rails Screencasts](#tv-rails-screencasts) 6 | - [:bullettrain_front: Official Rails Resources](#bullettrain_front-official-rails-resources) 7 | - [:microphone: Podcasts](#microphone-podcasts) 8 | - [:book: Books & Ebooks](#book-books--ebooks) 9 | - [:microscope: Case Studies](#microscope-case-studies) 10 | - [:computer: Blogs](#computer-blogs) 11 | - [:books: Tutorials & Guides](#books-tutorials--guides) 12 | - [:arrows_counterclockwise: Random Links](#arrows_counterclockwise-random-links) 13 | - [:no_entry: Common Errors](#no_entry-common-errors) 14 | - [:runner: Code Practice](#runner-code-practice) 15 | - [:cl: Version Managers](#cl-version-managers) 16 | - [:tv: Youtube Videos & Series](#tv-youtube-videos--series) 17 | - [:nail_care: Style Guides](#nail_care-style-guides) 18 | - [:gift: Example Applications & Composers](#gift-example-applications--composers) 19 | - [:cop: Security](#cop-security) 20 | - [:gem: Gems](#gem-gems) 21 | 22 | ## :tv: Free Courses 23 | 24 | 1. [Upcase](https://thoughtbot.com/upcase) 25 | 2. [How to build a ruby gem](https://brandonhilkert.com/courses/build-a-ruby-gem/?utm_source=course-gem&utm_medium=email&utm_campaign=lesson5) 26 | 3. [Code Academy](https://www.codecademy.com/) 27 | 4. [Pluralsight](https://www.pluralsight.com/search?q=ruby) 28 | 5. [Ruby Koans](http://rubykoans.com/) 29 | 30 | ## :tv: Rails Screencasts 31 | 32 | 1. [Go Rails](https://gorails.com/) 33 | 2. [Drifting Ruby](https://www.driftingruby.com/) 34 | 3. [RailsCasts](http://railscasts.com/) 35 | 36 | ## :bullettrain_front: Official Rails Resources 37 | 38 | 1. [Rails API](https://api.rubyonrails.org/) 39 | 40 | ## :microphone: Podcasts 41 | 42 | 1. [awesome-geek-podcasts](https://github.com/guipdutra/awesome-geek-podcasts) 43 | 2. [ruby-rogues](https://devchat.tv/ruby-rogues/) 44 | 3. [ruby-testing-podcast](http://www.rubytestingpodcast.com/) 45 | 4. [Remote Ruby](https://remoteruby.transistor.fm/) 46 | 47 | ## :book: Books & Ebooks 48 | 49 | 1. [Engine Yard](https://info.engineyard.com/) 50 | 2. [progit](https://github.com/progit/progit) 51 | 3. [Ruby on Rails Tutorial (Rails 5)](https://www.railstutorial.org/) 52 | 4. [99 Bottles of OOP](https://www.sandimetz.com/products/) 53 | 5. [Practical Object-Oriented Design](https://www.sandimetz.com/products/) 54 | 6. [Build Awesome Command-Line Applications in Ruby](https://the-eye.eu/public/Books/IT%20Various/build_awesome_command-line_applications_in_ruby.pdf) 55 | 56 | ## :microscope: Case Studies 57 | 58 | 1. [Engine Yard](https://www.engineyard.com/customers/case-studies) 59 | 2. [Railsware](https://railsware.com/case-studies/) 60 | 61 | ## :computer: Blogs 62 | 63 | 1. [Engine Yard](https://www.engineyard.com/blog) 64 | 2. [Justin Weiss](https://www.justinweiss.com/) 65 | 3. [Today I Learned](https://til.hashrocket.com/) 66 | 4. [CodeShip](https://blog.codeship.com/) 67 | 5. [Thoughtbot](https://robots.thoughtbot.com/) 68 | 6. [Daniel P. Clark - Codeship](https://blog.codeship.com/author/danielclark/) 69 | 7. [Sandi Metz](https://www.sandimetz.com/blog/) 70 | 71 | ## :books: Tutorials & Guides 72 | 73 | 1. [To-do List API w/ GraphQL & Rails 5](https://www.codementor.io/karanjaeddy/build-a-to-do-list-api-with-graphql-api-rails-5-part-1-irjt1e7jm) 74 | 2. [S3 w/ Paperclip](https://devcenter.heroku.com/articles/paperclip-s3) 75 | 3. [Rails Girls Guides](http://guides.railsgirls.com/) 76 | 4. [Rails 5.2 w/ Bootstrap & Webpacker](https://gist.github.com/andyyou/834e82f5723fec9d2dc021fb7b819517) 77 | 5. [Bootstrap flash messages](https://coderwall.com/p/jzofog/ruby-on-rails-flash-messages-with-bootstrap)\ 78 | 6. [Creating Powerful Command Line Tools in Ruby](https://blog.codeship.com/creating-powerful-command-line-tools-in-ruby/) 79 | 7. [Introduction to Thor](https://www.sitepoint.com/introduction-thor/) 80 | 81 | ## :arrows_counterclockwise: Random Links 82 | 83 | 1. [Rubular](http://rubular.com/) 84 | 2. [awesome-ruby](https://github.com/markets/awesome-ruby) 85 | 3. [awesome-rails](https://github.com/ekremkaraca/awesome-rails) 86 | 4. [awesome-rails-gem](https://github.com/hothero/awesome-rails-gem) 87 | 5. [ruby-bookmarks](https://github.com/dreikanter/ruby-bookmarks) 88 | 6. [The Ruby Toolbox](https://www.ruby-toolbox.com/) 89 | 7. [rails-learning](https://github.com/sagarmrey/rails-learning) 90 | 91 | ## :no_entry: Common Errors 92 | 93 | 1. [Rubygems error](https://mycyberuniverse.com/web/how-fix-user-account-isnt-allowed-install-system-rubygems.html) 94 | 2. [Errno::ENOENT: No such file or director @rb_sysopen](https://www.youtube.com/watch?v=WqrcPT7qG4I) 95 | 96 | ## :runner: Code Practice 97 | 98 | 1. [Exercism](https://exercism.io/) 99 | 100 | ## :cl: Version Managers 101 | 102 | 1. [RVM](https://rvm.io/rvm/install) 103 | 2. [Rbenv](http://rbenv.org/) 104 | 3. [Truffleruby](https://github.com/oracle/truffleruby) 105 | 106 | ## :tv: Youtube Videos & Series 107 | 108 | 1. [Blog in Rails 5 - open-labs](https://www.youtube.com/watch?v=i2x995hm8r8) 109 | 2. [Ruby Thursday](https://www.youtube.com/channel/UCgbzly83EZoSVjBIf9sNw5A) 110 | 3. [Confreaks](https://www.youtube.com/channel/UCWnPjmqvljcafA0z2U1fwKQ) 111 | 4. [DHH](https://www.youtube.com/channel/UCUkM9uMpWatT7gVWShgtKFw) 112 | 5. [Web-Crunch](https://www.youtube.com/channel/UCzePijHDYnVHIXW6HYTL4dg) 113 | 6. [Mackenzie Child](https://www.youtube.com/user/mackenziechild) 114 | 115 | ## :nail_care: Style Guides 116 | 117 | 1. [Rubocop Ruby Style Guide](https://github.com/rubocop-hq/ruby-style-guide) 118 | 2. [Rubocop Rails Style Guide](https://github.com/rubocop-hq/rails-style-guide) 119 | 3. [Mountain View](https://github.com/devnacho/mountain_view) 120 | 4. [Thoughtbot](https://github.com/thoughtbot/guides) 121 | 5. [airbnb](https://github.com/airbnb/ruby) 122 | 6. [rails-react patterns](https://github.com/planningcenter/react-patterns) 123 | 7. [fast-ruby](https://github.com/JuanitoFatas/fast-ruby) 124 | 125 | ## :gift: Example Applications & Composers 126 | 127 | 1. [Twitter clone w/ Rails 5](https://github.com/toshimaru/RailsTwitterClone) 128 | 2. [hero-rails](https://github.com/frontted/hero-rails) 129 | 3. [rails_apps_composer](https://github.com/RailsApps/rails_apps_composer) 130 | 4. [rails-composer](https://github.com/RailsApps/rails-composer) 131 | 5. [diaspora](https://github.com/diaspora/diaspora) 132 | 6. [spree](https://github.com/spree/spree) 133 | 7. [zen-rails-base-app](https://github.com/brunofacca/zen-rails-base-app) 134 | 8. [snibox](https://github.com/snibox/snibox) 135 | 9. [brevidy](https://github.com/iwasrobbed/Brevidy) 136 | 10. [YooTewb](https://github.com/jalexy12/YooTewb) 137 | 11. [railscollab](https://github.com/jamesu/railscollab) 138 | 12. [projekt](https://github.com/justalever/projekt) 139 | 13. [jumpstart](https://github.com/excid3/jumpstart) 140 | 141 | ## :cop: Security 142 | 143 | 1. [rails-security-checklist](https://github.com/eliotsykes/rails-security-checklist) 144 | 2. [zen-rails-security-checklist](https://github.com/brunofacca/zen-rails-security-checklist) 145 | 3. [rails-sqli](https://rails-sqli.org/) 146 | 147 | ## :gem: Gems 148 | 149 | 1. [Gems](https://github.com/andrewmcodes/ruby-rails-resources/blob/master/GEMS.md) 150 | --------------------------------------------------------------------------------