waypoints 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/README.md +10 -6
- data/lib/waypoints/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: be6c14e8565bc82d71c764011cf445260694dae3160cf0ead71c7b95e0d0ec5d
|
4
|
+
data.tar.gz: 6eb78534a75cab6cd6d18bb56c9415af9f7838db3415d09ae0c0e52fdd0ed559
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 12497980c7c4d4b9a76bc8514a572b2c09739bfb6dfdb6f56967d3e4c5ad34fdfbe97c17d0056b42526528999252bc6c9caed3fa3b265991a1aa5fbd59ac348a
|
7
|
+
data.tar.gz: e218095fea6c1a68a7fc7cbc49895160956c3037ce4606f333952a03bf650f495ffdefed122dd4f8b15c7eb76a59746ebacaa154867cc00dd77c320b6337c988
|
data/README.md
CHANGED
@@ -1,14 +1,15 @@
|
|
1
1
|
# Waypoints
|
2
|
-
|
2
|
+
Gives you a visual map of your Rails' requests.
|
3
3
|
|
4
|
-
|
5
|
-
How to use my plugin.
|
4
|
+
![Sample](/sample.png?raw=true)
|
6
5
|
|
7
6
|
## Installation
|
8
7
|
Add this line to your application's Gemfile:
|
9
8
|
|
10
9
|
```ruby
|
11
|
-
|
10
|
+
group :development do
|
11
|
+
gem 'waypoints'
|
12
|
+
end
|
12
13
|
```
|
13
14
|
|
14
15
|
And then execute:
|
@@ -21,8 +22,11 @@ Or install it yourself as:
|
|
21
22
|
$ gem install waypoints
|
22
23
|
```
|
23
24
|
|
24
|
-
|
25
|
-
|
25
|
+
Waypoints requires GraphViz to be installed. OSX users can install it via Homebrew:
|
26
|
+
|
27
|
+
```bash
|
28
|
+
$ brew install graphviz
|
29
|
+
```
|
26
30
|
|
27
31
|
## License
|
28
32
|
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
data/lib/waypoints/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: waypoints
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Erol Fornoles
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2018-07-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 5.0
|
19
|
+
version: 5.1.0
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 5.0
|
26
|
+
version: 5.1.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: ruby-graphviz
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -89,7 +89,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
89
89
|
version: '0'
|
90
90
|
requirements: []
|
91
91
|
rubyforge_project:
|
92
|
-
rubygems_version: 2.6
|
92
|
+
rubygems_version: 2.7.6
|
93
93
|
signing_key:
|
94
94
|
specification_version: 4
|
95
95
|
summary: Waypoints
|