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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b85249a82d094a43fb63d463cb9e5d4d70786255
4
- data.tar.gz: 1d1045657453e0beb3065b0489b28db4005c672a
3
+ metadata.gz: 4ee9652b65323f2cebb2687b2f39efd3080d4338
4
+ data.tar.gz: 797414941764d98caa976ecfa838850a34d802b6
5
5
  SHA512:
6
- metadata.gz: 53cf4dff97fa1ab0d0578e28353bbc5ec8fa7d710a5a2d568a013ea7d9e681ff87855f33fd78baec99fe4c5877466a77f1af670cbd2c8069afe26897c637ce06
7
- data.tar.gz: 0daa52606285e48aa7e89ca85f78a70d905430e49aca1964727a0e083d42b71f03bd8adf6dc8662c23bef7ab303119db5f1f763adbf400254858e6bc1445a745
6
+ metadata.gz: 0adb5f0e43cab6b495fab62396ee2f76e420776f083a7b777fafb1e8e07d59c0cb9e0af71a59c562ead55ed0271721ec002fee1ae9027619903d206a7afbb19a
7
+ data.tar.gz: 80b8b4e0430f706f7cc79b5bf47630fe84f70fa1e69baa644ae9b169413b2a7b7b45cbfc57b92b54b2aa9609ec78fe35f8381550a7948874b0a05f795d6e92bc
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.0.5
4
+
5
+ * [Relax dependencies](https://gitlab.com/gitlab-org/grape-path-helpers/merge_requests/9)
6
+
3
7
  ## 1.0.4
4
8
 
5
9
  * [Fix respond_to_missing? for included modules](https://gitlab.com/gitlab-org/grape-path-helpers/merge_requests/8)
data/Gemfile.lock CHANGED
@@ -1,18 +1,18 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- grape-path-helpers (1.0.2)
5
- activesupport (~> 4)
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 (4.2.10)
13
- i18n (~> 0.7)
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.9.5)
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)
@@ -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', '~> 4'
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
 
@@ -1,4 +1,4 @@
1
1
  # Gem version
2
2
  module GrapePathHelpers
3
- VERSION = '1.0.4'.freeze
3
+ VERSION = '1.0.5'.freeze
4
4
  end
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
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-06 00:00:00.000000000 Z
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