module Jeweler::Generator::RspecMixin

def self.extended(generator)

def self.extended(generator)
  generator.development_dependencies << ['rspec', '~> 3.5.0']
end

def default_task

def default_task
  'spec'
end

def feature_support_extend

def feature_support_extend
  nil # Cucumber is smart enough extend Spec::Expectations on its own
end

def feature_support_require

def feature_support_require
  'rspec/expectations'
end

def test_dir

def test_dir
  'spec'
end

def test_filename

def test_filename
  "#{require_name}_spec.rb"
end

def test_helper_filename

def test_helper_filename
  'spec_helper.rb'
end

def test_pattern

def test_pattern
  'spec/**/*_spec.rb'
end

def test_task

def test_task
  'spec'
end