Sha256: 9a832366c0666a043023d4a56da471c69961d9b1e37ed74a4b15b76f1abb86ee
Contents?: true
Size: 672 Bytes
Versions: 120
Compression:
Stored size: 672 Bytes
Contents
class Jeweler class Generator module ShouldaMixin def self.extended(generator) generator.development_dependencies << ["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
120 entries across 66 versions & 6 rubygems