Skip to content

Commit

Permalink
update softinio rss feed url in multiple places
Browse files Browse the repository at this point in the history
  • Loading branch information
softinio committed Mar 18, 2024
1 parent 8c5314e commit eb7da27
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 9 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
next/next.md
scalanews

# sbt
target/
Expand Down
2 changes: 1 addition & 1 deletion config.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{
"name": "Salar Rahmanian",
"url": "https://www.softinio.com",
"rss": "https://www.softinio.com/index.xml"
"rss": "https://www.softinio.com/atom.xml"
},
{
"name": "Scala Lang",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class BloggersSuite extends CatsEffectSuite {
val blog = Blog(
"Salar Rahmanian",
new URI("https://www.softinio.com"),
new URI("https://www.softinio.com/index.xml")
new URI("https://www.softinio.com/atom.xml")
)
val obtained = for {
result <- Bloggers.getArticlesForBlogger(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class HttpClientSuite extends CatsEffectSuite {

implicit val runtime: IORuntime = cats.effect.unsafe.IORuntime.global
test("Fetch Rss") {
val result = HttpClient.fetchRss("https://www.softinio.com/index.xml")
val result = HttpClient.fetchRss("https://www.softinio.com/atom.xml")
val obtained = result.use { res =>
val resultStr = new String(res.readAllBytes)
IO(resultStr.contains("lightening-talks-at-pybay-2018"))
Expand Down
2 changes: 1 addition & 1 deletion core/src/test/scala/com/softinio/scalanews/RomeSuite.scala
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class RomeSuite extends CatsEffectSuite {

test("Fetch Feed") {
val obtained: IO[Boolean] = for {
result <- Rome.fetchFeed("https://www.softinio.com/index.xml")
result <- Rome.fetchFeed("https://www.softinio.com/atom.xml")
} yield {
result match {
case Right(feed) => {
Expand Down
8 changes: 4 additions & 4 deletions docs/Resources/Blog_Directory.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@

# Blog Directory

# Blog Directory

A Directory of bloggers producing Scala related content with links to their rss feed when available.

| Blog | URL | RSS Feed |
| ------------- |:-------------:| -----:|
| Salar Rahmanian | <https://www.softinio.com> | [rss feed](https://www.softinio.com/index.xml) |
| Salar Rahmanian | <https://www.softinio.com> | [rss feed](https://www.softinio.com/atom.xml) |
| Scala Lang | <https://www.scala-lang.org/blog/> | [rss feed](https://www.scala-lang.org/feed/blog.xml) |
| Typelevel | <https://typelevel.org/blog/> | [rss feed](https://typelevel.org/blog/feed.rss) |
| Michael Pilquist | <https://mpilquist.github.io/> | [rss feed](https://mpilquist.github.io/index.xml) |
Expand Down Expand Up @@ -35,7 +35,7 @@ A Directory of bloggers producing Scala related content with links to their rss
| Lachlan O'Dea | <https://lachlan.hashnode.dev> | [rss feed](https://lachlan.hashnode.dev/rss.xml) |
| SoftwareMill | <https://softwaremill.com/blog/> | [rss feed](https://softwaremill.com/blog.rss) |
| Ruslan Shevchenko | <https://github.com/rssh/notes> | [rss feed](https://rssh.github.io/notes/feed.xml) |

###### Got a Scala related blog? Add it to this Blog Directory!

See [README](https://github.com/softinio/scalanews/blob/main/README.md) for details.

0 comments on commit eb7da27

Please sign in to comment.