Sha256: c07c5d4dcb834d93ae74420e88c2cdf48a73ebd55898be3aa66849eaa7b7a24c
Contents?: true
Size: 615 Bytes
Versions: 15
Compression:
Stored size: 615 Bytes
Contents
class Jeweler class Generator module BaconMixin def default_task 'spec' end def feature_support_require 'test/unit/assertions' end def feature_support_extend 'Test::Unit::Assertions' # NOTE can't use bacon inside of cucumber actually end def test_dir 'spec' end def test_task 'spec' end def test_pattern 'spec/**/*_spec.rb' end def test_filename "#{require_name}_spec.rb" end def test_helper_filename "spec_helper.rb" end end end end
Version data entries
15 entries across 15 versions & 6 rubygems