Skip to content

Commit

Permalink
fix links in documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
xlgmokha committed Mar 3, 2018
1 parent c70a62f commit 571bf4d
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion lib/saml/kit/bindings/binding.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module Saml
module Kit
module Bindings
# {include:file:spec/saml/bindings/binding_spec.rb}
# {include:file:spec/saml/kit/bindings/binding_spec.rb}
class Binding
attr_reader :binding, :location

Expand Down
2 changes: 1 addition & 1 deletion lib/saml/kit/bindings/http_post.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module Saml
module Kit
module Bindings
# {include:file:spec/saml/bindings/http_post_spec.rb}
# {include:file:spec/saml/kit/bindings/http_post_spec.rb}
class HttpPost < Binding
include Serializable

Expand Down
2 changes: 1 addition & 1 deletion lib/saml/kit/bindings/http_redirect.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module Saml
module Kit
module Bindings
# {include:file:spec/saml/bindings/http_redirect_spec.rb}
# {include:file:spec/saml/kit/bindings/http_redirect_spec.rb}
class HttpRedirect < Binding
include Serializable

Expand Down
2 changes: 1 addition & 1 deletion lib/saml/kit/bindings/url_builder.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module Saml
module Kit
module Bindings
# {include:file:spec/saml/bindings/url_builder_spec.rb}
# {include:file:spec/saml/kit/bindings/url_builder_spec.rb}
class UrlBuilder
include Serializable
attr_reader :configuration
Expand Down
2 changes: 1 addition & 1 deletion lib/saml/kit/builders/authentication_request.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module Saml
module Kit
module Builders
# {include:file:lib/saml/kit/builders/templates/authentication_request.builder}
# {include:file:spec/saml/builders/authentication_request_spec.rb}
# {include:file:spec/saml/kit/builders/authentication_request_spec.rb}
class AuthenticationRequest
include XmlTemplatable
attr_accessor :id, :now, :issuer, :assertion_consumer_service_url, :name_id_format, :destination
Expand Down
2 changes: 1 addition & 1 deletion lib/saml/kit/builders/identity_provider_metadata.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module Saml
module Kit
module Builders
# {include:file:lib/saml/kit/builders/templates/identity_provider_metadata.builder}
# {include:file:spec/saml/builders/identity_provider_metadata_spec.rb}
# {include:file:spec/saml/kit/builders/identity_provider_metadata_spec.rb}
class IdentityProviderMetadata
include XmlTemplatable
extend Forwardable
Expand Down
2 changes: 1 addition & 1 deletion lib/saml/kit/builders/logout_request.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module Saml
module Kit
module Builders
# {include:file:lib/saml/kit/builders/templates/logout_request.builder}
# {include:file:spec/saml/builders/logout_request_spec.rb}
# {include:file:spec/saml/kit/builders/logout_request_spec.rb}
class LogoutRequest
include XmlTemplatable
attr_accessor :id, :destination, :issuer, :name_id_format, :now
Expand Down
2 changes: 1 addition & 1 deletion lib/saml/kit/builders/logout_response.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module Saml
module Kit
module Builders
# {include:file:lib/saml/kit/builders/templates/logout_response.builder}
# {include:file:spec/saml/builders/logout_response_spec.rb}
# {include:file:spec/saml/kit/builders/logout_response_spec.rb}
class LogoutResponse
include XmlTemplatable
attr_accessor :id, :issuer, :version, :status_code, :now, :destination
Expand Down
2 changes: 1 addition & 1 deletion lib/saml/kit/builders/metadata.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module Saml
module Kit
module Builders
# {include:file:lib/saml/kit/builders/templates/metadata.builder}
# {include:file:spec/saml/builders/metadata_spec.rb}
# {include:file:spec/saml/kit/builders/metadata_spec.rb}
class Metadata
include XmlTemplatable

Expand Down
2 changes: 1 addition & 1 deletion lib/saml/kit/builders/response.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module Saml
module Kit
module Builders
# {include:file:lib/saml/kit/builders/templates/response.builder}
# {include:file:spec/saml/builders/response_spec.rb}
# {include:file:spec/saml/kit/builders/response_spec.rb}
class Response
include XmlTemplatable
attr_reader :user, :request
Expand Down
2 changes: 1 addition & 1 deletion lib/saml/kit/builders/service_provider_metadata.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module Saml
module Kit
module Builders
# {include:file:lib/saml/kit/builders/templates/service_provider_metadata.builder}
# {include:file:spec/saml/builders/service_provider_metadata_spec.rb}
# {include:file:spec/saml/kit/builders/service_provider_metadata_spec.rb}
class ServiceProviderMetadata
include XmlTemplatable
extend Forwardable
Expand Down
2 changes: 1 addition & 1 deletion lib/saml/kit/default_registry.rb
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ module Kit
# configuration.logger = Rails.logger
# end
#
# {include:file:spec/saml/default_registry_spec.rb}
# {include:file:spec/saml/kit/default_registry_spec.rb}
class DefaultRegistry
include Enumerable

Expand Down
2 changes: 1 addition & 1 deletion lib/saml/kit/invalid_document.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module Saml
module Kit
# {include:file:spec/saml/invalid_document_spec.rb}
# {include:file:spec/saml/kit/invalid_document_spec.rb}
class InvalidDocument < Document
validate do |model|
model.errors[:base] << model.error_message(:invalid)
Expand Down

0 comments on commit 571bf4d

Please sign in to comment.