Open Source Ruby Software - Page 3

Ruby Software

Ruby Clear Filters

Browse free open source Ruby Software and projects below. Use the toggles on the left to filter open source Ruby Software by OS, license, language, programming language, and project status.

  • SKUDONET Open Source Load Balancer Icon
    SKUDONET Open Source Load Balancer

    Take advantage of Open Source Load Balancer to elevate your business security and IT infrastructure with a custom ADC Solution.

    SKUDONET ADC, operates at the application layer, efficiently distributing network load and application load across multiple servers. This not only enhances the performance of your application but also ensures that your web servers can handle more traffic seamlessly.
  • Create state-of-the-art conversational agents with Google AI Icon
    Create state-of-the-art conversational agents with Google AI

    Using Dialogflow, you can provide new and engaging ways for users to interact with your product.

    Dialogflow can analyze multiple types of input from your customers, including text or audio inputs (like from a phone or voice recording). It can also respond to your customers in a couple of ways, either through text or with synthetic speech. Dialogflow CX and ES provide virtual agent services for chatbots and contact centers. If you have a contact center that employs human agents, you can use Agent Assist to help your human agents. Agent Assist provides real-time suggestions for human agents while they are in conversations with end-user customers.
  • 1
    Jekyll::Gist

    Jekyll::Gist

    Liquid tag for displaying GitHub Gists in Jekyll sites

    Liquid tag for displaying GitHub Gists in Jekyll sites. By default, Jekyll Gist will make an HTTP call per Gist to retrieve the raw content of the Gist. This information is used to propagate NoScript tags for search engines and browsers without JavaScript support.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 2
    MailCatcher

    MailCatcher

    Catches mail and serves it through a dream

    Catches mail and serves it through a dream. MailCatcher runs a super simple SMTP server that catches any message sent to it to display in a web interface. Run mailcatcher, set your favorite app to deliver to smtp://127.0.0.1:1025 instead of your default SMTP server, then check it out to see the mail that's arrived so far. Shows HTML, Plain Text and Source version of messages, as applicable. Rewrites HTML enabling display of embedded, inline images/etc and opens links in a new window. Command-line options to override the default SMTP/HTTP IP and port settings. Mail appears instantly if your browser supports WebSockets, otherwise updates every thirty seconds. Sendmail-analogue command, catchmail, makes using mailcatcher from PHP a lot easier. Encodings are difficult. MailCatcher does not completely support utf-8 straight over the wire, you must use a mail library that encodes things properly based on SMTP server capabilities.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 3
    Mechanize

    Mechanize

    Mechanize is a ruby library that makes automated web interaction easy

    The Mechanize library is used for automating interaction with websites. Mechanize automatically stores and sends cookies, follows redirects, and can follow links and submit forms. Form fields can be populated and submitted. Mechanize also keeps track of the sites that you have visited as a history. This library was heavily influenced by its namesake in the Perl world. Mechanize#transact runs the given block and then resets the page history. I.e. after the block has been executed, you're back at the original page; no need to count how many times to call the back method at the end of a loop (while accounting for possible exceptions).
    Downloads: 1 This Week
    Last Update:
    See Project
  • 4
    SYNX

    SYNX

    A command-line tool that reorganizes your Xcode project folder

    A command-line tool that reorganizes your Xcode project folder to match your Xcode groups. Make sure that your project is backed up through source control before doing anything. Execute the command on your project to have it reorganize the files on the file system:
    Downloads: 1 This Week
    Last Update:
    See Project
  • Case Management Software for Social Services Icon
    Case Management Software for Social Services

    For human services organizations looking for case management software

    Collaborate is customizable case management software for non-profits and social services agencies with teams of 5+ staff.
  • 5
    Server configuration

    Server configuration

    Docker Compose with Traefik and lots of services

    Your (my) own server configuration, managed by docker-compose, with the comprehensive default configuration.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 6
    The Hacker theme

    The Hacker theme

    Hacker is a Jekyll theme for GitHub Pages

    Hacker is a theme for GitHub Pages.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 7
    Zathura

    Zathura

    Homebrew formulae to build Zathura on Mac OS X

    Homebrew formulae to install zathura and plugins on Mac OS X. The OSX native integration (dock, window manager) has been added to the develop branch of zathura.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 8
    ansible-elasticsearch

    ansible-elasticsearch

    Ansible playbook for Elasticsearch

    Ansible role for 7.x/6.x Elasticsearch. Currently this works on Debian and RedHat-based Linux systems. The latest Elasticsearch versions of 7.x & 6.x are actively tested. Elasticsearch default version is described in es_version. You can override this variable in your playbook to install another version. While we are testing this role only with one 7.x and one 6.x version. All Elasticsearch configuration parameters are supported. This is achieved using a configuration map parameter 'es_config' which is serialized into the elasticsearch.yml file. The use of a map ensures the Ansible playbook does not need to be updated to reflect new/deprecated/plugin configuration parameters. The application of the elasticsearch role results in the installation of a node on a host. Specifying the role multiple times for a host, therefore, results in the installation of multiple nodes for the host.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 9
    bootstrap_form

    bootstrap_form

    Repository of the bootstrap_form gem

    Official repository of the bootstrap_form gem, a Rails form builder that makes it super easy to create beautiful-looking forms using Bootstrap 5. bootstrap_form is a Rails form builder that makes it super easy to integrate Bootstrap v5-style forms into your Rails application. It provides form helpers that augment the Rails form helpers. bootstrap_forms's form helpers generate the form field and its label and all the Bootstrap mark-up required for proper Bootstrap display. bootstrap_form. You can also put the error messages after the label, or turn off bootstrap_form's validation error handling and do it yourself. Note that this applies to Rails-generated validation messages. HTML 5 client-side validation and Rails validation out of the box doesn't really work well together. Mark-up for Bootstrap horizontal forms (labels to the left of their fields, like a traditional desktop application), if that's what you want.
    Downloads: 1 This Week
    Last Update:
    See Project
  • The Voice API that just works | Twilio Icon
    The Voice API that just works | Twilio

    Build a scalable voice experience with the API that's connecting millions around the world.

    With Twilio Voice, you can build unique phone call experiences with one API, to create, receive, control and monitor calls with just a few lines of code. Create an engaging voice experience that you can quickly scale and modify with a wide array of customization options and resources.
  • 10
    dotenv

    dotenv

    A Ruby gem to load environment variables from `.env`

    Shim to load environment variables from .env into ENV in development. Storing configuration in the environment is one of the tenets of a twelve-factor app. Anything that is likely to change between deployment environments–such as resource handles for databases or credentials for external services–should be extracted from the code into environment variables. But it is not always practical to set environment variables on development machines or continuous integration servers where multiple projects are run. dotenv loads variables from a .env file into ENV when the environment is bootstrapped. dotenv is initialized in your Rails app during the before_configuration callback, which is fired when the Application constant is defined in config/application.rb with class Application < Rails::Application. If you need it to be initialized sooner, you can manually call Dotenv::Railtie.load.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 11
    tmuxinator

    tmuxinator

    Manage complex tmux sessions easily

    tmuxinator aims to be compatible with the currently maintained versions of Ruby. Some operating systems may provide an unsupported version of Ruby as their "system ruby". In these cases, users should use RVM or rbenv to install a supported Ruby version and use that version's gem binary to install tmuxinator. tmuxinator uses your shell's default editor for opening files. If you want to change your default editor simply put a line in ~/.bashrc that changes it. The recommended version of tmux to use is 1.8 or later, with the exception of 2.5, which is not supported (see issue 536 for details). Your mileage may vary for earlier versions. Refer to the FAQ for any odd behaviour. Your distribution's package manager may install the completion files in the appropriate location for the completion to load automatically on startup.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 12
    Tokyo Cabinet is the successor of QDBM, a high performance database library similar to the DBM family. It also supports hash and B-tree databases and does not require any server process. The overall speed is improved compared to QDBM.
    Downloads: 6 This Week
    Last Update:
    See Project
  • 13
    <<Hack|Track GNU/Linux

    <<Hack|Track GNU/Linux

    Distro Penetrasing Live System Burn to USB Flash Disk & Run.

    <<Hack|Track GNU/Linux is an open source operating system developed by the HTGL Project from Indonesia which provides penetration testing.
    Downloads: 11 This Week
    Last Update:
    See Project
  • 14
    Dradis Framework

    Dradis Framework

    Collaboration and reporting tool for InfoSec teams.

    Combine the output of multiple tools, add your own manual findings and screenshots and generate a report. Everyone on the same, working better, together.
    Downloads: 11 This Week
    Last Update:
    See Project
  • 15
    Coupa e-Procurement is a requisition and purchase order system with best-in-class usability. Built to manage employee purchasing, it includes catalog management, shopping cart buying, approvals, purchase orders and more. Built in Ruby on Rails.
    Downloads: 10 This Week
    Last Update:
    See Project
  • 16
    XMMS2
    Second generation of XMMS music player.
    Downloads: 10 This Week
    Last Update:
    See Project
  • 17

    TMIS

    Timetable management information system

    https://github.com/Noein/TMIS
    Downloads: 9 This Week
    Last Update:
    See Project
  • 18
    Zynix-Fusion

    Zynix-Fusion

    zynix-Fusion is a framework for hacking

    zynix-Fusion is a framework that aims to centralize, standardizeand simplify the use of various security tools for pentest professionals.zynix-Fusion (old name: Linux evil toolkit) has few simple commands, one of which is theinit function that allows you to define a target, and thus use all the toolswithout typing anything else.
    Downloads: 9 This Week
    Last Update:
    See Project
  • 19
    LiteSQL is a codegenerator and C++ library that integrates C++ objects tightly to relational database and thus provides an object persistence layer. LiteSQL supports SQLite3, PostgreSQL, MySQL and oracle as backends.
    Downloads: 3 This Week
    Last Update:
    See Project
  • 20
    This library is intended to provide a minimal C/C++ API to efficiently create, manipulate, and parse LISP-style symbolic expressions.
    Downloads: 13 This Week
    Last Update:
    See Project
  • 21
    Redland is a set of object-based, modular and portable C RDF libraries providing RDF APIs for the graph, triple storage (librdf), RDF/XML parsing and serializing (Raptor), SPARQL RDF querying (Rasqal). Language APIs in Perl, PHP, Python, Ruby and others.
    Downloads: 7 This Week
    Last Update:
    See Project
  • 22
    Billing system solution. Library for credit card/ACH processing, recurring billing and subscription management for member and donor centered organizations. Provides a way for POS / retail / recurring credit card and bank account processing.
    Downloads: 12 This Week
    Last Update:
    See Project
  • 23
    JAM Circle
    JAM Circle is a Kanban Application Platform on Eclipse RCP.Kanban is similar to sticky note.you can use it for GTD,Planning,Pull System using Kanban.It supports to send Card using XMPP and to define it\'s behavior using Script(JRuby and ECMAScript).
    Downloads: 12 This Week
    Last Update:
    See Project
  • 24
    Wireless Universal Resource File

    Wireless Universal Resource File

    Handset Detection for Mobile Applications. Device Description Database

    WURFL lets you detect thousands of types of mobile devices accessing your web service and take decisions based on what that device can or cannot do. With WURFL, you can optimize mobile web content, effectively deliver advertisements, or analyze mobile traffic. WURFL will read HTTP requests from mobile browsers and search the Device Description Repository (DDR) for the corresponding device properties (i.e. capabilities). WURFL will return the device capabilities to your application, which can leverage this knowledge to optimize the mobile experience. WURFL can detect over 10000 device types and offers over 500 device capabilities, including desktops, smartphones, tablets, feature phones, smart TV’s and many other emerging devices types. WURFL addresses the needs of many types of users, from large enterprises with high performance requirements, to regular companies who need a solution that is simple to deploy, integrate and customize. WURFL is provided by ScientiaMobile, Inc.
    Downloads: 2 This Week
    Last Update:
    See Project
  • 25
    The JavaScript Object Notation (JSON) is a simple and lightweight data interchange format. This project provides libraries for manipulating JSON objects for various languages. For more information on JSON, visit http://www.json.org/
    Leader badge
    Downloads: 11 This Week
    Last Update:
    See Project