Module: Jeweler::Generator::RspecMixin
- Defined in:
- lib/jeweler/generator/rspec_mixin.rb
Instance Method Summary collapse
- #default_task ⇒ Object
- #feature_support_extend ⇒ Object
- #feature_support_require ⇒ Object
- #test_dir ⇒ Object
- #test_filename ⇒ Object
- #test_helper_filename ⇒ Object
- #test_pattern ⇒ Object
- #test_task ⇒ Object
Instance Method Details
#default_task ⇒ Object
5 6 7 |
# File 'lib/jeweler/generator/rspec_mixin.rb', line 5 def default_task 'spec' end |
#feature_support_extend ⇒ Object
13 14 15 |
# File 'lib/jeweler/generator/rspec_mixin.rb', line 13 def feature_support_extend nil # Cucumber is smart enough extend Spec::Expectations on its own end |
#feature_support_require ⇒ Object
9 10 11 |
# File 'lib/jeweler/generator/rspec_mixin.rb', line 9 def feature_support_require 'spec/expectations' end |
#test_dir ⇒ Object
17 18 19 |
# File 'lib/jeweler/generator/rspec_mixin.rb', line 17 def test_dir 'spec' end |
#test_filename ⇒ Object
29 30 31 |
# File 'lib/jeweler/generator/rspec_mixin.rb', line 29 def test_filename "#{require_name}_spec.rb" end |
#test_helper_filename ⇒ Object
33 34 35 |
# File 'lib/jeweler/generator/rspec_mixin.rb', line 33 def test_helper_filename "spec_helper.rb" end |
#test_pattern ⇒ Object
25 26 27 |
# File 'lib/jeweler/generator/rspec_mixin.rb', line 25 def test_pattern 'spec/**/*_spec.rb' end |
#test_task ⇒ Object
21 22 23 |
# File 'lib/jeweler/generator/rspec_mixin.rb', line 21 def test_task 'spec' end |