grape-path-helpers 1.4.0 → 1.5.0
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/.gitlab-ci.yml +2 -1
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +5 -5
- data/grape-path-helpers.gemspec +1 -1
- data/lib/grape-path-helpers/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f0bb904ceffcf1cf4e877c5f97558f9d44883675269b20f6b8b76e74ba030fb0
|
|
4
|
+
data.tar.gz: ddf94c3bc25ef08377160f78298ae9905b6b83099cfaacec4e50202723582e5c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ded4e9c49e798b3127ca4169b269c09a68890c498d079d6bca2a9ca06532b0bacb2f09615b82f04646fc988a4bfcfa995623c9e93e5ec7a6e52e4df69698cf07
|
|
7
|
+
data.tar.gz: 93eaa299b50943cd6d8bcfd72f48f97da3d89ac557cabab44f6976297e275bb6fc2cf684ec6b9aa36fa8774980097c825a22978e19a86294a9944edac61b3559
|
data/.gitlab-ci.yml
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.5.0
|
|
4
|
+
|
|
5
|
+
* [Relax rake dependency](https://gitlab.com/gitlab-org/grape-path-helpers/-/merge_requests/27)
|
|
6
|
+
|
|
3
7
|
## 1.4.0
|
|
4
8
|
|
|
5
9
|
* [Support using a base class other than Grape::API::Instance](https://gitlab.com/gitlab-org/grape-path-helpers/-/merge_requests/23)
|
data/Gemfile.lock
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
grape-path-helpers (1.
|
|
4
|
+
grape-path-helpers (1.5.0)
|
|
5
5
|
activesupport
|
|
6
6
|
grape (~> 1.3)
|
|
7
|
-
rake (
|
|
7
|
+
rake (> 12)
|
|
8
8
|
|
|
9
9
|
GEM
|
|
10
10
|
remote: https://rubygems.org/
|
|
@@ -68,7 +68,7 @@ GEM
|
|
|
68
68
|
rack-accept (0.4.5)
|
|
69
69
|
rack (>= 0.4)
|
|
70
70
|
rainbow (3.0.0)
|
|
71
|
-
rake (
|
|
71
|
+
rake (13.0.1)
|
|
72
72
|
rspec (3.7.0)
|
|
73
73
|
rspec-core (~> 3.7.0)
|
|
74
74
|
rspec-expectations (~> 3.7.0)
|
|
@@ -95,7 +95,7 @@ GEM
|
|
|
95
95
|
tzinfo (1.2.7)
|
|
96
96
|
thread_safe (~> 0.1)
|
|
97
97
|
unicode-display_width (1.3.3)
|
|
98
|
-
zeitwerk (2.4.
|
|
98
|
+
zeitwerk (2.4.1)
|
|
99
99
|
|
|
100
100
|
PLATFORMS
|
|
101
101
|
ruby
|
|
@@ -107,4 +107,4 @@ DEPENDENCIES
|
|
|
107
107
|
rubocop (~> 0.56)
|
|
108
108
|
|
|
109
109
|
BUNDLED WITH
|
|
110
|
-
1.
|
|
110
|
+
2.1.4
|
data/grape-path-helpers.gemspec
CHANGED
|
@@ -13,7 +13,7 @@ Gem::Specification.new do |gem|
|
|
|
13
13
|
|
|
14
14
|
gem.add_runtime_dependency 'activesupport'
|
|
15
15
|
gem.add_runtime_dependency 'grape', '~> 1.3'
|
|
16
|
-
gem.add_runtime_dependency 'rake', '
|
|
16
|
+
gem.add_runtime_dependency 'rake', '> 12'
|
|
17
17
|
|
|
18
18
|
gem.add_development_dependency 'pry', '~> 0.11'
|
|
19
19
|
gem.add_development_dependency 'rspec', '~> 3.7'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: grape-path-helpers
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.5.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Drew Blessing
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2020-
|
|
12
|
+
date: 2020-11-07 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: activesupport
|
|
@@ -43,14 +43,14 @@ dependencies:
|
|
|
43
43
|
name: rake
|
|
44
44
|
requirement: !ruby/object:Gem::Requirement
|
|
45
45
|
requirements:
|
|
46
|
-
- - "
|
|
46
|
+
- - ">"
|
|
47
47
|
- !ruby/object:Gem::Version
|
|
48
48
|
version: '12'
|
|
49
49
|
type: :runtime
|
|
50
50
|
prerelease: false
|
|
51
51
|
version_requirements: !ruby/object:Gem::Requirement
|
|
52
52
|
requirements:
|
|
53
|
-
- - "
|
|
53
|
+
- - ">"
|
|
54
54
|
- !ruby/object:Gem::Version
|
|
55
55
|
version: '12'
|
|
56
56
|
- !ruby/object:Gem::Dependency
|
|
@@ -146,7 +146,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
146
146
|
- !ruby/object:Gem::Version
|
|
147
147
|
version: '0'
|
|
148
148
|
requirements: []
|
|
149
|
-
rubygems_version: 3.
|
|
149
|
+
rubygems_version: 3.1.4
|
|
150
150
|
signing_key:
|
|
151
151
|
specification_version: 4
|
|
152
152
|
summary: Route path helpers for Grape
|