Skip to content

Commit

Permalink
Updating gemspec and doc for 1.0.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jscruggs committed May 12, 2009
1 parent 5b79f30 commit a89c9a6
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions HISTORY
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
=== MetricFu 1.0.2 / 2009-5-11

* Fixing problems with Reek new line character (thanks to all who pointed this out)
* Flog now recognizes namespaces in method names thanks to Daniel Guettler
* Saikuro now looks at multiple directories, again.

=== MetricFu 1.0.1 / 2009-5-3

* metrics:all task no longer requires a MetricFu::Configuration.run {} if you want to accept the defaults
Expand Down
8 changes: 4 additions & 4 deletions home_page/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ <h2>Links</h2>
<!-- end #sidebar -->
</div>
<div id="left">
<h1>About metric_fu 1.0.1</h1>
<h1>About metric_fu 1.0.2</h1>
<div>
<p><br/>
Metric_fu is a set of rake tasks that make it easy to generate metrics reports. It uses
Expand Down Expand Up @@ -82,13 +82,13 @@ <h2>Installation:</h2>
If you like to vendor gems, you can unpack metric_fu into vendor/gems and require it like so:
</p>
<br/>
<pre>require(File.join(RAILS_ROOT, 'vendor', 'gems', 'jscruggs-metric_fu-1.0.1', 'lib', 'metric_fu'))</pre>
<pre>require(File.join(RAILS_ROOT, 'vendor', 'gems', 'jscruggs-metric_fu-1.0.2', 'lib', 'metric_fu'))</pre>
<br/>
<p>Then you don't have to install it on every box you run it on.</p>
<br/>
<p>Later versions of Rails like to manage your gems for you, so you can put this in your test.rb file:</p>
<br/>
<pre>config.gem 'jscruggs-metric_fu', :version => '1.0.1', :lib => 'metric_fu', :source => 'http://gems.github.com'</pre>
<pre>config.gem 'jscruggs-metric_fu', :version => '1.0.2', :lib => 'metric_fu', :source => 'http://gems.github.com'</pre>
<br/>
<p>And then issue this command:</p>
<br/>
Expand All @@ -99,7 +99,7 @@ <h2>Installation:</h2>
<p>That way Rails won't yell at you every time you run a Rake task:</p>
<br/>
<pre>
config.gem: Unpacked gem jscruggs-metric_fu-1.0.1 in vendor/gems has no specification file. Run 'rake gems:refresh_specs' to fix this.
config.gem: Unpacked gem jscruggs-metric_fu-1.0.2 in vendor/gems has no specification file. Run 'rake gems:refresh_specs' to fix this.
</pre>
<br/>
<p>
Expand Down
2 changes: 1 addition & 1 deletion metric_fu.gemspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Gem::Specification.new do |s|
s.name = "metric_fu"
s.version = "1.0.1"
s.version = "1.0.2"
s.summary = "A fistful of code metrics"
s.email = "jake.scruggs@gmail.com"
s.homepage = "http://metric-fu.rubyforge.org/"
Expand Down

0 comments on commit a89c9a6

Please sign in to comment.