rcov_rails 0.1.0 → 0.1.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.
@@ -0,0 +1,10 @@
1
+ require 'rails'
2
+ module RcovRails
3
+ class Railtie < Rails::Railtie
4
+ railtie_name :rcov_rails
5
+
6
+ rake_tasks do
7
+ load "lib/tasks/coverage.rake"
8
+ end
9
+ end
10
+ end
data/lib/rcov_rails.rb ADDED
@@ -0,0 +1,4 @@
1
+ module RcovRails
2
+ require 'rcov_rails/railtie'
3
+ end
4
+
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 0
9
- version: 0.1.0
8
+ - 1
9
+ version: 0.1.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Matthew Rudy Jacobs
@@ -29,6 +29,8 @@ extra_rdoc_files:
29
29
  files:
30
30
  - MIT-LICENSE
31
31
  - README
32
+ - lib/rcov_rails/railtie.rb
33
+ - lib/rcov_rails.rb
32
34
  - lib/tasks/coverage.rake
33
35
  has_rdoc: true
34
36
  homepage: http://github.com/matthewrudy/rcov_rails