module Jeweler::Generator::ShouldaMixin

Public Instance Methods

default_task() click to toggle source
# File lib/jeweler/generator/shoulda_mixin.rb, line 8
def default_task
  'test'
end
feature_support_extend() click to toggle source
# File lib/jeweler/generator/shoulda_mixin.rb, line 16
def feature_support_extend
  'Test::Unit::Assertions'
end
feature_support_require() click to toggle source
# File lib/jeweler/generator/shoulda_mixin.rb, line 12
def feature_support_require
  'test/unit/assertions'
end
test_dir() click to toggle source
# File lib/jeweler/generator/shoulda_mixin.rb, line 20
def test_dir
  'test'
end
test_filename() click to toggle source
# File lib/jeweler/generator/shoulda_mixin.rb, line 32
def test_filename
  "test_#{require_name}.rb"
end
test_helper_filename() click to toggle source
# File lib/jeweler/generator/shoulda_mixin.rb, line 36
def test_helper_filename
  "helper.rb"
end
test_pattern() click to toggle source
# File lib/jeweler/generator/shoulda_mixin.rb, line 28
def test_pattern
  'test/**/test_*.rb'
end
test_task() click to toggle source
# File lib/jeweler/generator/shoulda_mixin.rb, line 24
def test_task
  'test'
end

Public Class Methods

extended(generator) click to toggle source
# File lib/jeweler/generator/shoulda_mixin.rb, line 4
def self.extended(generator)
  generator.development_dependencies << ["shoulda", ">= 0"]
end