Sha256: 84472f92f338a0ae464701c849803b37cc6145973a6783f3f17eb7a7a891aa24
Contents?: true
Size: 725 Bytes
Versions: 2
Compression:
Stored size: 725 Bytes
Contents
class Jeweler class Generator module RspecMixin def self.extended(generator) generator.development_dependencies << ["rspec", ">= 2.0.0.beta.19"] end def default_task 'spec' end def feature_support_require 'spec/expectations' end def feature_support_extend nil # Cucumber is smart enough extend Spec::Expectations on its own 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
jeweler-1.5.0.pre3 | lib/jeweler/generator/rspec_mixin.rb |
jeweler-1.5.0.pre2 | lib/jeweler/generator/rspec_mixin.rb |