Sha256: 060f57d7046dc14875e12de3da22af83d9b99ee7b3603c1eef23b7acebdbcc36
Contents?: true
Size: 709 Bytes
Versions: 10
Compression:
Stored size: 709 Bytes
Contents
class Jeweler class Generator module ShindoMixin def self.extended(generator) generator.development_dependencies << ['shindo', '>= 0'] 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
10 entries across 10 versions & 1 rubygems