Sha256: fd22c862ec44b28c61b0937fb99ea2fa5978fa75cb72371dec1ebc06af5cf486
Contents?: true
Size: 715 Bytes
Versions: 5
Compression:
Stored size: 715 Bytes
Contents
class Jeweler class Generator module BaconMixin def self.extended(generator) generator.development_dependencies << "bacon" end def default_task 'spec' end def feature_support_require 'test/unit/assertions' end def feature_support_extend 'Test::Unit::Assertions' # NOTE can't use bacon inside of cucumber actually 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