stopwatch 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f2e13c0b156bbafa1c265a69eec80e39b27d2ba7
4
- data.tar.gz: 3b323dece7066d744bb50cf8868df17719aa5b60
3
+ metadata.gz: 0b7082f7a65336328d83fdabc50d13c3c569e482
4
+ data.tar.gz: b514dbb0300b7c72ef4c2a59b0fc4aa7c4af231e
5
5
  SHA512:
6
- metadata.gz: 06c3dc0a194d7281dceca2762b1fcb929d40f8f844c8b7230fceef3c13fbaff4793ba7801a5dd8dd50090a38638033e67707742015d9f4191f7ecc8864549604
7
- data.tar.gz: 782169ada96b9f38bb4724496d532d032d60f78a9355b06f97981e025377fad4e26d1635837fd956c9bf91560e44081ebd2543e675b64bffccf90414b912a7f9
6
+ metadata.gz: a9f6b108d6e96a208a8bfce6663091defd72ceb1e010181d46a91e90a65b8c12b2ac9645440daf1ae38876e32616e9ede845caf2580dc864acdde51f5f06c51d
7
+ data.tar.gz: 81569746fedd14b0baa4651f53d27bc93b251d45509bb3d03fc957e1d617885cea62e6573cfd48c1f092f13921af363791c436deba6296241c510b6d28f9c115
@@ -1,14 +1,17 @@
1
- v1.0.0
2
- * Handles UTF-8 characters in body, thanks @erikj for #2 !
1
+ ### v1.0.1
2
+ * No longer uses a string to load the middleware, thanks again @erikj !
3
3
 
4
- v0.0.4
4
+ ### v1.0.0
5
+ * Handles UTF-8 characters in body, thanks @erikj for https://github.com/bittersweet/stopwatch/pull/2 !
6
+
7
+ ### v0.0.4
5
8
  * Only inserts code if the content-type is text/html or application/xhtml+xml
6
9
 
7
- v0.0.3
10
+ ### v0.0.3
8
11
  * Displays every partial that was rendered and the amount of queries it used
9
12
 
10
- v0.0.2
13
+ ### v0.0.2
11
14
  * Show total amount of queries
12
15
 
13
- v0.0.1
16
+ ### v0.0.1
14
17
  * First release, displays duration of rendering the action
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- stopwatch (1.0.0)
4
+ stopwatch (1.0.1)
5
5
 
6
6
  GEM
7
7
  remote: http://rubygems.org/
@@ -1,7 +1,7 @@
1
1
  module Stopwatch
2
2
  class Railtie < Rails::Railtie
3
3
  initializer "newplugin.initialize" do |app|
4
- app.config.middleware.use "Rack::LoadSpeed"
4
+ app.config.middleware.use Rack::LoadSpeed
5
5
 
6
6
  # Start processing
7
7
  ActiveSupport::Notifications.subscribe "start_processing.action_controller" do |*args|
@@ -1,3 +1,3 @@
1
1
  module Stopwatch
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stopwatch
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mark Mulder
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-02-09 00:00:00.000000000 Z
11
+ date: 2017-04-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rack
@@ -48,7 +48,7 @@ extra_rdoc_files: []
48
48
  files:
49
49
  - ".gitignore"
50
50
  - ".travis.yml"
51
- - CHANGELOG
51
+ - CHANGELOG.md
52
52
  - Gemfile
53
53
  - Gemfile.lock
54
54
  - README.md