Sha256: f4b4118203f7b74458154d5c02831f6b746a662f56cb1d40bc021e5ea7a2ded6
Contents?: true
Size: 717 Bytes
Versions: 13
Compression:
Stored size: 717 Bytes
Contents
class Jeweler class Generator module RspecMixin def self.extended(generator) generator.development_dependencies << ["rspec", ">= 1.2.9"] 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
13 entries across 13 versions & 2 rubygems