Sha256: 54aa6fa4b6e1b537302bf8dba5dab66313a910483ffb71def973770e79ffdc8e
Contents?: true
Size: 666 Bytes
Versions: 17
Compression:
Stored size: 666 Bytes
Contents
class Juwelier class Generator module MinitestMixin def self.extended(generator) generator.development_dependencies << ["minitest", ">= 0"] end def default_task 'test' end def feature_support_require 'minitest/unit' end def feature_support_extend 'MiniTest::Assertions' end def test_dir 'test' end def test_task 'test' end def test_pattern 'test/**/test_*.rb' end def test_filename "test_#{require_name}.rb" end def test_helper_filename "helper.rb" end end end end
Version data entries
17 entries across 17 versions & 1 rubygems