grape-path-helpers 1.0.4 → 1.0.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +6 -6
- data/grape-path-helpers.gemspec +1 -1
- data/lib/grape-path-helpers/version.rb +1 -1
- metadata +10 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4ee9652b65323f2cebb2687b2f39efd3080d4338
|
4
|
+
data.tar.gz: 797414941764d98caa976ecfa838850a34d802b6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0adb5f0e43cab6b495fab62396ee2f76e420776f083a7b777fafb1e8e07d59c0cb9e0af71a59c562ead55ed0271721ec002fee1ae9027619903d206a7afbb19a
|
7
|
+
data.tar.gz: 80b8b4e0430f706f7cc79b5bf47630fe84f70fa1e69baa644ae9b169413b2a7b7b45cbfc57b92b54b2aa9609ec78fe35f8381550a7948874b0a05f795d6e92bc
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,18 +1,18 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
grape-path-helpers (1.0.
|
5
|
-
activesupport (
|
4
|
+
grape-path-helpers (1.0.5)
|
5
|
+
activesupport (>= 4, < 5.1)
|
6
6
|
grape (~> 1.0)
|
7
7
|
rake (~> 12)
|
8
8
|
|
9
9
|
GEM
|
10
10
|
remote: https://rubygems.org/
|
11
11
|
specs:
|
12
|
-
activesupport (
|
13
|
-
|
12
|
+
activesupport (5.0.7)
|
13
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
14
|
+
i18n (>= 0.7, < 2)
|
14
15
|
minitest (~> 5.1)
|
15
|
-
thread_safe (~> 0.3, >= 0.3.4)
|
16
16
|
tzinfo (~> 1.1)
|
17
17
|
ast (2.4.0)
|
18
18
|
axiom-types (0.1.1)
|
@@ -35,7 +35,7 @@ GEM
|
|
35
35
|
rack (>= 1.3.0)
|
36
36
|
rack-accept
|
37
37
|
virtus (>= 1.0.0)
|
38
|
-
i18n (0.
|
38
|
+
i18n (1.0.1)
|
39
39
|
concurrent-ruby (~> 1.0)
|
40
40
|
ice_nine (0.11.2)
|
41
41
|
method_source (0.9.0)
|
data/grape-path-helpers.gemspec
CHANGED
@@ -11,7 +11,7 @@ Gem::Specification.new do |gem|
|
|
11
11
|
gem.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
|
12
12
|
gem.homepage = 'https://gitlab.com/gitlab-org/grape-path-helpers'
|
13
13
|
|
14
|
-
gem.add_runtime_dependency 'activesupport', '
|
14
|
+
gem.add_runtime_dependency 'activesupport', '>= 4', '< 5.1'
|
15
15
|
gem.add_runtime_dependency 'grape', '~> 1.0'
|
16
16
|
gem.add_runtime_dependency 'rake', '~> 12'
|
17
17
|
|
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.0.
|
4
|
+
version: 1.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Drew Blessing
|
@@ -9,22 +9,28 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2018-06-
|
12
|
+
date: 2018-06-07 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: activesupport
|
16
16
|
requirement: !ruby/object:Gem::Requirement
|
17
17
|
requirements:
|
18
|
-
- - "
|
18
|
+
- - ">="
|
19
19
|
- !ruby/object:Gem::Version
|
20
20
|
version: '4'
|
21
|
+
- - "<"
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: '5.1'
|
21
24
|
type: :runtime
|
22
25
|
prerelease: false
|
23
26
|
version_requirements: !ruby/object:Gem::Requirement
|
24
27
|
requirements:
|
25
|
-
- - "
|
28
|
+
- - ">="
|
26
29
|
- !ruby/object:Gem::Version
|
27
30
|
version: '4'
|
31
|
+
- - "<"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '5.1'
|
28
34
|
- !ruby/object:Gem::Dependency
|
29
35
|
name: grape
|
30
36
|
requirement: !ruby/object:Gem::Requirement
|