Sha256: 2690e55f57ee0220052b8ef25ac0b4100fe07ad7d027b24ee94d2311d6e14d49
Contents?: true
Size: 683 Bytes
Versions: 13
Compression:
Stored size: 683 Bytes
Contents
class Jeweler class Generator module ShouldaMixin def self.extended(generator) generator.development_dependencies << ["thoughtbot-shoulda", ">= 0"] 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 "test_#{require_name}.rb" end def test_helper_filename "helper.rb" end end end end
Version data entries
13 entries across 13 versions & 2 rubygems