guillaumegentil-rspactor 0.5.1 → 0.5.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -68,13 +68,13 @@ module RSpactor
68
68
  candidates << 'controllers' << 'helpers' << 'views' << 'routing'
69
69
  when 'config/database.yml', 'db/schema.rb', 'spec/factories.rb'
70
70
  candidates << 'models'
71
- when 'config/boot.rb', 'config/environment.rb', %r:^config/environments/:, %r:^config/initializers/:, %r:^vendor/:
71
+ when 'config/boot.rb', 'config/environment.rb', %r:^config/environments/:, %r:^config/initializers/:, %r:^vendor/:, 'spec/spec_helper.rb'
72
72
  Spork.reload if runner.options[:spork]
73
73
  Celerity.restart if runner.options[:celerity]
74
74
  candidates << 'spec'
75
75
  when %r:^config/:
76
76
  # nothing
77
- when %r:^(spec/(spec_helper|shared/.*)|config/(boot|environment(s/test)?))\.rb$:, 'spec/spec.opts'
77
+ when %r:^(spec/(spec_helper|shared/.*)|config/(boot|environment(s/test)?))\.rb$:, 'spec/spec.opts', 'spec/fakeweb.rb'
78
78
  candidates << 'spec'
79
79
  else
80
80
  candidates << spec_file
@@ -10,7 +10,7 @@ module RSpactor
10
10
  ticker
11
11
  end
12
12
 
13
- def self.ticker_msg(msg, seconds_to_wait = 2)
13
+ def self.ticker_msg(msg, seconds_to_wait = 3)
14
14
  $stdout.print msg
15
15
  seconds_to_wait.times do
16
16
  $stdout.print('.')
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: guillaumegentil-rspactor
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.1
4
+ version: 0.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - "Mislav Marohni\xC4\x87"
@@ -12,7 +12,7 @@ autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
14
 
15
- date: 2009-08-12 00:00:00 -07:00
15
+ date: 2009-08-26 00:00:00 -07:00
16
16
  default_executable: rspactor
17
17
  dependencies: []
18
18
 
@@ -47,7 +47,6 @@ files:
47
47
  - LICENSE
48
48
  has_rdoc: false
49
49
  homepage: http://github.com/guillaumegentil/rspactor
50
- licenses:
51
50
  post_install_message:
52
51
  rdoc_options: []
53
52
 
@@ -68,7 +67,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
68
67
  requirements: []
69
68
 
70
69
  rubyforge_project:
71
- rubygems_version: 1.3.5
70
+ rubygems_version: 1.2.0
72
71
  signing_key:
73
72
  specification_version: 3
74
73
  summary: RSpactor is a command line tool to automatically run your changed specs & cucumber features (much like autotest).