jsonapi-scopes 0.1.1 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 214a50247c608d0d1cce1702f2451c3d0adfa3459f6afca87744b50b711ae614
4
- data.tar.gz: 50fee9d1004679bd3ac18b5a6cb14fc083879dd4a823f4ee2d5234ce03ad63b7
3
+ metadata.gz: f0ab9b614b65a6dea7e3255f8093e7efcd4536fcf0ae7fa3c44e693e00940349
4
+ data.tar.gz: 6163a1d155fcb233932de0fd0647402e9435712da50238173b156e8f96ca26ad
5
5
  SHA512:
6
- metadata.gz: 1dc3f9627f33d2bef4610286f1954ee8f43b538ac4db04abbaccd6d64098a5aa5768ba8161cd1642dc7993a0bb5bbfecd1c689c99d2f1d609cf9ea31c45ca5fb
7
- data.tar.gz: f3f2622bc390b55b4b74c459baa4ee3c4caf5ad9a7d0da9bad976c1290953875cd1edb522769ff6abcc7249bd462731ee651940255d8bc8a435330d393e27a22
6
+ metadata.gz: 7ea31d7bd030d71d7ce5e9d47347042185fef8efb8fca60695d8b55da42d0e75c6bc6e4eed36fd10b12285938f61b506a5318de64d54d4c719040997b1a98ee3
7
+ data.tar.gz: 88a612c8da4628d5c0cda2c2d721ef637f38e682f6c3439ca65e392108f53e13efeebd82d7c62a952b7697125796fd75d03761a8c52dbf343c5a66be3b50b71e
data/README.md CHANGED
@@ -1,7 +1,10 @@
1
1
  [![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.me/guillaumebriday)
2
+ [![](https://img.shields.io/gem/dt/jsonapi-scopes.svg)](https://rubygems.org/gems/jsonapi-scopes)
3
+ [![](https://img.shields.io/gem/v/jsonapi-scopes.svg)](https://rubygems.org/gems/jsonapi-scopes)
4
+ [![](https://img.shields.io/github/license/guillaumebriday/jsonapi-scopes.svg)](https://github.com/guillaumebriday/jsonapi-scopes)
2
5
 
3
6
  # Jsonapi::Scopes
4
- This gem provides an easy way to use a filter query parameter from the [jsonapi specification](https://jsonapi.org/recommendations/#filtering).
7
+ This gem allows you to filter and sort an ActiveRecord relation based on a request. This gem follows the [JSON:API specification](https://jsonapi.org/) as closely as possible.
5
8
 
6
9
  ## Installation
7
10
  Add this line to your application's Gemfile:
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Jsonapi
4
4
  module Scopes
5
- VERSION = '0.1.1'
5
+ VERSION = '0.1.2'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jsonapi-scopes
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Guillaume Briday
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-05-11 00:00:00.000000000 Z
11
+ date: 2019-05-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -74,5 +74,6 @@ requirements: []
74
74
  rubygems_version: 3.0.3
75
75
  signing_key:
76
76
  specification_version: 4
77
- summary: A gem to use filtering and sorting from json:api specifications.
77
+ summary: This gem allows you to filter and sort an ActiveRecord relation based on
78
+ a request, following the JSON:API specification as closely as possible.
78
79
  test_files: []