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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ea3d001ce05fc8542e537f7872102bf350fa0324
4
- data.tar.gz: b771d19e9981b1710f6466c00d88a396f557644d
3
+ metadata.gz: 5cf845092ae766e3ae81bb698685c0b4a66562db
4
+ data.tar.gz: c97a7baec05f0c24d632f2414d19fb93dd961653
5
5
  SHA512:
6
- metadata.gz: 74c4200bf37e0c31e9bec89ff2dde0f3d758a590dbecf2b327b9df3717567a96c14c52ea0c657d94d2dc3dd791cc7fa97c127168fb2c960e147cfc472b309fef
7
- data.tar.gz: a6d8a7bf3cac84594e876c5dfd231b9b06c40ad20ee51f029e6b12a7a758df24731c0b35a46ed1b1bb908fec288bd77ff04588faf093d9d3f2c4dfb895fbb50d
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
- * `*`[flamegraph](https://github.com/SamSaffron/flamegraph) Flamegraph profiling
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
@@ -21,7 +21,6 @@ DEFAULT_GEMSET = [:slim,
21
21
  :responders,
22
22
  :annotate,
23
23
  :rack_mini_profiler,
24
- :flamegraph,
25
24
  :overcommit].freeze
26
25
 
27
26
  if ['-v', '--version'].include? ARGV[0]
@@ -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"
@@ -2,5 +2,5 @@
2
2
  module Onotole
3
3
  RAILS_VERSION = '~> 4.2.0'
4
4
  RUBY_VERSION = IO.read("#{File.dirname(__FILE__)}/../../.ruby-version").strip
5
- VERSION = '1.1.19'
5
+ VERSION = '1.1.20'
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: onotole
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.19
4
+ version: 1.1.20
5
5
  platform: ruby
6
6
  authors:
7
7
  - kvokka