json_api_query_parser 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 +4 -4
- data/.gitignore +1 -0
- data/.travis.yml +14 -0
- data/Gemfile +1 -0
- data/Gemfile.lock +43 -0
- data/README.md +2 -0
- data/json_api_query_parser.gemspec +1 -1
- data/lib/json_api_query_parser/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7b01567a702f210351f2a5eea62e5d941773470a
|
4
|
+
data.tar.gz: 934a9f48b31731c1aac81d7779e79576eb84edb3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1cea6b857f4d71c9c7fd3c3ce2e3d497466393d5978fbbd10416f00c7c3ad4c87b87061e2fe791592671469d39b86369e79ac8977c9b77bfd151b0a5ce031fec
|
7
|
+
data.tar.gz: 955e1f56e524b131fa682ce309226fdf14b22aa8064498120e48e9ed2e7331283c87ec8e3196a18eb6084d128cb48bab049351e7579b71470f9e4c0bdc34c4a2
|
data/.gitignore
CHANGED
data/.travis.yml
CHANGED
@@ -3,3 +3,17 @@ language: ruby
|
|
3
3
|
rvm:
|
4
4
|
- 2.3.6
|
5
5
|
before_install: gem install bundler -v 1.16.1
|
6
|
+
env:
|
7
|
+
global:
|
8
|
+
- CC_TEST_REPORTER_ID=f05f6a543613e1a40966ad25d50e1da021ce87944a1d41234d46287130e058bc
|
9
|
+
language: ruby
|
10
|
+
rvm:
|
11
|
+
- 2.2.0
|
12
|
+
before_script:
|
13
|
+
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
|
14
|
+
- chmod +x ./cc-test-reporter
|
15
|
+
- ./cc-test-reporter before-build
|
16
|
+
script:
|
17
|
+
- bundle exec rspec
|
18
|
+
after_script:
|
19
|
+
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
|
data/Gemfile
CHANGED
data/Gemfile.lock
ADDED
@@ -0,0 +1,43 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
json_api_query_parser (0.1.1)
|
5
|
+
|
6
|
+
GEM
|
7
|
+
remote: https://rubygems.org/
|
8
|
+
specs:
|
9
|
+
diff-lcs (1.3)
|
10
|
+
docile (1.1.5)
|
11
|
+
json (2.1.0)
|
12
|
+
rake (10.4.2)
|
13
|
+
rspec (3.5.0)
|
14
|
+
rspec-core (~> 3.5.0)
|
15
|
+
rspec-expectations (~> 3.5.0)
|
16
|
+
rspec-mocks (~> 3.5.0)
|
17
|
+
rspec-core (3.5.4)
|
18
|
+
rspec-support (~> 3.5.0)
|
19
|
+
rspec-expectations (3.5.0)
|
20
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
21
|
+
rspec-support (~> 3.5.0)
|
22
|
+
rspec-mocks (3.5.0)
|
23
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
24
|
+
rspec-support (~> 3.5.0)
|
25
|
+
rspec-support (3.5.0)
|
26
|
+
simplecov (0.14.1)
|
27
|
+
docile (~> 1.1.0)
|
28
|
+
json (>= 1.8, < 3)
|
29
|
+
simplecov-html (~> 0.10.0)
|
30
|
+
simplecov-html (0.10.1)
|
31
|
+
|
32
|
+
PLATFORMS
|
33
|
+
ruby
|
34
|
+
|
35
|
+
DEPENDENCIES
|
36
|
+
bundler (~> 1.16)
|
37
|
+
json_api_query_parser!
|
38
|
+
rake (~> 10.0)
|
39
|
+
rspec (~> 3.0)
|
40
|
+
simplecov
|
41
|
+
|
42
|
+
BUNDLED WITH
|
43
|
+
1.16.1
|
data/README.md
CHANGED
@@ -1,5 +1,7 @@
|
|
1
1
|
# JSON API query parser
|
2
2
|
|
3
|
+
[](https://travis-ci.org/g13ydson/json_api_query_parser)[](https://codeclimate.com/github/g13ydson/json_api_query_parser/maintainability)
|
4
|
+
|
3
5
|
To be used for ruby projects that make use of [JSON API](http://jsonapi.org/)
|
4
6
|
|
5
7
|
|
@@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
|
|
9
9
|
spec.authors = ["Gleydson Tavares"]
|
10
10
|
spec.email = ["tavares.gleydson@gmail.com"]
|
11
11
|
|
12
|
-
spec.summary = %q{
|
12
|
+
spec.summary = %q{Parse JSON API endpoint and its query parameters to a usable Hash}
|
13
13
|
spec.homepage = "https://github.com/g13ydson/json_api_query_parser"
|
14
14
|
spec.license = "MIT"
|
15
15
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: json_api_query_parser
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gleydson Tavares
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-06-
|
11
|
+
date: 2018-06-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -64,6 +64,7 @@ files:
|
|
64
64
|
- ".travis.yml"
|
65
65
|
- CODE_OF_CONDUCT.md
|
66
66
|
- Gemfile
|
67
|
+
- Gemfile.lock
|
67
68
|
- LICENSE.txt
|
68
69
|
- README.md
|
69
70
|
- Rakefile
|
@@ -95,5 +96,5 @@ rubyforge_project:
|
|
95
96
|
rubygems_version: 2.6.14
|
96
97
|
signing_key:
|
97
98
|
specification_version: 4
|
98
|
-
summary:
|
99
|
+
summary: Parse JSON API endpoint and its query parameters to a usable Hash
|
99
100
|
test_files: []
|