Ruby

Open-source projects categorized as Ruby

Top 23 Ruby Open-Source Projects

  • awesome-interview-questions

    :octocat: A curated awesome list of lists of interview questions. Feel free to contribute! :mortar_board:

  • Project mention: ๐Ÿ’ผ 50 Tips to Land a Remote Tech Job Based on My 45-Day Journey to 2 Offers | dev.to | 2024-03-04

    Ah, and take this GitHub Repository link for an awesome list of interview questions!

  • Ruby on Rails

    Ruby on Rails

  • Project mention: Enabling Rails 7.0's New Framework Defaults | dev.to | 2024-05-18

    You may notice in the new_framework_defaults_7_0.rb file mentioning the impact of this change, which is cache invalidation. In order to gather some more information I looked at the ActiveSupport::Digest which basically has just 3 class methods, a setter & getter for hash_digest_class and the hexdigest method. Furthermore, I searched across the rails/rails repo to find the usage of ActiveSupport#hex_digest_class (if interested this link leads to the search results) to find most of its usage only around code that deals with caching. This included caching of views, active_record queries, http ETAGs and also cache keys for the cache store you have set e.g. redis, filestore etc.

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
  • Jekyll

    :globe_with_meridians: Jekyll is a blog-aware static site generator in Ruby

  • Project mention: On the road to ramen profitability ๐Ÿœ ๐Ÿ’ธ | dev.to | 2024-05-08

    A basic marketing site built-on Jekyll and hosted via Cloudflare Pages.

  • Discourse

    A platform for community discussion. Free, open, simple.

  • Project mention: Discord to Start Showing Ads for Gamers to Boost Revenue | news.ycombinator.com | 2024-04-01

    > Tell me another platform that is free, has realtime chat, voice and video, has stable service, allows sharing images and other media, with good ownership management... and is open source.

    Mattermost: https://mattermost.com/

    Rocket.Chat: https://www.rocket.chat/

    Nextcloud Talk: https://nextcloud.com/talk/

    Self hosting and some assembly required. I've run all of them on cheap VPSes to explore a Slack/Discord replacement, neither was mindblowing but all of them seemed okay (Nextcloud's offering was rather barebones, though).

    Audio and video support varies because getting those right is challenging, at best you'd just integrate with something like Jitsi, that one's actually pretty good for meetings and such: https://jitsi.org/ and has a cloud version too: https://meet.jit.si/ (yet people still go for Zoom and it's odd UI/UX choices)

    I actually rather liked forums back in the day, but I guess nobody will be setting up that many phpBB instances in the current year, though projects like Discourse also seem promising: https://www.discourse.org/

    I don't think many people at all will be leaving Discord, due to how entrenched the platform is (network effect): if you want people to help you with what you're working on, you go where they are, not vice versa.

  • open-source-mac-os-apps

    ๐Ÿš€ Awesome list of open source applications for macOS. https://t.me/s/opensourcemacosapps

  • Project mention: Favourite open-source apps? | /r/macapps | 2023-06-04

    There is a github repo with a list of Open source mac os apps

  • HomeBrew

    ๐Ÿบ The missing package manager for macOS (or Linux)

  • Project mention: Git 101 for Beginners: Learn Git Commands, Branching, and Collaboration | dev.to | 2024-05-18

    You can install homebrew if you already don't have it, then :

  • fastlane

    ๐Ÿš€ The easiest way to automate building and releasing your iOS and Android apps

  • Project mention: Supercharge Your Mobile Dev Skills: 10 Essential Tools for Max Efficiency | dev.to | 2024-01-14

    Fastlane: For mobile development, Fastlane is an automation tool that can automate the building and releasing of iOS and Android apps.

  • SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
  • Selenium WebDriver

    A browser automation framework and ecosystem.

  • Project mention: JS Toolbox 2024: Bundlers and Test Frameworks | dev.to | 2024-03-03

    Selenium is an extensively used open-source automation framework for web applications. It allows for cross-browser testing by automating browser actions, making it a staple tool for end-to-end testing in diverse web development environments.

  • Vagrant

    Vagrant is a tool for building and distributing development environments.

  • Project mention: How to Enable a Virtual Machine on Your Windows Laptop With Vagrant and Git Bash | dev.to | 2024-04-30

    Vagrant

  • Devise

    Flexible authentication solution for Rails with Warden.

  • Project mention: On the road to ramen profitability ๐Ÿœ ๐Ÿ’ธ | dev.to | 2024-05-08

    Users can signup and login via the Devise gem and create their organizations.

  • Gitlab CI

    GitLab CE Mirror | Please open new issues in our issue tracker on GitLab.com

  • Project mention: Gitlab Server Behind NGINX Reverse Proxy Manager Issue | /r/homelab | 2023-06-15

    ## https://github.com/gitlabhq/gitlabhq/issues/694

  • forem

    For empowering community ๐ŸŒฑ

  • Project mention: Deploying Forem on Render.com PromptZone.com | dev.to | 2024-04-30

    The journey of deploying an open-source software platform like forem can be complex and daunting, but with the right tools and services, it can also be remarkably rewarding. This article details my experience deploying Forem, the software behind the Dev.to, on Render.com, deploying Promptzone.com.

  • ruby

    The Ruby Programming Language

  • Project mention: Ruby 3.4.0 Preview1 Released | news.ycombinator.com | 2024-05-16
  • asdf

    Extendable version manager with support for Ruby, Node.js, Elixir, Erlang & more

  • Project mention: Instalando de maneira rรกpida e eficiente suas ferramentas no WSL. Pt-3 | dev.to | 2024-05-08
  • Le Wagon's Setup

    Setup instructions for Le Wagon's students on their first day of Web Development Bootcamp

  • Ruby style guide

    A community-driven Ruby coding style guide

  • Project mention: Services and tools to automatize development for the remote teams | dev.to | 2024-05-14

    Rubocop is the most popular linter we use in conjunction with Pronto. Out of the box, it enforces many of the guidelines outlined in the community Ruby Style Guide.

  • rbenv

    Manage your app's Ruby environment

  • Project mention: Ask HN: Is anybody getting value from AI Agents? How so? | news.ycombinator.com | 2024-03-31

    When I was technical blogging on how to learn from open-source code [1], I used it quite frequently to get unstuck and/or to figure out how to tease apart a large question into multiple smaller functions. For example, I had no idea how to break up this long `sed` command [2] into its constituent parts, so I plugged it into ChatGPT and asked it to break down the code for me. I then Googled the different parts to confirm that ChatGPT wasn't leading me astray.

    If I had asked StackOverflow the same question, it would have been quickly closed as being not broadly applicable enough (since this `sed` command is quite specific to its use case). After ChatGPT broke the code apart for me, I was able to ask StackOverflow a series of more discrete, more broadly-applicable questions and get a human answer.

    TL;DR- I quite like ChatGPT as a search engine when "you don't know what you don't know", and getting unblocked means being pointed in the right direction.

    1. https://www.richie.codes/shell

    2. https://github.com/rbenv/rbenv/blob/e8b7a27ee67a5751b899215b...

  • Postal

    ๐Ÿ“ฎ A fully featured open source mail delivery platform for incoming & outgoing e-mail

  • Project mention: Postal: Open-source mail delivery platform for incoming and outgoing email | news.ycombinator.com | 2024-03-13
  • Gollum

    A simple, Git-powered wiki with a local frontend and support for many kinds of markup and content.

  • Project mention: Can Git or any other VCS be used as a database instead of SQL/NoSQL ones? Have you ever seen such a thing? | /r/AskProgramming | 2023-12-07

    Arguably something like ikiwiki or gollum is doing this. These are both wikis that use git as their backend 'database'. I happen to like wikis like this a lot better over wikis that store their data in mysql or some other traditional SQL backend.

  • diaspora*

    A privacy-aware, distributed, open source social network.

  • Project mention: Diaspora is a decentralized, federated alternative to Facebook that anyone can join and contribute to | /r/InnerNet | 2023-12-07
  • awesome-ruby

    ๐Ÿ’Ž A collection of awesome Ruby libraries, tools, frameworks and software

  • homebrew-core

    ๐Ÿป Default formulae for the missing package manager for macOS (or Linux)

  • Project mention: Is Go Used in Production more than Rust ? | dev.to | 2024-04-26

    $ brew info eza ==> eza: stable 0.18.13 (bottled) Modern, maintained replacement for ls https://github.com/eza-community/eza Not installed From: https://github.com/Homebrew/homebrew-core/blob/HEAD/Formula/e/eza.rb License: MIT ==> Dependencies Build: pandoc โœ˜, pkg-config โœ”, rust โœ˜ Required: libgit2 โœ˜ ==> Analytics install: 12,792 (30 days), 38,295 (90 days), 68,375 (365 days) install-on-request: 12,790 (30 days), 38,293 (90 days), 68,375 (365 days) build-error: 0 (30 days)

  • Sidekiq

    Simple, efficient background processing for Ruby

  • Project mention: Hanami and HTMX - progress bar | dev.to | 2024-05-07

    Hi there! I want to show off a little feature I made using hanami, htmx and a little bit of redis + sidekiq.

  • SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
NOTE: The open source projects on this list are ordered by number of github stars. The number of mentions indicates repo mentiontions in the last 12 Months or since we started tracking (Dec 2020).

Ruby related posts

  • Which AI feature would you want MOST from your project management tool?

    1 project | dev.to | 20 May 2024
  • Rdkafka: Modern Kafka client library for Ruby based on librdkafka

    1 project | news.ycombinator.com | 20 May 2024
  • Cloud Build Setup with Private Github Repos and Submodules

    1 project | dev.to | 19 May 2024
  • Create partial anonymized dumps of your database using your app model relations

    1 project | news.ycombinator.com | 19 May 2024
  • CI/CD to automate deployments to Kubernetes on DigitalOcean using Github Actions

    4 projects | dev.to | 18 May 2024
  • Two Views of IBM Santa Teresa Lab โ€“ San Jose, California (1997)

    1 project | news.ycombinator.com | 18 May 2024
  • Git 101 for Beginners: Learn Git Commands, Branching, and Collaboration

    2 projects | dev.to | 18 May 2024
  • A note from our sponsor - SaaSHub
    www.saashub.com | 20 May 2024
    SaaSHub helps you find the best software and product alternatives Learn more โ†’

Index

What are some of the best open-source Ruby projects? This list will help you:

Project Stars
1 awesome-interview-questions 67,586
2 Ruby on Rails 54,976
3 Jekyll 48,376
4 Discourse 40,662
5 open-source-mac-os-apps 39,681
6 HomeBrew 39,617
7 fastlane 38,698
8 Selenium WebDriver 29,429
9 Vagrant 25,904
10 Devise 23,749
11 Gitlab CI 23,616
12 forem 21,624
13 ruby 21,592
14 asdf 20,653
15 Le Wagon's Setup 17,958
16 Ruby style guide 16,385
17 rbenv 15,835
18 Postal 14,226
19 Gollum 13,571
20 diaspora* 13,357
21 awesome-ruby 13,368
22 homebrew-core 13,271
23 Sidekiq 12,972

Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com