Sha256: 2855dd9f6fa559e18cc82779dfc164b71a7c8d49de8dd8bf8513cc59853fb034
Contents?: true
Size: 719 Bytes
Versions: 11
Compression:
Stored size: 719 Bytes
Contents
class Juwelier class Generator module RspecMixin def self.extended(generator) generator.development_dependencies << ["rspec", "~> 3.5.0"] end def default_task 'spec' end def feature_support_require 'rspec/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
11 entries across 11 versions & 1 rubygems