~ubuntu-branches/ubuntu/wily/ruby-xpath/wily-proposed

« back to all changes in this revision

Viewing changes to lib/xpath/literal.rb

  • Committer: Package Import Robot
  • Author(s): Markus Tornow
  • Date: 2012-12-08 22:57:18 UTC
  • Revision ID: package-import@ubuntu.com-20121208225718-6n9jpw8w8la9x2hr
Tags: upstream-1.0.0
ImportĀ upstreamĀ versionĀ 1.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
module XPath
 
2
  class Literal
 
3
    attr_reader :value
 
4
    def initialize(value)
 
5
      @value = value
 
6
    end
 
7
  end
 
8
end