Sha256: 4a03e5567c44dd686cbde6b1e48933d485fe9d735e18dcd9779e83d76f7e3be8
Contents?: true
Size: 703 Bytes
Versions: 5
Compression:
Stored size: 703 Bytes
Contents
class Jeweler class Generator module RspecMixin def self.extended(generator) generator.development_dependencies << "rspec" end def default_task 'spec' end def feature_support_require 'spec/expectations' end def feature_support_extend nil # Cucumber is smart enough extend Spec::Expectations on its own end def test_dir 'spec' end def test_task 'spec' end def test_pattern 'spec/**/*_spec.rb' end def test_filename "#{require_name}_spec.rb" end def test_helper_filename "spec_helper.rb" end end end end
Version data entries
5 entries across 5 versions & 4 rubygems