Skip to content

Commit f178f0c

Browse files
committed
Documentation
1 parent 1b4a0a6 commit f178f0c

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

README.md

-6
Original file line numberDiff line numberDiff line change
@@ -67,12 +67,6 @@ $ stree write --plugins=xml file.xml
6767
file.xml 1ms
6868
```
6969

70-
## Development
71-
72-
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
73-
74-
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
75-
7670
## Contributing
7771

7872
Bug reports and pull requests are welcome on GitHub at https://github.com/ruby-syntax-tree/syntax_tree-xml.

lib/syntax_tree/xml/visitor.rb

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
module SyntaxTree
44
module XML
5+
# Provides a visitor interface for visiting certain nodes. It's used
6+
# internally to implement formatting and pretty-printing. It could also be
7+
# used externally to visit a subset of nodes that are relevant to a certain
8+
# task.
59
class Visitor
610
def visit(node)
711
node&.accept(self)

0 commit comments

Comments
 (0)