Skip to content

Commit 6a7d054

Browse files
committed
change logs for 3.6.6
1 parent 8715707 commit 6a7d054

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

CHANGELOG

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
== Footnotes v3.6.6
2+
* fix for ruby 1.9 compat (thanks to ivanoats)
3+
* fix for log note (thanks to tobias)
4+
* pre rails 2.3 support fixes (thanks to tobias)
5+
* better disabling of query notes (thanks to tobias)
6+
* fixed variable assignment escaping (thanks to gdelvino)
7+
* fixed cookie value escaping (thanks to indirect)
8+
* Turn off footnotes with a parameter footnotes=false (thanks to indirect)
9+
110
== Footnotes v3.6
211
* Cookies, sessions and params notes now use table;
312
* Old components note removed;

Rakefile

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ begin
66
require 'jeweler'
77
Jeweler::Tasks.new do |s|
88
s.name = "rails-footnotes"
9-
s.version = "3.6.5"
9+
s.version = "3.6.6"
1010
s.rubyforge_project = "rails-footnotes"
1111
s.summary = "Every Rails page has footnotes that gives information about your application and links back to your editor."
1212
s.email = "[email protected]"
@@ -36,3 +36,14 @@ Rake::RDocTask.new(:rdoc) do |rdoc|
3636
rdoc.rdoc_files.include('MIT-LICENSE')
3737
rdoc.rdoc_files.include('lib/**/*.rb')
3838
end
39+
40+
begin
41+
require 'metric_fu'
42+
MetricFu::Configuration.run do |config|
43+
#skipping: churn, :stats
44+
config.metrics = [:saikuro, :flog, :flay, :reek, :roodi, :rcov]
45+
# config.graphs = [:flog, :flay, :reek, :roodi, :rcov]
46+
config.rcov[:rcov_opts] << "-Itest"
47+
end
48+
rescue LoadError
49+
end

0 commit comments

Comments
 (0)