All Projects → khiav223577 → Rails_or

khiav223577 / Rails_or

Licence: mit
Cleaner syntax for writing OR Query in Rails 5, 6. And also add #or support to Rails 3 and 4.

Programming Languages

ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to Rails or

Pluck to hash
Extend ActiveRecord pluck to return array of hashes
Stars: ✭ 275 (+219.77%)
Mutual labels:  activerecord, rails, rubygems
Drafting
Ruby gem for saving drafts of ActiveRecord models
Stars: ✭ 41 (-52.33%)
Mutual labels:  activerecord, rails, rubygems
Deep pluck
Allow you to pluck attributes from nested associations without loading a bunch of records.
Stars: ✭ 385 (+347.67%)
Mutual labels:  activerecord, rails, rubygems
Pluck all
A more efficient way to get data from database. Like #pluck method but return array of hashes instead.
Stars: ✭ 83 (-3.49%)
Mutual labels:  activerecord, rails, rubygems
Unread
Handle unread records and mark them as read with Ruby on Rails
Stars: ✭ 638 (+641.86%)
Mutual labels:  activerecord, rails, rubygems
Datagrid
Gem to create tables grids with sortable columns and filters
Stars: ✭ 921 (+970.93%)
Mutual labels:  activerecord, rails
Active record doctor
Identify database issues before they hit production.
Stars: ✭ 865 (+905.81%)
Mutual labels:  activerecord, rails
Activerecord Sqlserver Adapter
SQL Server Adapter For Rails
Stars: ✭ 910 (+958.14%)
Mutual labels:  activerecord, rails
Ar Uuid
Override migration methods to support UUID columns without having to be explicit about it.
Stars: ✭ 41 (-52.33%)
Mutual labels:  activerecord, rails
Rails Settings
Manage settings with Ruby on Rails
Stars: ✭ 807 (+838.37%)
Mutual labels:  rails, rubygems
Chinese regions rails
中国省市区县数据库,包含行政编码,邮政编码,地区拼音和简拼
Stars: ✭ 38 (-55.81%)
Mutual labels:  activerecord, rails
Logidze
Database changes log for Rails
Stars: ✭ 1,060 (+1132.56%)
Mutual labels:  activerecord, rails
Api schema
DSL for describing APIs and generate swagger json
Stars: ✭ 18 (-79.07%)
Mutual labels:  rails, rubygems
Leaky Gems
A list of Ruby gems that have known memory leaks (and issues)
Stars: ✭ 895 (+940.7%)
Mutual labels:  rails, rubygems
Hold please
📞 Disable ActiveRecord callbacks in Rails for great justice!
Stars: ✭ 20 (-76.74%)
Mutual labels:  activerecord, rails
Activerecordextended
Adds additional postgres functionality to an ActiveRecord / Rails application
Stars: ✭ 830 (+865.12%)
Mutual labels:  activerecord, rails
Mixed gauge
A simple and robust database sharding with ActiveRecord.
Stars: ✭ 58 (-32.56%)
Mutual labels:  activerecord, rails
Spreadsheet architect
Spreadsheet Architect is a library that allows you to create XLSX, ODS, or CSV spreadsheets super easily from ActiveRecord relations, plain Ruby objects, or tabular data.
Stars: ✭ 1,160 (+1248.84%)
Mutual labels:  activerecord, rails
Tabler Rubygem
Rubygem for https://tabler.github.io
Stars: ✭ 77 (-10.47%)
Mutual labels:  rails, rubygems
Activerecord Postgis Adapter
ActiveRecord connection adapter for PostGIS, based on postgresql and rgeo
Stars: ✭ 746 (+767.44%)
Mutual labels:  activerecord, rails

RailsOr

Gem Version Build Status RubyGems Code Climate Test Coverage

rails_or is a Ruby Gem for you to write cleaner OR query.

Supports Rails 3.2, 4.2, 5.0, 5.1, 5.2, 6.0.

It will use built-in or method, which was added in Rails 5, when possible, so that you don't need to worry about that it will polulate active_model. Otherwise, it implements or method for Rails 3 and Rails 4.

Installation

Add this line to your application's Gemfile:

gem 'rails_or'

And then execute:

$ bundle

Or install it yourself as:

$ gem install rails_or

Usage

Same as Rails 5's #or method

Person.where(name: 'Pearl').or(Person.where(age: 24))

# is the same as
Person.where("name = ? OR age = ?", 'Pearl', 24)

Clearer Syntax

# Before
user = User.where(account: account).or(User.where(email: account)).take

# After
user = User.where(account: account).or(email: account).take
# Before
class Post < ActiveRecord::Base
  scope :not_expired, ->{ where(end_time: nil).or(Post.where('end_time > ?', Time.now)) }
end

# After
class Post < ActiveRecord::Base
  scope :not_expired, ->{ where(end_time: nil).or('end_time > ?', Time.now) }
end

No need to repeat writing Model.joins(XXX).where(...)

# Before
User.joins(:posts).where(id: 2)
                  .or(User.joins(:posts).where('posts.title = ?',"title"))
                  .or(User.joins(:posts).where('posts.created_at > ?', 1.day.ago))
# After
User.joins(:posts).where(id: 2)
                  .or('posts.title': "title")
                  .or('posts.created_at > ?', 1.day.ago)

Support passing Hash / Array / String as parameters

Person.where(name: 'Pearl').or(age: 24)
Person.where(name: 'Pearl').or(['age = ?', 24])
Person.where(name: 'Pearl').or('age = ?', 24)
Person.where(name: 'Pearl').or('age = 24')

Other convenient methods

or_not

(Only supports in Rails 4+)

Company.where.not(logo_image1: nil)
       .or_not(logo_image2: nil)
       .or_not(logo_image3: nil)
       .or_not(logo_image4: nil)

or_having

Order.group('user_id')
     .having('SUM(price) > 1000')
     .or_having('COUNT(*) > 10')

Examples

Let A = {id: 1}, B = {account: 'a'}, and C = {email: 'b'}

A && (B || C)

u = User.where(A)
u.where(B).or(u.where(C))
# =>
# SELECT `users`.* FROM `users`
# WHERE `users`.`id` = 1 AND (`users`.`account` = 'a' OR `users`.`email` = 'b')

(B || C) && A

User.where(B).or(C).where(A)
# =>
# SELECT `users`.* FROM `users`
# WHERE (`users`.`account` = 'a' OR `users`.`email` = 'b') AND `users`.`id` = 1

A && B || A && C

User.where(A).where(B).or(User.where(A).where(C))
# =>
# SELECT `users`.* FROM `users`
# WHERE (`users`.`id` = 1 AND `users`.`account` = 'a' OR `users`.`id` = 1 AND `users`.`email` = 'b')

A && B || C

User.where(A).where(B).or(C)
# =>
# SELECT `users`.* FROM `users`
# WHERE (`users`.`id` = 1 AND `users`.`account` = 'a' OR `users`.`email` = 'b')

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake test to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/khiav223577/rails_or. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

License

The gem is available as open source under the terms of the MIT License.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].