Sha256: 0f80e6caed2614e4e4b7677914cb1a531c1e40c8988f1f5ec27ed3cc09f15d7b
Contents?: true
Size: 658 Bytes
Versions: 5
Compression:
Stored size: 658 Bytes
Contents
class Jeweler class Generator module MinitestMixin def self.extended(generator) generator.development_dependencies << "minitest" end def default_task 'test' end def feature_support_require 'mini/test' end def feature_support_extend 'Mini::Test::Assertions' end def test_dir 'test' end def test_task 'test' end def test_pattern 'test/**/*_test.rb' end def test_filename "#{require_name}_test.rb" end def test_helper_filename "test_helper.rb" end end end end
Version data entries
5 entries across 5 versions & 4 rubygems