Sha256: 0142850fee5ccabfb0b1d529ac6d91e00aed20bb0a7fb28dc52a2b9190b3d9e4

Contents?: true

Size: 845 Bytes

Versions: 6

Compression:

Stored size: 845 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'
require 'jerbil/jerbil_service/support'

# Test Service for Jerbil

module RubyTest

  extend JerbilService::Support

  class Service < JerbilService::Base

    def initialize(pkey, options)
      super(:rubytest, pkey, options)
    end

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

  end

end

Version data entries

6 entries across 6 versions & 1 rubygems

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