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 +4 -4
- data/README.md +8 -2
- data/lib/rails_static_router/version.rb +1 -1
- data/rails-static-router.gemspec +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f556d354ad6e39c6729e60cec64d92278459c66919d43e2dbd4da7aadff37870
|
4
|
+
data.tar.gz: 7d0f1d7722542bd2abaa9c9f11563c66cbce02dbc0c8bbd353b3277021214c10
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
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.
|
data/rails-static-router.gemspec
CHANGED
@@ -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', '
|
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.
|
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:
|
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.
|
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.
|
33
|
+
version: '6.1'
|
34
34
|
- !ruby/object:Gem::Dependency
|
35
35
|
name: appraisal
|
36
36
|
requirement: !ruby/object:Gem::Requirement
|