Class: RSpec::Core::RakeTask

Inherits:
Rake::TaskLib
  • Object
show all
Includes:
Rake::DSL
Defined in:
lib/rspec/core/rake_task.rb

Instance Attribute Summary (collapse)

Instance Method Summary (collapse)

Constructor Details

- (RakeTask) initialize(*args, &task_block)

A new instance of RakeTask



116
117
118
119
120
121
122
123
124
125
126
127
# File 'lib/rspec/core/rake_task.rb', line 116

def initialize(*args, &task_block)
  setup_ivars(args)

  desc "Run RSpec code examples" unless ::Rake.application.last_comment

  task name, *args do |_, task_args|
    RakeFileUtils.send(:verbose, verbose) do
      task_block.call(*[self, task_args].slice(0, task_block.arity)) if task_block
      run_task verbose
    end
  end
end

Instance Attribute Details

- (Object) fail_on_error

Whether or not to fail Rake when an error occurs (typically when examples fail).

default: true



53
54
55
# File 'lib/rspec/core/rake_task.rb', line 53

def fail_on_error
  @fail_on_error
end

- (Object) failure_message

A message to print to stderr when there are failures.



56
57
58
# File 'lib/rspec/core/rake_task.rb', line 56

def failure_message
  @failure_message
end

- (Object) name

Name of task.

default: :spec



16
17
18
# File 'lib/rspec/core/rake_task.rb', line 16

def name
  @name
end

- (Object) pattern

Glob pattern to match files.

default: 'spec/*/_spec.rb'



22
23
24
# File 'lib/rspec/core/rake_task.rb', line 22

def pattern
  @pattern
end

- (Object) rcov

Use rcov for code coverage?

Due to the many ways rcov can run, if this option is enabled, it is required that require 'rspec/autorun' appears in spec_helper.rb

default: false



72
73
74
# File 'lib/rspec/core/rake_task.rb', line 72

def rcov
  @rcov
end

- (Object) rcov_opts

Command line options to pass to rcov.

default: nil



84
85
86
# File 'lib/rspec/core/rake_task.rb', line 84

def rcov_opts
  @rcov_opts
end

- (Object) rcov_path

Path to rcov.

default: 'rcov'



78
79
80
# File 'lib/rspec/core/rake_task.rb', line 78

def rcov_path
  @rcov_path
end

- (Object) rspec_opts

Command line options to pass to rspec.

default: nil



102
103
104
# File 'lib/rspec/core/rake_task.rb', line 102

def rspec_opts
  @rspec_opts
end

- (Object) rspec_path

Path to rspec

default: 'rspec'



96
97
98
# File 'lib/rspec/core/rake_task.rb', line 96

def rspec_path
  @rspec_path
end

- (Object) ruby_opts

Command line options to pass to ruby.

default: nil



90
91
92
# File 'lib/rspec/core/rake_task.rb', line 90

def ruby_opts
  @ruby_opts
end

- (Object) verbose

Use verbose output. If this is set to true, the task will print the executed spec command to stdout.

default: true



63
64
65
# File 'lib/rspec/core/rake_task.rb', line 63

def verbose
  @verbose
end

Instance Method Details

- (Object) gemfile=

Deprecated.

Has no effect. The rake task now checks ENV['BUNDLE_GEMFILE'] instead.



32
33
34
# File 'lib/rspec/core/rake_task.rb', line 32

def gemfile=(*)
  RSpec.deprecate("RSpec::Core::RakeTask#gemfile=", :replacement => 'ENV["BUNDLE_GEMFILE"]')
end

- (Object) run_task(verbose)



140
141
142
143
144
145
146
147
148
149
150
# File 'lib/rspec/core/rake_task.rb', line 140

def run_task(verbose)
  command = spec_command

  begin
    puts command if verbose
    success = system(command)
  rescue
    puts failure_message if failure_message
  end
  abort("#{command} failed") if fail_on_error unless success
end

- (Object) setup_ivars(args)



129
130
131
132
133
134
135
136
137
138
# File 'lib/rspec/core/rake_task.rb', line 129

def setup_ivars(args)
  @name = args.shift || :spec
  @rcov_opts, @ruby_opts, @rspec_opts = nil, nil, nil
  @warning, @rcov = false, false
  @verbose, @fail_on_error = true, true

  @rcov_path  = 'rcov'
  @rspec_path = 'rspec'
  @pattern    = './spec{,/*/**}/*_spec.rb'
end

- (Object) skip_bundler=

Deprecated.

Has no effect. The rake task now checks ENV['BUNDLE_GEMFILE'] instead.



26
27
28
# File 'lib/rspec/core/rake_task.rb', line 26

def skip_bundler=(*)
  RSpec.deprecate("RSpec::Core::RakeTask#skip_bundler=")
end

- (Object) spec_opts=(opts)

Deprecated.

Use rspec_opts instead.

Command line options to pass to rspec.

default: nil



111
112
113
114
# File 'lib/rspec/core/rake_task.rb', line 111

def spec_opts=(opts)
  RSpec.deprecate('RSpec::Core::RakeTask#spec_opts=', :replacement => 'rspec_opts=')
  @rspec_opts = opts
end

- (Object) warning=(true_or_false)

Deprecated.

Use ruby_opts="-w" instead.

When true, requests that the specs be run with the warning flag set. e.g. "ruby -w"

default: false



44
45
46
47
# File 'lib/rspec/core/rake_task.rb', line 44

def warning=(true_or_false)
  RSpec.deprecate("RSpec::Core::RakeTask#warning=", :replacement => 'ruby_opts="-w"')
  @warning = true_or_false
end