Skip to content

Commit bcbdf52

Browse files
Cleanup inconsistent whitespace in rack-mini-profiler
There were quite some files that mixed tabs and spaces for indenting which have been fixed to use spaces consistently. I've also removed redundant whitespace for those files.
1 parent 7150941 commit bcbdf52

File tree

8 files changed

+252
-252
lines changed

8 files changed

+252
-252
lines changed

CHANGELOG

+34-34
Original file line numberDiff line numberDiff line change
@@ -1,77 +1,77 @@
1-
28-June-2012 - Sam
2-
1+
28-June-2012 - Sam
2+
33
* Started change log
44
* Corrected profiler so it properly captures POST requests (was supressing non 200s)
5-
* Amended Rack.MiniProfiler.config[:user_provider] to use ip addres for identity
5+
* Amended Rack.MiniProfiler.config[:user_provider] to use ip addres for identity
66
* Fixed bug where unviewed missing ids never got cleared
77
* Supress all '/assets/' in the rails tie (makes debugging easier)
88
* record_sql was mega buggy
99
* added MemcacheStore
1010

11-
9-July-2012 - Sam
11+
9-July-2012 - Sam
1212

1313
* Cleaned up mechanism for profiling in production, all you need to do now
14-
is call Rack::MiniProfiler.authorize_request to get profiling working in
15-
production
16-
* Added option to display full backtraces pp=full-backtrace
17-
* Cleaned up railties, got rid of the post authorize callback
18-
* Version 0.1.3
14+
is call Rack::MiniProfiler.authorize_request to get profiling working in
15+
production
16+
* Added option to display full backtraces pp=full-backtrace
17+
* Cleaned up railties, got rid of the post authorize callback
18+
* Version 0.1.3
1919

20-
12-July-2012 - Sam
20+
12-July-2012 - Sam
2121

2222
* Fixed incorrect profiling steps (was not indenting or measuring start time right
23-
* Implemented native PG and MySql2 interceptors, this gives way more accurate times
24-
* Refactored context so its a proper class and not a hash
25-
* Added some more client probing built in to rails
26-
* More tests
23+
* Implemented native PG and MySql2 interceptors, this gives way more accurate times
24+
* Refactored context so its a proper class and not a hash
25+
* Added some more client probing built in to rails
26+
* More tests
27+
28+
18-July-2012 - Sam
2729

28-
18-July-2012 - Sam
29-
3030
* Added First Paint time for chrome
3131
* Bug fix to ensure non Rails installs have mini profiler
3232
* Version 0.1.7
3333

34-
30-July-2012 - Sam
35-
34+
30-July-2012 - Sam
35+
3636
* Made compliant with ancient versions of Rack (including Rack used by Rails2)
37-
* Fixed broken share link
37+
* Fixed broken share link
3838
* Fixed crashes on startup (in MemoryStore and FileStore)
3939
* Version 0.1.8
40-
* Unicode fix
40+
* Unicode fix
4141
* Version 0.1.9
4242

4343
7-August-2012 - Sam
4444

4545
* Added option to disable profiler for the current session (pp=disable / pp=enable)
46-
* yajl compatability contributed by Sven Riedel
46+
* yajl compatability contributed by Sven Riedel
4747

48-
10-August-2012 - Sam
48+
10-August-2012 - Sam
4949

50-
* Added basic prepared statement profiling for postgres
50+
* Added basic prepared statement profiling for postgres
5151

52-
20-August-2012 - Sam
53-
54-
* 1.12.pre
52+
20-August-2012 - Sam
53+
54+
* 1.12.pre
5555
* Cap X-MiniProfiler-Ids at 10, otherwise the header can get killed
5656

5757
3-September-2012 - Sam
5858

5959
* 1.13.pre
60-
* pg gem prepared statements were not being logged correctly
60+
* pg gem prepared statements were not being logged correctly
6161
* added setting config.backtrace_ignores = [] - an array of regexes that match on caller lines that get ignored
62-
* added setting config.backtrace_includes = [] - an array of regexes that get included in the trace by default
62+
* added setting config.backtrace_includes = [] - an array of regexes that get included in the trace by default
6363
* cleaned up the way client settings are stored
6464
* made pp=full-backtrace "sticky"
6565
* added pp=normal-backtrace to clear the "sticky" state
6666
* change "pp=sample" to work with "caller" no need for stack trace gem
6767

68-
4-September-2012 - Sam
68+
4-September-2012 - Sam
6969

7070
* 1.15.pre
71-
* fixed annoying bug where client settings were not sticking
71+
* fixed annoying bug where client settings were not sticking
7272
* fixed long standing issue with Rack::ConditionalGet stopping MiniProfiler from working properly
7373

74-
5-September-2012 - Sam
74+
5-September-2012 - Sam
7575

7676
* 1.16
7777
* fixed long standing problem specs (issue with memory store)
@@ -83,19 +83,19 @@
8383
* 1.17
8484
* pp=sample was bust unless stacktrace was installed
8585

86-
10-September-2012 - Sam
86+
10-September-2012 - Sam
8787

8888
* 1.19
8989
* fix compat issue with 1.8.7
9090

9191
12-September-2012 - Sam
92-
92+
9393
* 1.20
9494
* Added pp=profile-gc , it allows you to profile the GC in Ruby 1.9.3
9595

9696
17-September-2012
9797
* 1.21
98-
* New MemchacedStore
98+
* New MemchacedStore
9999
* Rails 4 support
100100

101101
17-September-2012

Rakefile

+9-8
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ end
1313

1414
desc "builds a gem"
1515
task :build => :update_asset_version do
16-
Dir.chdir("..") do
16+
Dir.chdir("..") do
1717
`gem build rack-mini-profiler.gemspec 1>&2 && mv *.gem Ruby/`
1818
end
1919
end
@@ -23,26 +23,27 @@ task :compile_less => :copy_files do
2323
`lessc lib/html/includes.less > lib/html/includes.css`
2424
end
2525

26-
desc "update asset version file"
27-
task :update_asset_version => :compile_less do
26+
desc "update asset version file"
27+
task :update_asset_version => :compile_less do
2828
require 'digest/md5'
2929
h = []
3030
Dir.glob('lib/html/*.{js,html,css,tmpl}').each do |f|
3131
h << Digest::MD5.hexdigest(::File.read(f))
3232
end
33-
File.open('lib/mini_profiler/version.rb','w') do |f|
34-
f.write "module Rack
35-
class MiniProfiler
33+
File.open('lib/mini_profiler/version.rb','w') do |f|
34+
f.write \
35+
"module Rack
36+
class MiniProfiler
3637
VERSION = '#{Digest::MD5.hexdigest(h.sort.join(''))}'.freeze
3738
end
38-
end"
39+
end"
3940
end
4041
end
4142

4243

4344
desc "copy files from other parts of the tree"
4445
task :copy_files do
45-
`rm -R -f lib/html && mkdir lib/html 1>&2`
46+
`rm -R -f lib/html && mkdir lib/html 1>&2`
4647
path = ('../../../StackExchange.Profiling/UI')
4748
`ln -s #{path}/includes.less lib/html/includes.less`
4849
`ln -s #{path}/includes.js lib/html/includes.js`

0 commit comments

Comments
 (0)