Sha256: 65eff3bb4e4ad74863a61e64fb7363a6850f57f56f1baf71d98f851540863a4d
Contents?: true
Size: 678 Bytes
Versions: 5
Compression:
Stored size: 678 Bytes
Contents
class Jeweler class Generator module ShouldaMixin def self.extended(generator) generator.development_dependencies << "thoughtbot-shoulda" end def default_task 'test' end def feature_support_require 'test/unit/assertions' end def feature_support_extend 'Test::Unit::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