auto_test 0.0.8.7 → 0.0.8.8

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.
data/lib/auto_test.rb CHANGED
@@ -16,6 +16,9 @@ module AutoTest
16
16
  self.configuration ||= Configuration.new
17
17
  yield(configuration)
18
18
  end
19
+ def self.start_rspec
20
+ %x(rspec 'lib/spec/requests/auto_spec.rb -o 'log/rspec.txt'')
21
+ end
19
22
 
20
23
  class Configuration
21
24
  def initialize
@@ -26,9 +29,7 @@ module AutoTest
26
29
  DatabaseCleaner.clean
27
30
  end
28
31
 
29
- def self.start_rspec
30
- %x(rspec 'lib/spec/requests/auto_spec.rb -o 'log/rspec.txt'')
31
- end
32
+
32
33
 
33
34
  def links_to_exclude(*links)
34
35
  Dsl.links_to_exclude(*links)
@@ -1,3 +1,3 @@
1
1
  module AutoTest
2
- VERSION = "0.0.8.7"
2
+ VERSION = "0.0.8.8"
3
3
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: auto_test
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.0.8.7
5
+ version: 0.0.8.8
6
6
  platform: ruby
7
7
  authors:
8
8
  - Maike Hargens