class Cucumber::Core::Gherkin::Document
Attributes
Public Class Methods
Source
# File lib/cucumber/core/gherkin/document.rb, line 9 def initialize(uri, body, language = nil) @uri = uri @body = body @language = language || 'en' end
Public Instance Methods
Source
# File lib/cucumber/core/gherkin/document.rb, line 19 def ==(other) to_s == other.to_s end