Sha256: 3164a1875f6b35d058effd29bc474b0e2957071703d45dee5abe9d6f8bedd309

Contents?: true

Size: 508 Bytes

Versions: 13

Compression:

Stored size: 508 Bytes

Contents

module GeoCerts
  module Endpoints # :nodoc:
    
    module Hello # :nodoc:
      
      def self.included(base)
        base.class_eval do
          endpoint GeoCerts::API::ENDPOINT do
            
            action :hello, :url => '/hello.xml', :method => :post do
              parameter :hello, :required => true
              parser Parsers::OrderParser do
                element :hello
              end
            end
            
          end
        end
      end
      
    end
    
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
geocerts-1.0.1 lib/geo_certs/endpoints/hello.rb
geocerts-1.0.0 lib/geo_certs/endpoints/hello.rb
geocerts-0.0.25 lib/geo_certs/endpoints/hello.rb
geocerts-0.0.24 lib/geo_certs/endpoints/hello.rb
geocerts-0.0.23 lib/geo_certs/endpoints/hello.rb
geocerts-0.0.22 lib/geo_certs/endpoints/hello.rb
geocerts-0.0.21 lib/geo_certs/endpoints/hello.rb
geocerts-0.0.20 lib/geo_certs/endpoints/hello.rb
geocerts-0.0.19 lib/geo_certs/endpoints/hello.rb
geocerts-0.0.18 lib/geo_certs/endpoints/hello.rb
geocerts-0.0.17 lib/geo_certs/endpoints/hello.rb
geocerts-0.0.16 lib/geo_certs/endpoints/hello.rb
geocerts-0.0.15 lib/geo_certs/endpoints/hello.rb