RSS feed generator. Crystal small implementation of dylang/node-rss
TODO: Write a detailed description here
Add this to your application's shard.yml
:
dependencies:
RSS:
github: ga2mer/RSS.cr
require "RSS"
# create feed
feed = RSS.new title: "Simple RSS Feed"
# add item to feed
feed.item(
title: "Simple item",
link: "http://example.com/simple-item"
)
# get XML of feed
xml = feed.xml indent: true
TODO: Write more usage instructions here
TODO: Write development instructions here
- Fork it ( https://github.com/ga2mer/RSS.cr/fork )
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Add some feature')
- Push to the branch (git push origin my-new-feature)
- Create a new Pull Request
- ga2mer Nikita Savyolov - creator, maintainer