Project
Reverse Dependencies for rails
The projects listed here declare rails as a runtime or development dependency
0.0
Reverse Polymorphic Associations
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
0.0
A DSL for generating AJAX tables with sorting/searching/pagination using jQuery Dynatables.js.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
Activity
0.0
Dynmark SMS Service gem.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
Activity
0.0
Allows devs to scp files to server for Heroku apps
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
Activity
0.0
A tiny framework for writing dynamic Rails views directly in Ruby
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
0.0
E11y (Easy Telemetry) - Observability for Rails developers who hate noise.
UNIQUE FEATURES:
• Request-scoped debug buffering - buffers debug logs in memory, flushes ONLY on errors
• Zero-config SLO tracking - automatic Service Level Objectives for HTTP endpoints and jobs
• Schema-validated events - catch bugs before production with dry-schema
DEVELOPER EXPERIENCE:
• Minimal setup — one config block, works with stdout out of the box
• Auto-metrics from events (no manual Yabeda.increment)
• Rails-first design (follows Rails conventions)
• Pluggable adapters (Loki, Sentry, OpenTelemetry, custom backends)
COST SAVINGS:
• Reduce log storage costs by 90% (request-scoped buffering)
• Replace expensive APM SaaS ($500-5k/month → infra costs only)
• Own your observability data (no vendor lock-in)
PRODUCTION-READY:
• Thread-safe for multi-threaded Rails + Sidekiq
• Adaptive sampling (error-based, load-based, value-based)
• PII filtering (GDPR-compliant masking/hashing)
• Performance optimized (hash-based events, minimal allocations)
Perfect for Rails 7.0+ teams who need observability without complexity or high costs.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
Activity
0.0
Permits to connect frontend apps with backend apps to run e2e tests like cypress
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
0.0
A collection of helpers and extensions used in e9 Rails 3 projects
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
Activity
0.0
== E9Tags
An extension to ActsAsTaggableOn[http://github.com/mbleigh/acts-as-taggable-on] which "improves" on custom tagging, or at least makes it more dynamic. Additionally it
provides some autocomplete rack apps and the corresponding javascript.
== Installation
1. E9Tags requires jquery and jquery-ui for the autocompletion and tag-adding form, be sure they're loaded in your
pages where the tags form will be rendered.
2. E9Tags extends ActsAsTaggableOn and requires it. Run it's generator if you have not.
3. Run the E9Tags install script to copy over the required JS
rails g e9_tags:install
4. Then make sure it is loaded, how you do that doesn't matter, e.g.
<%= javascript_include_tag 'e9_tags' %>
5. Create an initializer for that sets up the taggable models and their controllers. This gives the models the tag
associations and methods and prepares their controller to handle the otherwise unexpected tag params.
require 'e9_tags'
require 'contacts_controller'
require 'contact'
E9Tags.controllers << ContactsController
E9Tags.models << Contact
OR
You can just include the modules in your classes yourself. The first way really exists for the case where the
classes you wish to extend are part of another plugin/gem.
# in contact.rb
include E9Tags:Model
# in contacts_controller.rb
include E9Tags::Controller
6. Render the tags form partial in whatever model forms require it.
= render 'e9_tags/form', :f => f
If you pass a context, it will be locked and no longer possible to change/add the contexts on the form (and as
a side effect, the tags autocompletion will be restricted to that context).
= render 'e9_tags/form', :f => f, :context => :users
Finally if you pass a 2nd arg to :context you can set a tag context to be "private" (default is false). In this
case the tag context will be locked as private (typically suffixed with *), meaning that the tags will not be
publicly searchable/visible. This is useful for organizational tags tags, say if you wanted to arbitrarily
group records, or create a custom search based on a tag context.
= render 'e9_tags/form', :f => f, :context => [:users, true]
NOTE: The form and javascript are intended to work out of the box, but the certainly aren't going to look pretty.
If you do intend to use the forms, you'll no doubt need to style them.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
0.0
ActiveRecord::Batches#find_in_batches has some gotchas. This library provides alternate algorithms that may better suit you, in certain circumstances. Specifically: you can order your results other than by primary key, and you can limit your batches to just a certain range of results not only all records.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
Activity
0.0
A Rails base for multiple Rails projects developed by Esquilo Azul Company.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
0.0
Put here de description.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
Activity
0.0
Ready-to-use support for users registration, login, logout, etc, for Rails.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
Activity
0.0
Eager Counting allows you to easily perform complex association grouped count queries.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
Activity
0.0
Expedia Affiliate Network REST API
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
Activity
0.0
EarlyBird provides simple waitlist functionality to WIP Rails apps
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
0.0
gem for eastasianwidth.js
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
Activity
0.0
A small gem which adds harmless HTTP response headers to your app as easter eggs.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
0.0
Create a first basic default website for new East Agile clients
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
Activity
0.0
Start your client side out right
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026