You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Forwardable has been removed from Parascope::Query. You can now safely use convenient ActiveSupport's delegate method in Query classes.
UndefinedScopeError and GuardViolationError has been moved from Parascope::Query to Parascope module itself.
deprecated UnpermittedError alias has been removed.
New Features
Added Parascope::Query.build method to initialize a query object with empty params. So you can now do something like UsersQuery.build(company: company) instead of UsersQuery.new({}, company: company)
Other Updates
Updated README: added examples for methods in API section, added "Hints and Tips" section.