rails-rfc6570 1.1.1 → 2.0.0

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: ce4faf89b39d74647128aad91ec3233979cbd752
4
- data.tar.gz: d9d52f9c09e13853b7bc16cddb652f2fb4e05cbb
3
+ metadata.gz: 46e9cd70b9c5de2feb4f4fab318ba72c8662018e
4
+ data.tar.gz: 2b22c3ed75ae6b6a164c4f13ff447cf855818a69
5
5
  SHA512:
6
- metadata.gz: 34bed45b1b3f614ba054418fcedcb35d8bc08f79daa381702703a692ec2c4bdbc4f932c0f5de322eb15ff341420e97daed3e1a081d9c88019450fc4ec62fe58b
7
- data.tar.gz: c7afddd77cabf3d33174bcd827abdbb92b3f2193066f1c285fec21890834134905ebe466e4a2710af98042b29c34db311c1b6069067217e0eae7cc297ddb0742
6
+ metadata.gz: e7ed81f8d4c160778a41c485918b6d04831bbe3b1112fdf5170a8718c7746600dce32909554802ff6885b1bd35664a4d2047b3ec059fdfa3ba7236095fbb14e2
7
+ data.tar.gz: aa39e93e031d4f5631a1a2d50fa44f545d0e337ca9330fcdf2605d817c138ecbe4bea3067dd535ba61a8c38200b70250637754e9f4340cd60585ba9fcd90c4d6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 2.0.0
4
+
5
+ * Add support for Rails 5.1
6
+ * Drop support for Rails < 4.2
7
+
3
8
  ## 1.1.1
4
9
 
5
10
  * Fix full URL generation to not use `root_url` helper to avoid depending on that and to improve compatibility with e.g. rails engines.
data/README.md CHANGED
@@ -2,13 +2,13 @@
2
2
 
3
3
  [![Build Status](https://travis-ci.org/jgraichen/rails-rfc6570.svg?branch=master)](https://travis-ci.org/jgraichen/rails-rfc6570)
4
4
 
5
- Pragmatical access to your Rails 4.0 or 4.1 or 4.2 or 5.0 routes as RFC6570 URI templates. Since version 0.3.0 Ruby 2.0+ is required.
5
+ Pragmatic access to your Rails 4.2, 5.0, 5.1 routes as RFC6570 URI templates. Ruby 2.0+ is required.
6
6
 
7
7
  ## Installation
8
8
 
9
9
  Add this line to your application's Gemfile:
10
10
 
11
- gem 'rails-rfc6570', '~> 1.1'
11
+ gem 'rails-rfc6570', '~> 2.0'
12
12
 
13
13
  And then execute:
14
14
 
data/lib/rails/rfc6570.rb CHANGED
@@ -171,19 +171,8 @@ module Rails
171
171
  ::ActionDispatch::Routing::RouteSet.send :include,
172
172
  Rails::RFC6570::Extensions::RouteSet
173
173
 
174
- if MAJOR == 4 && (0..1).include?(MINOR)
175
- ::ActionDispatch::Routing::RouteSet::NamedRouteCollection.send \
176
- :prepend, Rails::RFC6570::Extensions::NamedRouteCollection40
177
- elsif MAJOR == 4 && MINOR == 2
178
- ::ActionDispatch::Routing::RouteSet::NamedRouteCollection.send \
179
- :prepend, Rails::RFC6570::Extensions::NamedRouteCollection42
180
- else
181
- ::ActionDispatch::Routing::RouteSet::NamedRouteCollection.send \
182
- :prepend, Rails::RFC6570::Extensions::NamedRouteCollection42
183
- end
184
-
185
174
  ::ActionDispatch::Routing::RouteSet::NamedRouteCollection.send \
186
- :include, Rails::RFC6570::Extensions::NamedRouteCollection
175
+ :prepend, Rails::RFC6570::Extensions::NamedRouteCollection
187
176
 
188
177
  ::ActionDispatch::Journey::Route.send :include,
189
178
  Rails::RFC6570::Extensions::JourneyRoute
@@ -238,29 +227,10 @@ module Rails
238
227
  set << rfc6570_url_name
239
228
  set << rfc6570_path_name
240
229
  end
241
- end
242
-
243
- module NamedRouteCollection40
244
- def to_rfc6570(opts = {})
245
- Hash[routes.map{|n, r| [n, r.to_rfc6570(opts)] }]
246
- end
247
230
 
248
231
  def add(name, route)
249
- define_rfc6570_helpers name, route, @module, @helpers
250
- super
251
- end
252
-
253
- alias_method :[]=, :add
254
- end
255
-
256
- module NamedRouteCollection42
257
- def helper_names
258
232
  super
259
- end
260
-
261
- def add(name, route)
262
233
  define_rfc6570_helpers name, route, @url_helpers_module, @url_helpers
263
- super
264
234
  end
265
235
 
266
236
  alias_method :[]=, :add
@@ -1,9 +1,9 @@
1
1
  module Rails
2
2
  module RFC6570
3
3
  module VERSION
4
- MAJOR = 1
5
- MINOR = 1
6
- PATCH = 1
4
+ MAJOR = 2
5
+ MINOR = 0
6
+ PATCH = 0
7
7
  STAGE = nil
8
8
 
9
9
  STRING = [MAJOR, MINOR, PATCH, STAGE].reject(&:nil?).join('.').freeze
@@ -21,7 +21,7 @@ Gem::Specification.new do |spec|
21
21
  spec.test_files = spec.files.grep(/^(test|spec|features)\//)
22
22
  spec.require_paths = ['lib']
23
23
 
24
- spec.add_runtime_dependency 'actionpack', '>= 4', '< 5.1'
24
+ spec.add_runtime_dependency 'actionpack', '>= 4.2', '< 5.2'
25
25
  spec.add_runtime_dependency 'addressable', '~> 2.3'
26
26
 
27
27
  spec.add_development_dependency 'bundler', '~> 1.5'
@@ -731,3 +731,255 @@ Completed 200 OK in 1ms (Views: 0.1ms)
731
731
  Started GET "/action" for 127.0.0.1 at 2017-02-21 15:26:50 +0100
732
732
  Processing by APIController#action as HTML
733
733
  Completed 200 OK in 1ms (Views: 0.2ms)
734
+ Started GET "/action" for 127.0.0.1 at 2017-05-17 13:50:26 +0200
735
+ Processing by APIController#action as HTML
736
+ Completed 200 OK in 1ms (Views: 0.2ms)
737
+ Started GET "/action" for 127.0.0.1 at 2017-05-17 13:50:26 +0200
738
+ Processing by APIController#action as HTML
739
+ Completed 200 OK in 1ms (Views: 0.2ms)
740
+ Started GET "/action" for 127.0.0.1 at 2017-05-17 13:50:26 +0200
741
+ Processing by APIController#action as HTML
742
+ Completed 200 OK in 1ms (Views: 0.1ms)
743
+ Started GET "/action" for 127.0.0.1 at 2017-05-17 13:50:26 +0200
744
+ Processing by APIController#action as HTML
745
+ Completed 200 OK in 1ms (Views: 0.1ms)
746
+ Started GET "/action" for 127.0.0.1 at 2017-05-17 13:50:26 +0200
747
+ Processing by APIController#action as HTML
748
+ Completed 200 OK in 1ms (Views: 0.1ms)
749
+ Started GET "/action" for 127.0.0.1 at 2017-05-17 13:50:26 +0200
750
+ Processing by APIController#action as HTML
751
+ Completed 200 OK in 1ms (Views: 0.1ms)
752
+ Started GET "/" for 127.0.0.1 at 2017-05-17 13:50:26 +0200
753
+ Processing by APIController#index as HTML
754
+ Completed 200 OK in 1ms (Views: 0.2ms)
755
+ Started GET "/" for 127.0.0.1 at 2017-05-17 13:50:26 +0200
756
+ Processing by APIController#index as HTML
757
+ Completed 200 OK in 1ms (Views: 0.2ms)
758
+ Started GET "/" for 127.0.0.1 at 2017-05-17 13:50:26 +0200
759
+ Processing by APIController#index as HTML
760
+ Completed 200 OK in 1ms (Views: 0.1ms)
761
+ Started GET "/" for 127.0.0.1 at 2017-05-17 13:50:26 +0200
762
+ Processing by APIController#index as HTML
763
+ Completed 200 OK in 1ms (Views: 0.1ms)
764
+ Started GET "/" for 127.0.0.1 at 2017-05-17 13:50:26 +0200
765
+ Processing by APIController#index as HTML
766
+ Completed 200 OK in 1ms (Views: 0.1ms)
767
+ Started GET "/" for 127.0.0.1 at 2017-05-17 13:50:26 +0200
768
+ Processing by APIController#index as HTML
769
+ Completed 200 OK in 1ms (Views: 0.1ms)
770
+ Started GET "/" for 127.0.0.1 at 2017-05-17 13:50:26 +0200
771
+ Processing by APIController#index as HTML
772
+ Completed 200 OK in 1ms (Views: 0.1ms)
773
+ Started GET "/" for 127.0.0.1 at 2017-05-17 13:50:26 +0200
774
+ Processing by APIController#index as HTML
775
+ Completed 200 OK in 1ms (Views: 0.1ms)
776
+ Started GET "/action" for 127.0.0.1 at 2017-05-17 13:50:59 +0200
777
+ Processing by APIController#action as HTML
778
+ Completed 500 Internal Server Error in 9ms
779
+ Started GET "/action" for 127.0.0.1 at 2017-05-17 13:50:59 +0200
780
+ Processing by APIController#action as HTML
781
+ Completed 500 Internal Server Error in 9ms
782
+ Started GET "/action" for 127.0.0.1 at 2017-05-17 13:50:59 +0200
783
+ Processing by APIController#action as HTML
784
+ Completed 500 Internal Server Error in 9ms
785
+ Started GET "/action" for 127.0.0.1 at 2017-05-17 13:50:59 +0200
786
+ Processing by APIController#action as HTML
787
+ Completed 500 Internal Server Error in 8ms
788
+ Started GET "/action" for 127.0.0.1 at 2017-05-17 13:50:59 +0200
789
+ Processing by APIController#action as HTML
790
+ Completed 500 Internal Server Error in 8ms
791
+ Started GET "/action" for 127.0.0.1 at 2017-05-17 13:50:59 +0200
792
+ Processing by APIController#action as HTML
793
+ Completed 500 Internal Server Error in 7ms
794
+ Started GET "/" for 127.0.0.1 at 2017-05-17 13:50:59 +0200
795
+ Processing by APIController#index as HTML
796
+ Completed 200 OK in 1ms (Views: 0.2ms)
797
+ Started GET "/" for 127.0.0.1 at 2017-05-17 13:50:59 +0200
798
+ Processing by APIController#index as HTML
799
+ Completed 200 OK in 1ms (Views: 0.2ms)
800
+ Started GET "/" for 127.0.0.1 at 2017-05-17 13:50:59 +0200
801
+ Processing by APIController#index as HTML
802
+ Completed 200 OK in 1ms (Views: 0.1ms)
803
+ Started GET "/" for 127.0.0.1 at 2017-05-17 13:50:59 +0200
804
+ Processing by APIController#index as HTML
805
+ Completed 200 OK in 1ms (Views: 0.1ms)
806
+ Started GET "/" for 127.0.0.1 at 2017-05-17 13:50:59 +0200
807
+ Processing by APIController#index as HTML
808
+ Completed 200 OK in 1ms (Views: 0.1ms)
809
+ Started GET "/" for 127.0.0.1 at 2017-05-17 13:50:59 +0200
810
+ Processing by APIController#index as HTML
811
+ Completed 200 OK in 1ms (Views: 0.1ms)
812
+ Started GET "/" for 127.0.0.1 at 2017-05-17 13:50:59 +0200
813
+ Processing by APIController#index as HTML
814
+ Completed 200 OK in 1ms (Views: 0.1ms)
815
+ Started GET "/" for 127.0.0.1 at 2017-05-17 13:50:59 +0200
816
+ Processing by APIController#index as HTML
817
+ Completed 200 OK in 1ms (Views: 0.1ms)
818
+ Started GET "/" for 127.0.0.1 at 2017-05-17 13:51:28 +0200
819
+ Processing by APIController#index as HTML
820
+ Completed 200 OK in 1ms (Views: 0.2ms)
821
+ Started GET "/" for 127.0.0.1 at 2017-05-17 13:51:28 +0200
822
+ Processing by APIController#index as HTML
823
+ Completed 200 OK in 1ms (Views: 0.2ms)
824
+ Started GET "/" for 127.0.0.1 at 2017-05-17 13:51:28 +0200
825
+ Processing by APIController#index as HTML
826
+ Completed 200 OK in 1ms (Views: 0.2ms)
827
+ Started GET "/" for 127.0.0.1 at 2017-05-17 13:51:28 +0200
828
+ Processing by APIController#index as HTML
829
+ Completed 200 OK in 1ms (Views: 0.2ms)
830
+ Started GET "/" for 127.0.0.1 at 2017-05-17 13:51:28 +0200
831
+ Processing by APIController#index as HTML
832
+ Completed 200 OK in 1ms (Views: 0.2ms)
833
+ Started GET "/" for 127.0.0.1 at 2017-05-17 13:51:28 +0200
834
+ Processing by APIController#index as HTML
835
+ Completed 200 OK in 1ms (Views: 0.1ms)
836
+ Started GET "/" for 127.0.0.1 at 2017-05-17 13:51:28 +0200
837
+ Processing by APIController#index as HTML
838
+ Completed 200 OK in 1ms (Views: 0.1ms)
839
+ Started GET "/" for 127.0.0.1 at 2017-05-17 13:51:28 +0200
840
+ Processing by APIController#index as HTML
841
+ Completed 200 OK in 1ms (Views: 0.1ms)
842
+ Started GET "/action" for 127.0.0.1 at 2017-05-17 13:51:28 +0200
843
+ Processing by APIController#action as HTML
844
+ Completed 500 Internal Server Error in 7ms
845
+ Started GET "/action" for 127.0.0.1 at 2017-05-17 13:51:28 +0200
846
+ Processing by APIController#action as HTML
847
+ Completed 500 Internal Server Error in 6ms
848
+ Started GET "/action" for 127.0.0.1 at 2017-05-17 13:51:28 +0200
849
+ Processing by APIController#action as HTML
850
+ Completed 500 Internal Server Error in 6ms
851
+ Started GET "/action" for 127.0.0.1 at 2017-05-17 13:51:28 +0200
852
+ Processing by APIController#action as HTML
853
+ Completed 500 Internal Server Error in 8ms
854
+ Started GET "/action" for 127.0.0.1 at 2017-05-17 13:51:28 +0200
855
+ Processing by APIController#action as HTML
856
+ Completed 500 Internal Server Error in 7ms
857
+ Started GET "/action" for 127.0.0.1 at 2017-05-17 13:51:28 +0200
858
+ Processing by APIController#action as HTML
859
+ Completed 500 Internal Server Error in 6ms
860
+ Started GET "/action" for 127.0.0.1 at 2017-05-17 13:51:58 +0200
861
+ Processing by APIController#action as HTML
862
+ Completed 200 OK in 1ms (Views: 0.2ms)
863
+ Started GET "/action" for 127.0.0.1 at 2017-05-17 13:51:58 +0200
864
+ Processing by APIController#action as HTML
865
+ Completed 200 OK in 1ms (Views: 0.2ms)
866
+ Started GET "/action" for 127.0.0.1 at 2017-05-17 13:51:58 +0200
867
+ Processing by APIController#action as HTML
868
+ Completed 200 OK in 1ms (Views: 0.1ms)
869
+ Started GET "/action" for 127.0.0.1 at 2017-05-17 13:51:58 +0200
870
+ Processing by APIController#action as HTML
871
+ Completed 200 OK in 1ms (Views: 0.1ms)
872
+ Started GET "/action" for 127.0.0.1 at 2017-05-17 13:51:58 +0200
873
+ Processing by APIController#action as HTML
874
+ Completed 200 OK in 1ms (Views: 0.1ms)
875
+ Started GET "/action" for 127.0.0.1 at 2017-05-17 13:51:58 +0200
876
+ Processing by APIController#action as HTML
877
+ Completed 200 OK in 1ms (Views: 0.1ms)
878
+ Started GET "/" for 127.0.0.1 at 2017-05-17 13:51:58 +0200
879
+ Processing by APIController#index as HTML
880
+ Completed 200 OK in 1ms (Views: 0.1ms)
881
+ Started GET "/" for 127.0.0.1 at 2017-05-17 13:51:58 +0200
882
+ Processing by APIController#index as HTML
883
+ Completed 200 OK in 1ms (Views: 0.1ms)
884
+ Started GET "/" for 127.0.0.1 at 2017-05-17 13:51:58 +0200
885
+ Processing by APIController#index as HTML
886
+ Completed 200 OK in 1ms (Views: 0.1ms)
887
+ Started GET "/" for 127.0.0.1 at 2017-05-17 13:51:58 +0200
888
+ Processing by APIController#index as HTML
889
+ Completed 200 OK in 1ms (Views: 0.1ms)
890
+ Started GET "/" for 127.0.0.1 at 2017-05-17 13:51:58 +0200
891
+ Processing by APIController#index as HTML
892
+ Completed 200 OK in 1ms (Views: 0.1ms)
893
+ Started GET "/" for 127.0.0.1 at 2017-05-17 13:51:58 +0200
894
+ Processing by APIController#index as HTML
895
+ Completed 200 OK in 1ms (Views: 0.1ms)
896
+ Started GET "/" for 127.0.0.1 at 2017-05-17 13:51:58 +0200
897
+ Processing by APIController#index as HTML
898
+ Completed 200 OK in 1ms (Views: 0.1ms)
899
+ Started GET "/" for 127.0.0.1 at 2017-05-17 13:51:58 +0200
900
+ Processing by APIController#index as HTML
901
+ Completed 200 OK in 1ms (Views: 0.1ms)
902
+ Started GET "/action" for 127.0.0.1 at 2017-05-17 13:52:08 +0200
903
+ Processing by APIController#action as HTML
904
+ Completed 200 OK in 1ms (Views: 0.2ms)
905
+ Started GET "/action" for 127.0.0.1 at 2017-05-17 13:52:08 +0200
906
+ Processing by APIController#action as HTML
907
+ Completed 200 OK in 1ms (Views: 0.1ms)
908
+ Started GET "/action" for 127.0.0.1 at 2017-05-17 13:52:08 +0200
909
+ Processing by APIController#action as HTML
910
+ Completed 200 OK in 1ms (Views: 0.1ms)
911
+ Started GET "/action" for 127.0.0.1 at 2017-05-17 13:52:08 +0200
912
+ Processing by APIController#action as HTML
913
+ Completed 200 OK in 1ms (Views: 0.1ms)
914
+ Started GET "/action" for 127.0.0.1 at 2017-05-17 13:52:08 +0200
915
+ Processing by APIController#action as HTML
916
+ Completed 200 OK in 1ms (Views: 0.1ms)
917
+ Started GET "/action" for 127.0.0.1 at 2017-05-17 13:52:08 +0200
918
+ Processing by APIController#action as HTML
919
+ Completed 200 OK in 1ms (Views: 0.1ms)
920
+ Started GET "/" for 127.0.0.1 at 2017-05-17 13:52:08 +0200
921
+ Processing by APIController#index as HTML
922
+ Completed 200 OK in 1ms (Views: 0.2ms)
923
+ Started GET "/" for 127.0.0.1 at 2017-05-17 13:52:08 +0200
924
+ Processing by APIController#index as HTML
925
+ Completed 200 OK in 1ms (Views: 0.2ms)
926
+ Started GET "/" for 127.0.0.1 at 2017-05-17 13:52:08 +0200
927
+ Processing by APIController#index as HTML
928
+ Completed 200 OK in 1ms (Views: 0.3ms)
929
+ Started GET "/" for 127.0.0.1 at 2017-05-17 13:52:08 +0200
930
+ Processing by APIController#index as HTML
931
+ Completed 200 OK in 1ms (Views: 0.2ms)
932
+ Started GET "/" for 127.0.0.1 at 2017-05-17 13:52:08 +0200
933
+ Processing by APIController#index as HTML
934
+ Completed 200 OK in 1ms (Views: 0.2ms)
935
+ Started GET "/" for 127.0.0.1 at 2017-05-17 13:52:08 +0200
936
+ Processing by APIController#index as HTML
937
+ Completed 200 OK in 1ms (Views: 0.2ms)
938
+ Started GET "/" for 127.0.0.1 at 2017-05-17 13:52:08 +0200
939
+ Processing by APIController#index as HTML
940
+ Completed 200 OK in 1ms (Views: 0.1ms)
941
+ Started GET "/" for 127.0.0.1 at 2017-05-17 13:52:08 +0200
942
+ Processing by APIController#index as HTML
943
+ Completed 200 OK in 1ms (Views: 0.2ms)
944
+ Started GET "/" for 127.0.0.1 at 2017-05-17 13:52:19 +0200
945
+ Processing by APIController#index as HTML
946
+ Completed 200 OK in 1ms (Views: 0.2ms)
947
+ Started GET "/" for 127.0.0.1 at 2017-05-17 13:52:19 +0200
948
+ Processing by APIController#index as HTML
949
+ Completed 200 OK in 1ms (Views: 0.1ms)
950
+ Started GET "/" for 127.0.0.1 at 2017-05-17 13:52:19 +0200
951
+ Processing by APIController#index as HTML
952
+ Completed 200 OK in 1ms (Views: 0.1ms)
953
+ Started GET "/" for 127.0.0.1 at 2017-05-17 13:52:19 +0200
954
+ Processing by APIController#index as HTML
955
+ Completed 200 OK in 1ms (Views: 0.1ms)
956
+ Started GET "/" for 127.0.0.1 at 2017-05-17 13:52:19 +0200
957
+ Processing by APIController#index as HTML
958
+ Completed 200 OK in 1ms (Views: 0.1ms)
959
+ Started GET "/" for 127.0.0.1 at 2017-05-17 13:52:19 +0200
960
+ Processing by APIController#index as HTML
961
+ Completed 200 OK in 1ms (Views: 0.1ms)
962
+ Started GET "/" for 127.0.0.1 at 2017-05-17 13:52:19 +0200
963
+ Processing by APIController#index as HTML
964
+ Completed 200 OK in 1ms (Views: 0.1ms)
965
+ Started GET "/" for 127.0.0.1 at 2017-05-17 13:52:19 +0200
966
+ Processing by APIController#index as HTML
967
+ Completed 200 OK in 1ms (Views: 0.1ms)
968
+ Started GET "/action" for 127.0.0.1 at 2017-05-17 13:52:19 +0200
969
+ Processing by APIController#action as HTML
970
+ Completed 200 OK in 1ms (Views: 0.1ms)
971
+ Started GET "/action" for 127.0.0.1 at 2017-05-17 13:52:19 +0200
972
+ Processing by APIController#action as HTML
973
+ Completed 200 OK in 1ms (Views: 0.1ms)
974
+ Started GET "/action" for 127.0.0.1 at 2017-05-17 13:52:19 +0200
975
+ Processing by APIController#action as HTML
976
+ Completed 200 OK in 1ms (Views: 0.1ms)
977
+ Started GET "/action" for 127.0.0.1 at 2017-05-17 13:52:19 +0200
978
+ Processing by APIController#action as HTML
979
+ Completed 200 OK in 1ms (Views: 0.1ms)
980
+ Started GET "/action" for 127.0.0.1 at 2017-05-17 13:52:19 +0200
981
+ Processing by APIController#action as HTML
982
+ Completed 200 OK in 1ms (Views: 0.1ms)
983
+ Started GET "/action" for 127.0.0.1 at 2017-05-17 13:52:19 +0200
984
+ Processing by APIController#action as HTML
985
+ Completed 200 OK in 1ms (Views: 0.1ms)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails-rfc6570
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1
4
+ version: 2.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Graichen
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-02-21 00:00:00.000000000 Z
11
+ date: 2017-05-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: actionpack
@@ -16,20 +16,20 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '4'
19
+ version: '4.2'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
- version: '5.1'
22
+ version: '5.2'
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '4'
29
+ version: '4.2'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
- version: '5.1'
32
+ version: '5.2'
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: addressable
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -123,7 +123,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
123
123
  version: '0'
124
124
  requirements: []
125
125
  rubyforge_project:
126
- rubygems_version: 2.5.1
126
+ rubygems_version: 2.6.11
127
127
  signing_key:
128
128
  specification_version: 4
129
129
  summary: Pragmatical access to your Rails routes as RFC6570 URI templates.