module Jeweler::Generator::RiotMixin

Public Instance Methods

default_task() click to toggle source
# File lib/jeweler/generator/riot_mixin.rb, line 8
def default_task
  'test'
end
feature_support_extend() click to toggle source
# File lib/jeweler/generator/riot_mixin.rb, line 16
def feature_support_extend
  'Riot::Context'
end
feature_support_require() click to toggle source
# File lib/jeweler/generator/riot_mixin.rb, line 12
def feature_support_require
  'riot/context'
end
test_dir() click to toggle source
# File lib/jeweler/generator/riot_mixin.rb, line 20
def test_dir
  'test'
end
test_filename() click to toggle source
# File lib/jeweler/generator/riot_mixin.rb, line 32
def test_filename
  "#{require_name}_test.rb"
end
test_helper_filename() click to toggle source
# File lib/jeweler/generator/riot_mixin.rb, line 36
def test_helper_filename
  "teststrap.rb"
end
test_pattern() click to toggle source
# File lib/jeweler/generator/riot_mixin.rb, line 28
def test_pattern
  'test/**/*_test.rb'
end
test_task() click to toggle source
# File lib/jeweler/generator/riot_mixin.rb, line 24
def test_task
  'test'
end

Public Class Methods

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