Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Mailcatcher | 5,910 | 1,518 | 16 | 2 months ago | 50 | July 04, 2022 | 38 | mit | Ruby | |
Catches mail and serves it through a dream. | ||||||||||
Thin | 2,217 | 50,110 | 927 | 2 months ago | 46 | May 20, 2021 | 11 | Ruby | ||
A very fast & simple Ruby web server | ||||||||||
Activerecord Sqlserver Adapter | 953 | 727 | 28 | 7 days ago | 145 | February 22, 2022 | 40 | mit | Ruby | |
SQL Server Adapter For Rails | ||||||||||
Agoo | 832 | 11 | 1 | 2 months ago | 60 | June 21, 2022 | 3 | mit | C | |
A High Performance HTTP Server for Ruby | ||||||||||
Webpack Rails | 554 | 335 | 2 | 4 years ago | 12 | August 17, 2017 | 30 | mit | Ruby | |
Integrate webpack with your Ruby on Rails application | ||||||||||
Moebooru | 474 | a month ago | 30 | isc | Ruby | |||||
Moebooru, a fork of danbooru1 that has been heavily modified | ||||||||||
Trinidad | 450 | 456 | 18 | 7 years ago | 53 | July 14, 2016 | 21 | other | Ruby | |
Web server for Rails/Rack applications built upon JRuby::Rack and Apache Tomcat | ||||||||||
Faye Rails | 440 | 198 | 7 years ago | 13 | May 17, 2016 | 30 | mit | Ruby | ||
Simple Rails glue for the Faye messaging protocol. | ||||||||||
Ansible Rails | 315 | 5 years ago | 1 | Ruby | ||||||
Ansible: Ruby on Rails Server | ||||||||||
Guide To Reactive Rails | 299 | 2 years ago | mit | |||||||
A comprehensive guide to online resources about "Reactive" Ruby on Rails development |
This is our server repository. It contains the rails application for Kitsu.
Check out the tools, web, mobile and api docs repositories.
This README outlines the details of collaborating on this application.
These amendments are listed below, though we may forget some. Rubocop will help
you, and we have a .rubocop.yml
which we develop with.
Group macro-style methods at the beginning of the class definition, in the following order:
class User < ActiveRecord::Base
# put the default scope at the top
default_scope { includes(:favorites) }
# then the constants
COLORS = %w[red green blue]
# then named scopes
scope(:banned) { where(banned: true) }
# then any mixin-style "acts_as_*" and similar methods
acts_as_sortable
devise :database_authenticable, :registerable, :recoverable,
:validatable, :confirmable
# then field-type macros such as enums and associations
enum rating_system: %i[smilies stars]
has_many :library_entries
# then validation
validates :email, presence: true
validates name, presence: true
# and then callbacks
before_save :do_the_thing
# ... and finally the rest of the methods!
end