Sha256: 64872d19c205d1bd039df1f0e0247ae65354731db37c2d380ac918a5a3627c2f

Contents?: true

Size: 755 Bytes

Versions: 6

Compression:

Stored size: 755 Bytes

Contents

#
# Description
#
# Author:: Robert Sharp
# Copyright:: Copyright (c) 2010 Robert Sharp
# License:: Open Software Licence v3.0
#
# This software is licensed for use under the Open Software Licence v. 3.0
# The terms of this licence can be found at http://www.opensource.org/licenses/osl-3.0.php
# and in the file copyright.txt. Under the terms of this licence, all derivative works
# must themselves be licensed under the Open Software Licence v. 3.0
# 
#
require 'jerbil/jerbil_service/base'

# Test Service for Jerbil

class BadTestService < JerbilService::Base
  
  def initialize(pkey, options)
    super(:rubynonsense, :test, pkey, options)
  end

  def action
    @logger.debug("Someone called the action method!")
    return "Hello"
  end
  
end


Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
jerbil-1.4.8 test/bad_test_service.rb
jerbil-1.4.7 test/bad_test_service.rb
jerbil-1.4.6 test/bad_test_service.rb
jerbil-1.4.5 test/bad_test_service.rb
jerbil-1.3.3 test/bad_test_service.rb
jerbil-1.2.2 test/bad_test_service.rb