Sha256: e19549222748bf8d4043d71fbcf927e8f53a7cbd01f3c8f5eb6eb38f053b6ce6
Contents?: true
Size: 700 Bytes
Versions: 9
Compression:
Stored size: 700 Bytes
Contents
class Bueller class Generator module ShindoMixin def self.extended(generator) generator.development_dependencies << 'shindo' end def default_task 'tests' end def feature_support_require # 'test/unit/assertions' nil end def feature_support_extend # 'Test::Unit::Assertions' nil end def test_dir 'tests' end def test_task 'tests' end def test_pattern 'tests/**/*_tests.rb' end def test_filename "#{require_name}_tests.rb" end def test_helper_filename "tests_helper.rb" end end end end
Version data entries
9 entries across 9 versions & 1 rubygems