rails-static-router 1.0.1 → 1.0.2

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
  SHA256:
3
- metadata.gz: 81e2d90c70185ffe7fd0191e650fd159c02d3abd3952907b32edd852a8937900
4
- data.tar.gz: 600720c38e684796f1ca0a9c0f6e37eb7f6f5fe23e069f21294c2ba16e807b8b
3
+ metadata.gz: f556d354ad6e39c6729e60cec64d92278459c66919d43e2dbd4da7aadff37870
4
+ data.tar.gz: 7d0f1d7722542bd2abaa9c9f11563c66cbce02dbc0c8bbd353b3277021214c10
5
5
  SHA512:
6
- metadata.gz: b6b558d1a44a9e5055ff02993e94ef878b878a46089c91ec56c0ad7252f03a9885b8aa3373eeca0595553c3b294ff1aa42e934b9ac801259f9449669bf022789
7
- data.tar.gz: 0f75d3e1563d0d4da4bbb4170d16188511f2880538951465a971020b8be105cc286f6eeece02af7a3ac6de771d265b950bfbc4a1424391e76c4ea326fe07846a
6
+ metadata.gz: 0ea28c05bb565f1b2f68f09d95278615aa69083e03c8854475be330c601ebcd9fdad676c5e4009383ca6a29dd3851769ffacf699a25e0ec8a42f5025288fba1b
7
+ data.tar.gz: '0541872b0f377d9305730a9ab571a86100176aada2a61835c97d85fd9bdb8b17454315faf80324d9fea1686038bc95373222389e802fbf805dfe4ecffe982c3b'
data/README.md CHANGED
@@ -7,7 +7,6 @@ Enjoy static routes in your Rails `config/routes.rb`.
7
7
  - [Installation](#installation)
8
8
  - [Example use](#example-use)
9
9
  - [Why?](#why)
10
- - [TODO](#todo)
11
10
  - [Contributors](#contributors)
12
11
 
13
12
  <!-- /MarkdownTOC -->
@@ -93,7 +92,9 @@ To run against only specific Rails version, you can specify it
93
92
  with `BUNDLE_GEMFILE`. For example, if you want to run only
94
93
  against Rails 5.2, you can execute command below.
95
94
 
96
- BUNDLE_GEMFILE=gemfiles/rails51.gemfile bundle exec rake test
95
+ export BUNDLE_GEMFILE=gemfiles/rails51.gemfile
96
+ bundle install
97
+ bundle exec rake test
97
98
 
98
99
  To test it agains multiple Ruby version, you may want to use rvm.
99
100
  For example:
@@ -108,3 +109,8 @@ For example:
108
109
  # with Ruby version 2.4.4
109
110
  rvm install 2.4.4
110
111
  bundle exec appraisal rake test
112
+
113
+ ## Releasing
114
+
115
+ For contributors that have access to release server, do the
116
+ following commands to release the gem.
@@ -1,3 +1,3 @@
1
1
  module RailsStaticRouter
2
- VERSION = '1.0.1'
2
+ VERSION = '1.0.2'
3
3
  end
@@ -15,7 +15,7 @@ Gem::Specification.new do |spec|
15
15
  spec.summary = spec.description
16
16
  spec.version = RailsStaticRouter::VERSION
17
17
 
18
- spec.add_dependency 'railties', '>= 4.1', '<= 6.0'
18
+ spec.add_dependency 'railties', '>= 4.1', '< 6.1'
19
19
 
20
20
  # Test and build tools
21
21
  # The test shouldn't broken by the incompatible RSpec version.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails-static-router
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eliot Sykes
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2019-09-28 00:00:00.000000000 Z
12
+ date: 2020-01-09 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: railties
@@ -18,9 +18,9 @@ dependencies:
18
18
  - - ">="
19
19
  - !ruby/object:Gem::Version
20
20
  version: '4.1'
21
- - - "<="
21
+ - - "<"
22
22
  - !ruby/object:Gem::Version
23
- version: '6.0'
23
+ version: '6.1'
24
24
  type: :runtime
25
25
  prerelease: false
26
26
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,9 +28,9 @@ dependencies:
28
28
  - - ">="
29
29
  - !ruby/object:Gem::Version
30
30
  version: '4.1'
31
- - - "<="
31
+ - - "<"
32
32
  - !ruby/object:Gem::Version
33
- version: '6.0'
33
+ version: '6.1'
34
34
  - !ruby/object:Gem::Dependency
35
35
  name: appraisal
36
36
  requirement: !ruby/object:Gem::Requirement