onotole 1.1.19 → 1.1.20
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +3 -1
- data/bin/onotole +0 -1
- data/lib/onotole/add_user_gems/before_bundle_patch.rb +4 -0
- data/lib/onotole/add_user_gems/edit_menu_questions.rb +2 -1
- data/lib/onotole/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5cf845092ae766e3ae81bb698685c0b4a66562db
|
4
|
+
data.tar.gz: c97a7baec05f0c24d632f2414d19fb93dd961653
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 858607400ac7ee89fa5e7fb8949af46b2e576ebffe70406bb1a4069fdabb82b98d8a87429de1047fd03149a5d1360194b1dd4dc99f313fff2eb7aa269634a7a4
|
7
|
+
data.tar.gz: 94dc0d042fd9a6a8d06042add450d5ed52a19f2c42f326cc3b886473b3fe1db2e15f273233b4db90bf6cfc5e3d6e5984e68acf9689e0d362a14567d3a2c6edc8
|
data/README.md
CHANGED
@@ -135,8 +135,10 @@ it through a dream. http://mailcatcher.me
|
|
135
135
|
* `*`[rack-mini-profiler](https://github.com/MiniProfiler/rack-mini-profiler)
|
136
136
|
Middleware that displays speed badge for every html page. Designed to work both
|
137
137
|
in production and in development.
|
138
|
-
*
|
138
|
+
* [flamegraph](https://github.com/SamSaffron/flamegraph) Flamegraph profiling
|
139
139
|
support (awesome performance graphics)
|
140
|
+
* [stackprof](https://github.com/tmm1/stackprof) A sampling call-stack profiler
|
141
|
+
for ruby 2.1+
|
140
142
|
|
141
143
|
|
142
144
|
#### Misc
|
data/bin/onotole
CHANGED
@@ -313,5 +313,9 @@ module Onotole
|
|
313
313
|
def add_flamegraph_gem
|
314
314
|
inject_into_file('Gemfile', "\ngem 'flamegraph'", after: 'group :development do')
|
315
315
|
end
|
316
|
+
|
317
|
+
def add_stackprof_gem
|
318
|
+
inject_into_file('Gemfile', "\ngem 'stackprof'", after: 'group :development do')
|
319
|
+
end
|
316
320
|
end
|
317
321
|
end
|
@@ -88,7 +88,8 @@ module Onotole
|
|
88
88
|
image_optim: 'Optimize images (jpeg, png, gif, svg) using external utilities',
|
89
89
|
mailcatcher: 'Catches mail and serves it through a dream. http://mailcatcher.me',
|
90
90
|
rack_mini_profiler: 'Middleware that displays speed badge for every html page.',
|
91
|
-
flamegraph: 'Rack_mini_profiler awesome graphics generator',
|
91
|
+
flamegraph: 'Rack_mini_profiler awesome graphics generator. Need stackprof gem',
|
92
|
+
stackprof: 'A sampling call-stack profiler for ruby 2.1+',
|
92
93
|
meta_request: 'Rails meta panel in chrome console.'\
|
93
94
|
" Very usefull in\n#{' ' * 24}AJAX debugging. Link for chrome"\
|
94
95
|
" add-on in Gemfile.\n#{' ' * 24}Do not delete comments if you need this link"
|
data/lib/onotole/version.rb
CHANGED