Skip to content

Commit

Permalink
Updated README and README.textile to RC6 and changed regex
Browse files Browse the repository at this point in the history
  • Loading branch information
leifbladt committed Feb 25, 2011
1 parent 3d216ce commit f208c3b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ After spending a morning playing with it, I was quickly able to grow the idea in

CoverMe is pretty easy to use, and has been tested with Ruby 1.9.2 and Rails 3. First, add CoverMe to your Gemfile:

gem 'cover_me', '>= 1.0.0.rc5', :group => :test
gem 'cover_me', '>= 1.0.0.rc6', :group => :test

Now make sure to install the gem with Bundler:

Expand All @@ -61,7 +61,7 @@ CoverMe is easily configurable, under the covers it uses the "Configatron":http:
c.project.root # => "Rails.root" (default)

# what files are you interested in coverage for:
c.file_pattern # => /(#{CoverMe.config.project.root}\/app\/.+\.rb|#{CoverMe.config.project.root}\/lib\/.+\.rb)/ix (default)
c.file_pattern # => /(#{CoverMe.config.project.root}\/app\/.+\.rb|#{CoverMe.config.project.root}\/lib\/.+\.rb)/i (default)

# where do you want the HTML generated:
c.html_formatter.output_path # => File.join(CoverMe.config.project.root, 'coverage') (default)
Expand All @@ -80,6 +80,7 @@ CoverMe is easily configurable, under the covers it uses the "Configatron":http:
==Contributors

* Mark Bates
* Leif Bladt
* Alex Crichton
* Andrea Campi
* Rob Zolkos
Expand Down
4 changes: 2 additions & 2 deletions README.textile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ h2. Use
CoverMe is pretty easy to use, and has been tested with Ruby 1.9.2 and Rails 3. First, add CoverMe to your Gemfile:

<pre><code>
gem 'cover_me', '>= 1.0.0.rc5', :group => :test
gem 'cover_me', '>= 1.0.0.rc6', :group => :test
</code></pre>

Now make sure to install the gem with Bundler:
Expand Down Expand Up @@ -70,7 +70,7 @@ CoverMe is easily configurable, under the covers it uses the "Configatron":http:
c.project.root # => "Rails.root" (default)

# what files are you interested in coverage for:
c.file_pattern # => /(#{CoverMe.config.project.root}\/app\/.+\.rb|#{CoverMe.config.project.root}\/lib\/.+\.rb)/ix (default)
c.file_pattern # => /(#{CoverMe.config.project.root}\/app\/.+\.rb|#{CoverMe.config.project.root}\/lib\/.+\.rb)/i (default)

# where do you want the HTML generated:
c.html_formatter.output_path # => File.join(CoverMe.config.project.root, 'coverage') (default)
Expand Down

0 comments on commit f208c3b

Please sign in to comment.