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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9e208a1cad10acab77450d08d69e6bb89032e47f
4
- data.tar.gz: 6b5a0d3535178821cea8c1743e62fb45f619e7ee
3
+ metadata.gz: 7b01567a702f210351f2a5eea62e5d941773470a
4
+ data.tar.gz: 934a9f48b31731c1aac81d7779e79576eb84edb3
5
5
  SHA512:
6
- metadata.gz: 6702e32d7185ae8985ffc5b783a0ddbd8c230975d1ef68528432c772c77071e65027ee1e0e0a54089b6a3cf06f16ad0dabd7ba03963c334cf37c2b5edce7c8c7
7
- data.tar.gz: 933a91824a77326c045e0ba783d7f2738879a5a5ee80fcff5d7314d359b690bf8315592a9069ac6e6b6b9061da800aca18ecd202cb58d5abcf72c79b5986d266
6
+ metadata.gz: 1cea6b857f4d71c9c7fd3c3ce2e3d497466393d5978fbbd10416f00c7c3ad4c87b87061e2fe791592671469d39b86369e79ac8977c9b77bfd151b0a5ce031fec
7
+ data.tar.gz: 955e1f56e524b131fa682ce309226fdf14b22aa8064498120e48e9ed2e7331283c87ec8e3196a18eb6084d128cb48bab049351e7579b71470f9e4c0bdc34c4a2
data/.gitignore CHANGED
@@ -10,3 +10,4 @@
10
10
  # rspec failure tracking
11
11
  .rspec_status
12
12
  *.gem
13
+ coverage
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
@@ -2,5 +2,6 @@ source "https://rubygems.org"
2
2
 
3
3
  git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
4
 
5
+ gem 'simplecov', require: false, group: :test
5
6
  # Specify your gem's dependencies in json_api_query_parser.gemspec
6
7
  gemspec
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
+ [![Build Status](https://travis-ci.org/g13ydson/json_api_query_parser.svg?branch=master)](https://travis-ci.org/g13ydson/json_api_query_parser)[![Maintainability](https://api.codeclimate.com/v1/badges/c29beeab2c474cbe15d0/maintainability)](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{Gem to parse endpoint and its query parameters to a usable request object}
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
 
@@ -1,3 +1,3 @@
1
1
  module JsonApiQueryParser
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
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.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-28 00:00:00.000000000 Z
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: Gem to parse endpoint and its query parameters to a usable request object
99
+ summary: Parse JSON API endpoint and its query parameters to a usable Hash
99
100
  test_files: []