podcast_api 1.0.3 → 1.0.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1cf40b753df32817c503a92af7e2f2d7be1f1c415d96669d4171e023ead83427
4
- data.tar.gz: 4872c474ca68e1bd591b210d20f87197e4e59878ca320671da569858d9040a97
3
+ metadata.gz: f20f5891bcba8323bc913b400e6d1dc3ffaf42493b0b600cbb7572635ca0e316
4
+ data.tar.gz: 6dd62079b0a692f09084e43dabd035cfd964502f09bf34ede83b8244a28f16cc
5
5
  SHA512:
6
- metadata.gz: e157cad1c32c9a3a943dc1a7bcdcdb4cff61fa1eba0d50d97e9f61329439551ceb0562030cba1636baa5cfb6115f0b9e451d6e7101ddd44d1caaf8c27ab8e838
7
- data.tar.gz: 6eaf9388a8fc8a49bdd5ece571af1e8533c2b20d663813359c7f077c7ffd8a3bdbe3491e6d4bcc6eda4fa6fed776b7bebaebaed2ad2bca5bbf8ecd9be86aff8c
6
+ metadata.gz: 00ecab7f300416544feb149e7ea3f44a83d853a067adfb4e9cdf3ee07b79545c0740d32a60ee5e367061a32de4db91fe8dfbb24fbf00ca75168f9f1030a7d728
7
+ data.tar.gz: 861c5e4c1323ab5937f874bae95f37e5e7d14e4296be51bc5e35183875f6994dfc2a117b37793f79ce25b75248b3b43eb048e9d3b39108fb9033cebc32fb0c4f
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- podcast_api (1.0.3)
4
+ podcast_api (1.0.4)
5
5
  httparty
6
6
 
7
7
  GEM
data/README.md CHANGED
@@ -91,7 +91,6 @@ end
91
91
 
92
92
  If `api_key` is nil, then we'll connect to a [mock server](https://www.listennotes.com/api/tutorials/#faq0) that returns fake data for testing purposes.
93
93
 
94
- You can see all available API endpoints and parameters on the API Docs page at [listennotes.com/api/docs/](https://www.listennotes.com/api/docs/).
95
94
 
96
95
  ### Handling exceptions
97
96
 
@@ -137,7 +136,7 @@ Example:
137
136
 
138
137
  require "podcast_api"
139
138
 
140
- # If api_key is None, the sdk will connect to a mock server that'll
139
+ # If api_key is nil, the sdk will connect to a mock server that'll
141
140
  # return fake data for testing purpose
142
141
  api_key = ENV["LISTEN_API_KEY"]
143
142
  client = PodcastApi::Client.new(api_key: api_key)
@@ -156,7 +155,7 @@ See all available parameters on the [API Docs page](https://www.listennotes.com/
156
155
 
157
156
  ```json
158
157
  {
159
- "took": 0.305,
158
+ "took": 0.693,
160
159
  "count": 10,
161
160
  "total": 9499,
162
161
  "results": [
@@ -974,7 +973,7 @@ Example:
974
973
 
975
974
  require "podcast_api"
976
975
 
977
- # If api_key is None, the sdk will connect to a mock server that'll
976
+ # If api_key is nil, the sdk will connect to a mock server that'll
978
977
  # return fake data for testing purpose
979
978
  api_key = ENV["LISTEN_API_KEY"]
980
979
  client = PodcastApi::Client.new(api_key: api_key)
@@ -1183,7 +1182,7 @@ Example:
1183
1182
 
1184
1183
  require "podcast_api"
1185
1184
 
1186
- # If api_key is None, the sdk will connect to a mock server that'll
1185
+ # If api_key is nil, the sdk will connect to a mock server that'll
1187
1186
  # return fake data for testing purpose
1188
1187
  api_key = ENV["LISTEN_API_KEY"]
1189
1188
  client = PodcastApi::Client.new(api_key: api_key)
@@ -1736,7 +1735,7 @@ Example:
1736
1735
 
1737
1736
  require "podcast_api"
1738
1737
 
1739
- # If api_key is None, the sdk will connect to a mock server that'll
1738
+ # If api_key is nil, the sdk will connect to a mock server that'll
1740
1739
  # return fake data for testing purpose
1741
1740
  api_key = ENV["LISTEN_API_KEY"]
1742
1741
  client = PodcastApi::Client.new(api_key: api_key)
@@ -2142,7 +2141,7 @@ Example:
2142
2141
 
2143
2142
  require "podcast_api"
2144
2143
 
2145
- # If api_key is None, the sdk will connect to a mock server that'll
2144
+ # If api_key is nil, the sdk will connect to a mock server that'll
2146
2145
  # return fake data for testing purpose
2147
2146
  api_key = ENV["LISTEN_API_KEY"]
2148
2147
  client = PodcastApi::Client.new(api_key: api_key)
@@ -2313,7 +2312,7 @@ Example:
2313
2312
 
2314
2313
  require "podcast_api"
2315
2314
 
2316
- # If api_key is None, the sdk will connect to a mock server that'll
2315
+ # If api_key is nil, the sdk will connect to a mock server that'll
2317
2316
  # return fake data for testing purpose
2318
2317
  api_key = ENV["LISTEN_API_KEY"]
2319
2318
  client = PodcastApi::Client.new(api_key: api_key)
@@ -2504,7 +2503,7 @@ Example:
2504
2503
 
2505
2504
  require "podcast_api"
2506
2505
 
2507
- # If api_key is None, the sdk will connect to a mock server that'll
2506
+ # If api_key is nil, the sdk will connect to a mock server that'll
2508
2507
  # return fake data for testing purpose
2509
2508
  api_key = ENV["LISTEN_API_KEY"]
2510
2509
  client = PodcastApi::Client.new(api_key: api_key)
@@ -3824,7 +3823,7 @@ Example:
3824
3823
 
3825
3824
  require "podcast_api"
3826
3825
 
3827
- # If api_key is None, the sdk will connect to a mock server that'll
3826
+ # If api_key is nil, the sdk will connect to a mock server that'll
3828
3827
  # return fake data for testing purpose
3829
3828
  api_key = ENV["LISTEN_API_KEY"]
3830
3829
  client = PodcastApi::Client.new(api_key: api_key)
@@ -4039,7 +4038,7 @@ Example:
4039
4038
 
4040
4039
  require "podcast_api"
4041
4040
 
4042
- # If api_key is None, the sdk will connect to a mock server that'll
4041
+ # If api_key is nil, the sdk will connect to a mock server that'll
4043
4042
  # return fake data for testing purpose
4044
4043
  api_key = ENV["LISTEN_API_KEY"]
4045
4044
  client = PodcastApi::Client.new(api_key: api_key)
@@ -4714,7 +4713,7 @@ Example:
4714
4713
 
4715
4714
  require "podcast_api"
4716
4715
 
4717
- # If api_key is None, the sdk will connect to a mock server that'll
4716
+ # If api_key is nil, the sdk will connect to a mock server that'll
4718
4717
  # return fake data for testing purpose
4719
4718
  api_key = ENV["LISTEN_API_KEY"]
4720
4719
  client = PodcastApi::Client.new(api_key: api_key)
@@ -4761,11 +4760,11 @@ See all available parameters on the [API Docs page](https://www.listennotes.com/
4761
4760
  "listennotes_edit_url": "https://www.listennotes.com/e/6bbdd8cf36894d27b52c778db363319a/#edit"
4762
4761
  },
4763
4762
  {
4764
- "id": "55828aaa81ee4153a6f37c1af1fdccff",
4765
- "link": "https://allinchamathjason.libsyn.com/e21-media-misalignment-subjects-controlling-narratives-more-with-bestie-guestie-draymond-green?utm_source=listennotes.com&utm_campaign=Listen+Notes&utm_medium=website",
4766
- "audio": "https://www.listennotes.com/e/p/55828aaa81ee4153a6f37c1af1fdccff/",
4763
+ "id": "b9d13637a7074a3c990f9f166b728e1e",
4764
+ "link": "https://allinchamathjason.libsyn.com/e16-reflecting-on-the-riots-at-the-us-capitol-plus-georgia-runoff-elections-vaccine-distribution-more?utm_source=listennotes.com&utm_campaign=Listen+Notes&utm_medium=website",
4765
+ "audio": "https://www.listennotes.com/e/p/b9d13637a7074a3c990f9f166b728e1e/",
4767
4766
  "image": "https://cdn-images-1.listennotes.com/podcasts/all-in-with-chamath-jason-sacks-friedberg-NpyF_7WBYua-0eWaLuirNTJ.1400x1400.jpg",
4768
- "title": "E21: Media misalignment, subjects controlling narratives & more with bestie guestie Draymond Green",
4767
+ "title": "E16: Reflecting on the riots at the US Capitol, plus: Georgia runoff elections, vaccine distribution & more",
4769
4768
  "podcast": {
4770
4769
  "id": "40b72ce8610649529542575dedf06c86",
4771
4770
  "image": "https://cdn-images-1.listennotes.com/podcasts/all-in-with-chamath-jason-sacks-friedberg-NpyF_7WBYua-0eWaLuirNTJ.1400x1400.jpg",
@@ -4777,40 +4776,40 @@ See all available parameters on the [API Docs page](https://www.listennotes.com/
4777
4776
  "listen_score_global_rank": "0.1%"
4778
4777
  },
4779
4778
  "thumbnail": "https://cdn-images-1.listennotes.com/podcasts/all-in-with-chamath-jason-sacks-friedberg-yCpUza38HRh-0eWaLuirNTJ.300x300.jpg",
4780
- "description": "<p>Follow the besties:</p> <p><a href= \"https://twitter.com/chamath\">https://twitter.com/chamath</a></p> <p><a href= \"https://linktr.ee/calacanis\">https://linktr.ee/calacanis</a></p> <p><a href= \"https://twitter.com/DavidSacks\">https://twitter.com/DavidSacks</a></p> <p><a href= \"https://twitter.com/friedberg\">https://twitter.com/friedberg</a></p> <p><a href= \"https://twitter.com/Money23Green\">https://twitter.com/Money23Green</a></p> <p>Follow the pod:</p> <p><a href= \"https://twitter.com/theallinpod\">https://twitter.com/theallinpod</a></p> <p><a href= \"https://linktr.ee/allinpodcast\">https://linktr.ee/allinpodcast</a></p> <p>Intro Music Credit:</p> <p><a href=\"https://rb.gy/tppkzl\">https://rb.gy/tppkzl</a></p> <p><a href= \"https://twitter.com/yung_spielburg\">https://twitter.com/yung_spielburg</a></p> <p>Intro Video Credit:</p> <p><a href= \"https://twitter.com/MikeSylvan\">https://twitter.com/MikeSylvan</a></p> <p>Referenced in the show:</p> <p>David Sacks on Tucker Carlson</p> <p><a href= \"https://youtu.be/MukXS8uaVns\">https://youtu.be/MukXS8uaVns</a></p> <p>Gell-Mann Amnesia</p> <p><a href= \"https://www.epsilontheory.com/gell-mann-amnesia\">https://www.epsilontheory.com/gell-mann-amnesia</a></p> <p>Show Notes:</p> <p>0:00 Discussing Sacks' recent hit on Tucker Carlson</p> <p>7:25 Media misalignment, subjects as sources, new age of journalism</p> <p>25:53 Bold prediction for the future of media, potential All-In Network, mistrusting everyone except individuals</p> <p>34:28 Bestie Guestie Draymond Green joins the show to talk dealing with day-to-day NBA life under COVID protocols, the temperature of the nation, issues with the media & more</p> <p>1:08:02 Mean tweets</p>",
4781
- "pub_date_ms": 1612583957000,
4782
- "guid_from_rss": "23fa090b-a6ae-4862-99dd-135b6d8d7004",
4783
- "listennotes_url": "https://www.listennotes.com/e/55828aaa81ee4153a6f37c1af1fdccff/",
4784
- "audio_length_sec": 4524,
4779
+ "description": "<p>Follow the crew:</p> <p><a href= \"https://twitter.com/chamath\">https://twitter.com/chamath</a></p> <p><a href= \"https://linktr.ee/calacanis\">https://linktr.ee/calacanis</a></p> <p><a href= \"https://twitter.com/DavidSacks\">https://twitter.com/DavidSacks</a></p> <p><a href= \"https://twitter.com/friedberg\">https://twitter.com/friedberg</a></p> <p>Follow the pod:</p> <p><a href= \"https://twitter.com/theallinpod\">https://twitter.com/theallinpod</a></p> <p><a href= \"https://linktr.ee/allinpodcast\">https://linktr.ee/allinpodcast</a></p> <p>Intro Music Credit:</p> <p><a href=\"https://rb.gy/aizgdm\">https://rb.gy/aizgdm</a></p> <p>Intro Video Credit:</p> <p><a href= \"https://twitter.com/MikeSylvan\">https://twitter.com/MikeSylvan</a></p> <p>Referenced in the show:</p> <p>The Killer D.A. by David Sacks</p> <p><a href=\"https://rb.gy/k5rz0k\">https://rb.gy/k5rz0k</a></p> <p>Show Notes:</p> <p>0:00 New intro for the besties - listen here: <a href= \"https://rb.gy/aizgdm\">https://rb.gy/aizgdm</a></p> <p>2:14 Sacks' trip to Miami</p> <p>6:01 Reflecting on the riot at the US Capitol: police response, double standard with BLM protest, big picture, prosecuting Trump & healing the nation post-Trump</p> <p>29:43 2016 Election interference, reasons for unrest & polarization, Trump's culpability</p> <p>44:19 Should the 25th Amendment be invoked?</p> <p>49:51 Democrats win Georgia runoff elections, did Trump's implosion lose Georgia for the GOP?</p> <p>56:23 How Friedberg would handle vaccine distribution</p> <p>1:07:45 San Francisco's Killer D.A., recalling Gavin Newsom, Kim Kardashian for Governor of CA</p>",
4780
+ "pub_date_ms": 1610088436000,
4781
+ "guid_from_rss": "79029f1c-824a-424d-a8d2-1ebd29506c6e",
4782
+ "listennotes_url": "https://www.listennotes.com/e/b9d13637a7074a3c990f9f166b728e1e/",
4783
+ "audio_length_sec": 4979,
4785
4784
  "explicit_content": false,
4786
4785
  "maybe_audio_invalid": false,
4787
- "listennotes_edit_url": "https://www.listennotes.com/e/55828aaa81ee4153a6f37c1af1fdccff/#edit"
4786
+ "listennotes_edit_url": "https://www.listennotes.com/e/b9d13637a7074a3c990f9f166b728e1e/#edit"
4788
4787
  },
4789
4788
  {
4790
- "id": "c4816f8ff1864bcaaa222fa5e75b08bd",
4791
- "link": "https://theverge.com?utm_source=listennotes.com&utm_campaign=Listen+Notes&utm_medium=website",
4792
- "audio": "https://www.listennotes.com/e/p/c4816f8ff1864bcaaa222fa5e75b08bd/",
4793
- "image": "https://cdn-images-1.listennotes.com/podcasts/decoder-with-nilay-patel-the-verge-drGBLTzbZgP-8himIA5jU-o.1400x1400.jpg",
4794
- "title": "Recode Decode: Jason Calacanis",
4789
+ "id": "f899c0d4d8cd448ca91b6821c0e18f0f",
4790
+ "link": "https://share.transistor.fm/s/353d5b5b?utm_source=listennotes.com&utm_campaign=Listen+Notes&utm_medium=website",
4791
+ "audio": "https://www.listennotes.com/e/p/f899c0d4d8cd448ca91b6821c0e18f0f/",
4792
+ "image": "https://cdn-images-1.listennotes.com/podcasts/rework-basecamp-Ah8QgG7fNp9-rQRTM0OpCAo.1400x1400.jpg",
4793
+ "title": "Extreme Capitalism with Jason Calacanis",
4795
4794
  "podcast": {
4796
- "id": "3675e4e89a854ad88a3ef0927df93dec",
4797
- "image": "https://cdn-images-1.listennotes.com/podcasts/decoder-with-nilay-patel-the-verge-drGBLTzbZgP-8himIA5jU-o.1400x1400.jpg",
4798
- "title": "Decoder with Nilay Patel",
4799
- "publisher": "The Verge",
4800
- "thumbnail": "https://cdn-images-1.listennotes.com/podcasts/decoder-with-nilay-patel-the-verge-xJYoe1QGja4-8himIA5jU-o.300x300.jpg",
4801
- "listen_score": 68,
4802
- "listennotes_url": "https://www.listennotes.com/c/3675e4e89a854ad88a3ef0927df93dec/",
4803
- "listen_score_global_rank": "0.05%"
4795
+ "id": "bde518d2cb22433d8f7a1e16e18aa1b7",
4796
+ "image": "https://cdn-images-1.listennotes.com/podcasts/rework-basecamp-Ah8QgG7fNp9-rQRTM0OpCAo.1400x1400.jpg",
4797
+ "title": "Rework",
4798
+ "publisher": "Basecamp",
4799
+ "thumbnail": "https://cdn-images-1.listennotes.com/podcasts/rework-basecamp-Dq6sV2huSAe-rQRTM0OpCAo.300x300.jpg",
4800
+ "listen_score": 50,
4801
+ "listennotes_url": "https://www.listennotes.com/c/bde518d2cb22433d8f7a1e16e18aa1b7/",
4802
+ "listen_score_global_rank": "1%"
4804
4803
  },
4805
- "thumbnail": "https://cdn-images-1.listennotes.com/podcasts/decoder-with-nilay-patel-the-verge-xJYoe1QGja4-8himIA5jU-o.300x300.jpg",
4806
- "description": "<p>Inside CEO and This Week in Startups host Jason Calacanis talks with Kara Swisher about the future of Uber after its troubled IPO, why one of the tech giants should buy Tesla, and Jeff Bezos' Achilles heel: His lack of generosity. Calacanis, who was an early investor in Uber, also talks about his objections to the current state of tech journalism and punditry, the end of SoftBank\u2019s \u201cfree money party,\" and why Tim Cook doesn\u2019t have the chutzpah to take Apple into the future. Plus: Why the US should ban TikTok, even if the Chinese-owned mobile app spins off an American-run unit.</p><p><strong>Featuring:</strong></p><p>Jason Calacanis (<a href=\"https://twitter.com/jason\">@Jason</a>), CEO and co-founder, Inside</p><p><strong>Host:</strong></p><p>Kara Swisher (<a href=\"https://twitter.com/karaswisher\">@karaswisher</a>), Recode co-founder and editor-at-large</p><p><strong>More to explore:</strong></p><p>On <a href=\"http://bit.ly/ResetPod\">Reset</a>, Arielle Duhaime-Ross explores why \u2014 and how \u2014 tech is changing everything.</p><p>On <a href=\"https://podcasts.apple.com/us/podcast/recode-media/id1080467174\">Recode Media</a>, Peter Kafka interviews business titans, journalists, comedians and podcasters about the collision of tech and media.</p><p>On <a href=\"https://podcasts.apple.com/us/podcast/recode-media/id1080467174\">Pivot</a>, Kara Swisher and Scott Galloway talk about the big tech news stories of the week, who's winning, who's failing, and what comes next.</p><p>And on <a href=\"https://podcasts.apple.com/us/podcast/pivot/id1073226719\">Land of the Giants</a>, Jason Del Rey chronicled the rise of Amazon. Season 2 will focus on Netflix and is coming soon!</p><p><strong>About Recode by Vox:</strong></p><p>Recode by Vox helps you understand how tech is changing the world \u2014 and changing us.</p><p><strong>Follow Us:</strong></p><p>Newsletter: <a href=\"https://events.recode.net/newsletters/subscribe/\">Recode Daily</a></p><p>Twitter: <a href=\"https://twitter.com/Recode\">@Recode</a>\u00a0and <a href=\"https://twitter.com/Voxdotcom\">@voxdotcom</a></p><p> </p><p>Learn more about your ad choices. Visit <a href=\"https://megaphone.fm/adchoices\">megaphone.fm/adchoices</a></p>",
4807
- "pub_date_ms": 1583125260078,
4808
- "guid_from_rss": "465b2bdc-eebd-11e9-85c8-171e42a72b35",
4809
- "listennotes_url": "https://www.listennotes.com/e/c4816f8ff1864bcaaa222fa5e75b08bd/",
4810
- "audio_length_sec": 4096,
4804
+ "thumbnail": "https://cdn-images-1.listennotes.com/podcasts/rework-basecamp-Dq6sV2huSAe-rQRTM0OpCAo.300x300.jpg",
4805
+ "description": "Basecamp co-founder and CTO David Heinemeier Hansson and entrepreneur and angel investor Jason Calacanis debate the gig economy, democratic socialism, and whether the American dream is dead. The conversation in this episode is adapted from a longer interview that can be found in full at <a href=\"https://thisweekinstartups.com/e1029-basecamp-co-founder-author-david-heinemeier-hansson-dhh-debates-jason-on-reining-in-capitalism-benefits-of-state-run-education-healthcare-big-tech-disappointments-work-from-home-parad/\">This Week in Startups</a>.",
4806
+ "pub_date_ms": 1582203600033,
4807
+ "guid_from_rss": "b8af76cb-4f92-44b1-aa47-ac469a043b64",
4808
+ "listennotes_url": "https://www.listennotes.com/e/f899c0d4d8cd448ca91b6821c0e18f0f/",
4809
+ "audio_length_sec": 3582,
4811
4810
  "explicit_content": false,
4812
4811
  "maybe_audio_invalid": false,
4813
- "listennotes_edit_url": "https://www.listennotes.com/e/c4816f8ff1864bcaaa222fa5e75b08bd/#edit"
4812
+ "listennotes_edit_url": "https://www.listennotes.com/e/f899c0d4d8cd448ca91b6821c0e18f0f/#edit"
4814
4813
  },
4815
4814
  {
4816
4815
  "id": "512830b5fdfb43569f0019b854c5d67f",
@@ -4839,11 +4838,11 @@ See all available parameters on the [API Docs page](https://www.listennotes.com/
4839
4838
  "listennotes_edit_url": "https://www.listennotes.com/e/512830b5fdfb43569f0019b854c5d67f/#edit"
4840
4839
  },
4841
4840
  {
4842
- "id": "b9d13637a7074a3c990f9f166b728e1e",
4843
- "link": "https://allinchamathjason.libsyn.com/e16-reflecting-on-the-riots-at-the-us-capitol-plus-georgia-runoff-elections-vaccine-distribution-more?utm_source=listennotes.com&utm_campaign=Listen+Notes&utm_medium=website",
4844
- "audio": "https://www.listennotes.com/e/p/b9d13637a7074a3c990f9f166b728e1e/",
4841
+ "id": "55828aaa81ee4153a6f37c1af1fdccff",
4842
+ "link": "https://allinchamathjason.libsyn.com/e21-media-misalignment-subjects-controlling-narratives-more-with-bestie-guestie-draymond-green?utm_source=listennotes.com&utm_campaign=Listen+Notes&utm_medium=website",
4843
+ "audio": "https://www.listennotes.com/e/p/55828aaa81ee4153a6f37c1af1fdccff/",
4845
4844
  "image": "https://cdn-images-1.listennotes.com/podcasts/all-in-with-chamath-jason-sacks-friedberg-NpyF_7WBYua-0eWaLuirNTJ.1400x1400.jpg",
4846
- "title": "E16: Reflecting on the riots at the US Capitol, plus: Georgia runoff elections, vaccine distribution & more",
4845
+ "title": "E21: Media misalignment, subjects controlling narratives & more with bestie guestie Draymond Green",
4847
4846
  "podcast": {
4848
4847
  "id": "40b72ce8610649529542575dedf06c86",
4849
4848
  "image": "https://cdn-images-1.listennotes.com/podcasts/all-in-with-chamath-jason-sacks-friedberg-NpyF_7WBYua-0eWaLuirNTJ.1400x1400.jpg",
@@ -4855,40 +4854,40 @@ See all available parameters on the [API Docs page](https://www.listennotes.com/
4855
4854
  "listen_score_global_rank": "0.1%"
4856
4855
  },
4857
4856
  "thumbnail": "https://cdn-images-1.listennotes.com/podcasts/all-in-with-chamath-jason-sacks-friedberg-yCpUza38HRh-0eWaLuirNTJ.300x300.jpg",
4858
- "description": "<p>Follow the crew:</p> <p><a href= \"https://twitter.com/chamath\">https://twitter.com/chamath</a></p> <p><a href= \"https://linktr.ee/calacanis\">https://linktr.ee/calacanis</a></p> <p><a href= \"https://twitter.com/DavidSacks\">https://twitter.com/DavidSacks</a></p> <p><a href= \"https://twitter.com/friedberg\">https://twitter.com/friedberg</a></p> <p>Follow the pod:</p> <p><a href= \"https://twitter.com/theallinpod\">https://twitter.com/theallinpod</a></p> <p><a href= \"https://linktr.ee/allinpodcast\">https://linktr.ee/allinpodcast</a></p> <p>Intro Music Credit:</p> <p><a href=\"https://rb.gy/aizgdm\">https://rb.gy/aizgdm</a></p> <p>Intro Video Credit:</p> <p><a href= \"https://twitter.com/MikeSylvan\">https://twitter.com/MikeSylvan</a></p> <p>Referenced in the show:</p> <p>The Killer D.A. by David Sacks</p> <p><a href=\"https://rb.gy/k5rz0k\">https://rb.gy/k5rz0k</a></p> <p>Show Notes:</p> <p>0:00 New intro for the besties - listen here: <a href= \"https://rb.gy/aizgdm\">https://rb.gy/aizgdm</a></p> <p>2:14 Sacks' trip to Miami</p> <p>6:01 Reflecting on the riot at the US Capitol: police response, double standard with BLM protest, big picture, prosecuting Trump & healing the nation post-Trump</p> <p>29:43 2016 Election interference, reasons for unrest & polarization, Trump's culpability</p> <p>44:19 Should the 25th Amendment be invoked?</p> <p>49:51 Democrats win Georgia runoff elections, did Trump's implosion lose Georgia for the GOP?</p> <p>56:23 How Friedberg would handle vaccine distribution</p> <p>1:07:45 San Francisco's Killer D.A., recalling Gavin Newsom, Kim Kardashian for Governor of CA</p>",
4859
- "pub_date_ms": 1610088436000,
4860
- "guid_from_rss": "79029f1c-824a-424d-a8d2-1ebd29506c6e",
4861
- "listennotes_url": "https://www.listennotes.com/e/b9d13637a7074a3c990f9f166b728e1e/",
4862
- "audio_length_sec": 4979,
4857
+ "description": "<p>Follow the besties:</p> <p><a href= \"https://twitter.com/chamath\">https://twitter.com/chamath</a></p> <p><a href= \"https://linktr.ee/calacanis\">https://linktr.ee/calacanis</a></p> <p><a href= \"https://twitter.com/DavidSacks\">https://twitter.com/DavidSacks</a></p> <p><a href= \"https://twitter.com/friedberg\">https://twitter.com/friedberg</a></p> <p><a href= \"https://twitter.com/Money23Green\">https://twitter.com/Money23Green</a></p> <p>Follow the pod:</p> <p><a href= \"https://twitter.com/theallinpod\">https://twitter.com/theallinpod</a></p> <p><a href= \"https://linktr.ee/allinpodcast\">https://linktr.ee/allinpodcast</a></p> <p>Intro Music Credit:</p> <p><a href=\"https://rb.gy/tppkzl\">https://rb.gy/tppkzl</a></p> <p><a href= \"https://twitter.com/yung_spielburg\">https://twitter.com/yung_spielburg</a></p> <p>Intro Video Credit:</p> <p><a href= \"https://twitter.com/MikeSylvan\">https://twitter.com/MikeSylvan</a></p> <p>Referenced in the show:</p> <p>David Sacks on Tucker Carlson</p> <p><a href= \"https://youtu.be/MukXS8uaVns\">https://youtu.be/MukXS8uaVns</a></p> <p>Gell-Mann Amnesia</p> <p><a href= \"https://www.epsilontheory.com/gell-mann-amnesia\">https://www.epsilontheory.com/gell-mann-amnesia</a></p> <p>Show Notes:</p> <p>0:00 Discussing Sacks' recent hit on Tucker Carlson</p> <p>7:25 Media misalignment, subjects as sources, new age of journalism</p> <p>25:53 Bold prediction for the future of media, potential All-In Network, mistrusting everyone except individuals</p> <p>34:28 Bestie Guestie Draymond Green joins the show to talk dealing with day-to-day NBA life under COVID protocols, the temperature of the nation, issues with the media & more</p> <p>1:08:02 Mean tweets</p>",
4858
+ "pub_date_ms": 1612583957000,
4859
+ "guid_from_rss": "23fa090b-a6ae-4862-99dd-135b6d8d7004",
4860
+ "listennotes_url": "https://www.listennotes.com/e/55828aaa81ee4153a6f37c1af1fdccff/",
4861
+ "audio_length_sec": 4524,
4863
4862
  "explicit_content": false,
4864
4863
  "maybe_audio_invalid": false,
4865
- "listennotes_edit_url": "https://www.listennotes.com/e/b9d13637a7074a3c990f9f166b728e1e/#edit"
4864
+ "listennotes_edit_url": "https://www.listennotes.com/e/55828aaa81ee4153a6f37c1af1fdccff/#edit"
4866
4865
  },
4867
4866
  {
4868
- "id": "43e30e7ff2bb4027ab113912cf8b4ac4",
4869
- "link": "https://podcasts.apple.com/us/podcast/axios-pro-rata/id1412162689?utm_source=listennotes.com&utm_campaign=Listen+Notes&utm_medium=website",
4870
- "audio": "https://www.listennotes.com/e/p/43e30e7ff2bb4027ab113912cf8b4ac4/",
4871
- "image": "https://cdn-images-1.listennotes.com/podcasts/axios-recap-axios-239AsyFelYN-mnzBj0JP6Go.1400x1400.jpg",
4872
- "title": "Jason Calacanis on tech vs. tech media",
4867
+ "id": "ea8ed0394b28400c88f91faf319d2d5d",
4868
+ "link": "http://feedproxy.google.com/~r/twist-audio/~3/7Rbj1ZDSBII/?utm_source=listennotes.com&utm_campaign=Listen+Notes&utm_medium=website",
4869
+ "audio": "https://www.listennotes.com/e/p/ea8ed0394b28400c88f91faf319d2d5d/",
4870
+ "image": "https://cdn-images-1.listennotes.com/podcasts/this-week-in-startups-jason-calacanis-rMEoeGBJqt1-EKckR36zrnA.1400x1400.jpg",
4871
+ "title": "Building a production location marketplace with Hank Leber, Co-Founder of Giggster | E1196",
4873
4872
  "podcast": {
4874
- "id": "bd9b9927985143bc9d7e97c48048e365",
4875
- "image": "https://cdn-images-1.listennotes.com/podcasts/axios-recap-axios-239AsyFelYN-mnzBj0JP6Go.1400x1400.jpg",
4876
- "title": "Axios Re:Cap",
4877
- "publisher": "Axios",
4878
- "thumbnail": "https://cdn-images-1.listennotes.com/podcasts/axios-recap-axios-tqRMvBHFo3G-mnzBj0JP6Go.300x300.jpg",
4879
- "listen_score": 55,
4880
- "listennotes_url": "https://www.listennotes.com/c/bd9b9927985143bc9d7e97c48048e365/",
4873
+ "id": "9a62e2581908415185dee35d2d19f9b5",
4874
+ "image": "https://cdn-images-1.listennotes.com/podcasts/this-week-in-startups-jason-calacanis-rMEoeGBJqt1-EKckR36zrnA.1400x1400.jpg",
4875
+ "title": "This Week in Startups",
4876
+ "publisher": "Jason Calacanis",
4877
+ "thumbnail": "https://cdn-images-1.listennotes.com/podcasts/this-week-in-startups-jason-calacanis-txh7pAS-Xsy-EKckR36zrnA.300x300.jpg",
4878
+ "listen_score": 62,
4879
+ "listennotes_url": "https://www.listennotes.com/c/9a62e2581908415185dee35d2d19f9b5/",
4881
4880
  "listen_score_global_rank": "0.5%"
4882
4881
  },
4883
- "thumbnail": "https://cdn-images-1.listennotes.com/podcasts/axios-recap-axios-tqRMvBHFo3G-mnzBj0JP6Go.300x300.jpg",
4884
- "description": "<p>Over the weekend, tensions between media and tech escalated because of a dispute that started on Clubhouse and spilled over to Twitter. But the divide between tech and the journalists covering tech has been growing for some time. Dan digs in with investor and entrepreneur Jason Calacanis, who has been on both sides of the tech/media divide.</p><p> </p><p>Learn more about your ad choices. Visit <a href=\"https://megaphone.fm/adchoices\">megaphone.fm/adchoices</a></p>",
4885
- "pub_date_ms": 1594067455205,
4886
- "guid_from_rss": "80960804-bfc7-11ea-9fe4-df2924ba6613",
4887
- "listennotes_url": "https://www.listennotes.com/e/43e30e7ff2bb4027ab113912cf8b4ac4/",
4888
- "audio_length_sec": 718,
4882
+ "thumbnail": "https://cdn-images-1.listennotes.com/podcasts/this-week-in-startups-jason-calacanis-txh7pAS-Xsy-EKckR36zrnA.300x300.jpg",
4883
+ "description": "Hank Leber, co-founder of Giggster, talks about growing their production location marketplace, onboarding 10,000 locations from a totally offline process and building \"Airbnb for professional locations\" (0:00). He shares Giggster's fundraising history and the impact of raising at Remote Demo Day (17:35), and also dives into common use cases and more (30:05)! Check out the advanced pod notes here: https://bit.ly/twist-notes-giggster\n\nFOUNDERS! Apply to pitch 7000+ angel investors at Remote Demo Day here: https://remotedemoday.com<img src=\"http://feeds.feedburner.com/~r/twist-audio/~4/7Rbj1ZDSBII\" height=\"1\" width=\"1\" alt=\"\"/>",
4884
+ "pub_date_ms": 1617999352000,
4885
+ "guid_from_rss": "https://thisweekinstartups.com/?p=42498",
4886
+ "listennotes_url": "https://www.listennotes.com/e/ea8ed0394b28400c88f91faf319d2d5d/",
4887
+ "audio_length_sec": 3121,
4889
4888
  "explicit_content": false,
4890
4889
  "maybe_audio_invalid": false,
4891
- "listennotes_edit_url": "https://www.listennotes.com/e/43e30e7ff2bb4027ab113912cf8b4ac4/#edit"
4890
+ "listennotes_edit_url": "https://www.listennotes.com/e/ea8ed0394b28400c88f91faf319d2d5d/#edit"
4892
4891
  },
4893
4892
  {
4894
4893
  "id": "23edf77bbc8e458eae6b4a70763e909a",
@@ -5097,7 +5096,7 @@ Example:
5097
5096
 
5098
5097
  require "podcast_api"
5099
5098
 
5100
- # If api_key is None, the sdk will connect to a mock server that'll
5099
+ # If api_key is nil, the sdk will connect to a mock server that'll
5101
5100
  # return fake data for testing purpose
5102
5101
  api_key = ENV["LISTEN_API_KEY"]
5103
5102
  client = PodcastApi::Client.new(api_key: api_key)
@@ -5328,7 +5327,7 @@ Example:
5328
5327
 
5329
5328
  require "podcast_api"
5330
5329
 
5331
- # If api_key is None, the sdk will connect to a mock server that'll
5330
+ # If api_key is nil, the sdk will connect to a mock server that'll
5332
5331
  # return fake data for testing purpose
5333
5332
  api_key = ENV["LISTEN_API_KEY"]
5334
5333
  client = PodcastApi::Client.new(api_key: api_key)
@@ -6511,7 +6510,7 @@ Example:
6511
6510
 
6512
6511
  require "podcast_api"
6513
6512
 
6514
- # If api_key is None, the sdk will connect to a mock server that'll
6513
+ # If api_key is nil, the sdk will connect to a mock server that'll
6515
6514
  # return fake data for testing purpose
6516
6515
  api_key = ENV["LISTEN_API_KEY"]
6517
6516
  client = PodcastApi::Client.new(api_key: api_key)
@@ -6530,30 +6529,30 @@ See all available parameters on the [API Docs page](https://www.listennotes.com/
6530
6529
 
6531
6530
  ```json
6532
6531
  {
6533
- "id": "50ff04b877cf4eb49c219d3865a840e0",
6534
- "link": "https://www.faimission.org?utm_source=listennotes.com&utm_campaign=Listen+Notes&utm_medium=website",
6535
- "audio": "https://www.listennotes.com/e/p/50ff04b877cf4eb49c219d3865a840e0/",
6536
- "image": "https://cdn-images-1.listennotes.com/podcasts/the-better/the-better-farewell-the-c9ZzeOm2Ii6-hG83zr1HIsY.1024x1024.jpg",
6537
- "title": "The Better Farewell: The Kingdom & the Truth",
6532
+ "id": "f984973b797443308f87d2f2216bd5f8",
6533
+ "link": "https://blubrry.com/fortheloveofclimbing/76270669/26-im-a-liver-not-a-fighter/?utm_source=listennotes.com&utm_campaign=Listen+Notes&utm_medium=website",
6534
+ "audio": "https://www.listennotes.com/e/p/f984973b797443308f87d2f2216bd5f8/",
6535
+ "image": "https://cdn-images-1.listennotes.com/podcasts/for-the-love-of-climbing-kathy-karlo-OigJy-n5_ZL-e-gnMlHp0x4.1400x1400.jpg",
6536
+ "title": "26: I\u2019m a Liver, Not a Fighter",
6538
6537
  "podcast": {
6539
- "id": "73f9dc6a984444c795fd2e4be88c9fd4",
6540
- "image": "https://cdn-images-1.listennotes.com/podcasts/the-better-beautiful-the-answer-to-every-zfJyr5qvthc-TM2mCLjtnBU.1400x1400.jpg",
6541
- "title": "The Better Beautiful // The Answer to Every Question",
6542
- "publisher": "Frontier Alliance International ",
6543
- "thumbnail": "https://cdn-images-1.listennotes.com/podcasts/the-better-beautiful-the-answer-to-every-TGue-DM3haW-TM2mCLjtnBU.300x300.jpg",
6544
- "listen_score": 31,
6545
- "listennotes_url": "https://www.listennotes.com/c/73f9dc6a984444c795fd2e4be88c9fd4/",
6546
- "listen_score_global_rank": "10%"
6538
+ "id": "26a816baaff0471da32906db5a044568",
6539
+ "image": "https://cdn-images-1.listennotes.com/podcasts/for-the-love-of-climbing-kathy-karlo-OigJy-n5_ZL-e-gnMlHp0x4.1400x1400.jpg",
6540
+ "title": "For the Love of Climbing",
6541
+ "publisher": "Kathy Karlo",
6542
+ "thumbnail": "https://cdn-images-1.listennotes.com/podcasts/for-the-love-of-climbing-kathy-karlo-V8kKof-mMZR-e-gnMlHp0x4.300x300.jpg",
6543
+ "listen_score": 53,
6544
+ "listennotes_url": "https://www.listennotes.com/c/26a816baaff0471da32906db5a044568/",
6545
+ "listen_score_global_rank": "0.5%"
6547
6546
  },
6548
- "thumbnail": "https://cdn-images-1.listennotes.com/podcasts/the-better/the-better-farewell-the-NJ_Hwgk5fvO-hG83zr1HIsY.300x300.jpg",
6549
- "description": "At the end of the day and the end of the age, there is but one King and one Truth. His Kingdom is not, will not, and cannot be tainted with the carnality of the flesh; it is \"not of this world.\" We may only participate in His Kingdom with submission to His righteousness\u2014and His alone. The \"kings of the earth\" will \"rage\" and \"plot in vain,\" many with Pilate's cynicism on their lips: \"What is truth?\"\n\nListen to Part 22 of 'The Better Farewell' now, as we examine the Man on a steadfast mission to disarm the powers of the air, make a spectacle of their folly, and leverage a cursed execution to put the manifold wisdom of God on a magnificent, everlasting display.\n\nDURATION: 53 minutes",
6550
- "pub_date_ms": 1619863200000,
6551
- "guid_from_rss": "c1d541814c5704b40f447527c050d929",
6552
- "listennotes_url": "https://www.listennotes.com/e/50ff04b877cf4eb49c219d3865a840e0/",
6553
- "audio_length_sec": 3227,
6547
+ "thumbnail": "https://cdn-images-1.listennotes.com/podcasts/for-the-love-of-climbing-kathy-karlo-V8kKof-mMZR-e-gnMlHp0x4.300x300.jpg",
6548
+ "description": "<p class=\"p1\"><span class=\"s1\">Cedar, who was named after a tree, has achieved a lot in her almost-decade of being alive\u2014she has a podcast, she\u2019s sort of a Do-It-Yourself queen, an accomplished video game champion (thanks to Covid), and she likes a lot of, you know, normal kid stuff\u2014not including getting a liver transplant at the age of five.</span></p>\n<p class=\"p2\">\u00a0</p>\n<p class=\"p1\"><span class=\"s1\">Cedar has something called Progressive Familial Intrahepatic Cholestasis, otherwise known as PFIC 2. This devastating genetic disorder affects 1 in 50,000 to 1 in 100,000 live births and, if untreated, can be fatal by the age of twenty. Visit <a href=\"http://pfic.org\">pfic.org</a> for more information.</span></p>\n<p class=\"p1\"><span class=\"s1\"><br /></span></p>\n<p class=\"p3\"><span class=\"s1\"><strong></strong></span></p>\n<p class=\"p4\"><span class=\"s1\"><strong>This mini-episode is brought to you by </strong><a href=\"https://www.deuter.com/us-en\"><span class=\"s2\"><strong>Deuter USA</strong></span></a><strong>, </strong><a href=\"https://gognarly.com/\"><span class=\"s2\"><strong>Gnarly Nutrition</strong></span></a><strong>, </strong><a href=\"https://allezoutdoor.com/\"><span class=\"s2\"><strong>Allez Outdoors</strong></span></a><strong>, </strong><a href=\"https://www.firstascentcoffee.com/\"><span class=\"s2\"><strong>First Ascent Coffee</strong></span></a><strong>, and </strong><a href=\"https://www.patagonia.com/home/\"><span class=\"s2\"><strong>Patagonia</strong></span></a><strong>.</strong></span></p>\n<p class=\"p4\"><span class=\"s1\"><strong><br /></strong></span></p>\n<p class=\"p3\"><span class=\"s1\"><strong></strong></span></p>\n<p class=\"p4\"><span class=\"s1\"><strong>Music by: Kakurenbo and Podington Bear. Additional music licensed by Music Bed. A HUGE thank you to Chad Crouch for creating absolute magic and to Peter Darmi for mixing this episode.</strong></span></p>\n<p class=\"p4\"><span class=\"s1\"><strong><br /></strong></span></p>\n<p class=\"p3\"><span class=\"s1\"><strong></strong></span></p>\n<p class=\"p4\"><span class=\"s1\">Additional sound effects from zapsplat.com.</span></p>\n<p class=\"p4\"><span class=\"s1\"><br /></span></p>\n<p class=\"p3\"><span class=\"s1\"><strong></strong></span></p>\n<p class=\"p4\"><span class=\"s1\"><strong>Cover photo by </strong><a href=\"https://www.kikamacfarlane.co/\"><span class=\"s2\"><strong>Kika MacFarlane</strong></span></a><strong>.</strong></span></p>\n<p class=\"p4\"><span class=\"s1\"><strong><br /></strong></span></p>\n<p class=\"p3\"><span class=\"s1\"><strong></strong></span></p>\n<p class=\"p4\"><span class=\"s1\"><strong>Read the transcript </strong><a href=\"https://www.fortheloveofclimbing.com/episodes/mini-episode-9-i-did-not-know\"><span class=\"s3\"><strong>here</strong></span></a><strong>.</strong></span></p>\n<p class=\"p4\"><span class=\"s1\"><strong><br /></strong></span></p>\n<p class=\"p3\"><span class=\"s1\"><strong></strong></span></p>\n<p class=\"p4\"><span class=\"s1\"><strong>Follow us on </strong><a href=\"https://www.instagram.com/inheadlights/\"><span class=\"s4\"><strong>Instagram</strong></span></a><strong> for podcast (pod-Kath?) updates and general life things.</strong></span></p>\n<p class=\"p4\"><span class=\"s1\"><strong><br /></strong></span></p>\n<p class=\"p3\"><span class=\"s1\"><strong></strong></span></p>\n<p class=\"p4\"><span class=\"s1\"><strong>Support us on </strong><a href=\"https://www.patreon.com/fortheloveofclimbing\"><span class=\"s4\"><strong>Patreon</strong></span></a><strong> in exchange for a warm, fuzzy feeling.</strong></span></p>",
6549
+ "pub_date_ms": 1619869680000,
6550
+ "guid_from_rss": "http://www.blubrry.com/fortheloveofclimbing/76270669/26-im-a-liver-not-a-fighter/",
6551
+ "listennotes_url": "https://www.listennotes.com/e/f984973b797443308f87d2f2216bd5f8/",
6552
+ "audio_length_sec": 2201,
6554
6553
  "explicit_content": false,
6555
6554
  "maybe_audio_invalid": false,
6556
- "listennotes_edit_url": "https://www.listennotes.com/e/50ff04b877cf4eb49c219d3865a840e0/#edit"
6555
+ "listennotes_edit_url": "https://www.listennotes.com/e/f984973b797443308f87d2f2216bd5f8/#edit"
6557
6556
  }
6558
6557
  ```
6559
6558
  </details>
@@ -6698,7 +6697,7 @@ Example:
6698
6697
 
6699
6698
  require "podcast_api"
6700
6699
 
6701
- # If api_key is None, the sdk will connect to a mock server that'll
6700
+ # If api_key is nil, the sdk will connect to a mock server that'll
6702
6701
  # return fake data for testing purpose
6703
6702
  api_key = ENV["LISTEN_API_KEY"]
6704
6703
  client = PodcastApi::Client.new(api_key: api_key)
@@ -7799,7 +7798,7 @@ Example:
7799
7798
 
7800
7799
  require "podcast_api"
7801
7800
 
7802
- # If api_key is None, the sdk will connect to a mock server that'll
7801
+ # If api_key is nil, the sdk will connect to a mock server that'll
7803
7802
  # return fake data for testing purpose
7804
7803
  api_key = ENV["LISTEN_API_KEY"]
7805
7804
  client = PodcastApi::Client.new(api_key: api_key)
@@ -9229,7 +9228,7 @@ Example:
9229
9228
 
9230
9229
  require "podcast_api"
9231
9230
 
9232
- # If api_key is None, the sdk will connect to a mock server that'll
9231
+ # If api_key is nil, the sdk will connect to a mock server that'll
9233
9232
  # return fake data for testing purpose
9234
9233
  api_key = ENV["LISTEN_API_KEY"]
9235
9234
  client = PodcastApi::Client.new(api_key: api_key)
@@ -9350,7 +9349,7 @@ Example:
9350
9349
 
9351
9350
  require "podcast_api"
9352
9351
 
9353
- # If api_key is None, the sdk will connect to a mock server that'll
9352
+ # If api_key is nil, the sdk will connect to a mock server that'll
9354
9353
  # return fake data for testing purpose
9355
9354
  api_key = ENV["LISTEN_API_KEY"]
9356
9355
  client = PodcastApi::Client.new(api_key: api_key)
@@ -9422,7 +9421,7 @@ Example:
9422
9421
 
9423
9422
  require "podcast_api"
9424
9423
 
9425
- # If api_key is None, the sdk will connect to a mock server that'll
9424
+ # If api_key is nil, the sdk will connect to a mock server that'll
9426
9425
  # return fake data for testing purpose
9427
9426
  api_key = ENV["LISTEN_API_KEY"]
9428
9427
  client = PodcastApi::Client.new(api_key: api_key)
@@ -10618,7 +10617,7 @@ Example:
10618
10617
 
10619
10618
  require "podcast_api"
10620
10619
 
10621
- # If api_key is None, the sdk will connect to a mock server that'll
10620
+ # If api_key is nil, the sdk will connect to a mock server that'll
10622
10621
  # return fake data for testing purpose
10623
10622
  api_key = ENV["LISTEN_API_KEY"]
10624
10623
  client = PodcastApi::Client.new(api_key: api_key)
@@ -10775,7 +10774,7 @@ See all available parameters on the [API Docs page](https://www.listennotes.com/
10775
10774
  "type": "integer",
10776
10775
  "example": 3
10777
10776
  },
10778
- "previous_page_number
10777
+ "previous_page_number": {
10779
10778
  "type": "integer",
10780
10779
  "example": 1
10781
10780
  }
data/lib/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PodcastApi
4
- VERSION = "1.0.3"
4
+ VERSION = "1.0.4"
5
5
  end
data/podcast_api.gemspec CHANGED
@@ -10,6 +10,7 @@ Gem::Specification.new do |s|
10
10
  s.required_ruby_version = ">= 2.3.0"
11
11
  s.summary = "Ruby bindings for the Listen Notes Podcast API"
12
12
  s.description = "Listen Notes is the best podcast search engine and api. " \
13
+ "This is the official Ruby Gem for the Listen Notes Podcast API. " \
13
14
  "See https://www.listennotes.com/api/ for details."
14
15
  s.author = "Listen Notes, Inc."
15
16
  s.email = "hello@listennotes.com"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: podcast_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.3
4
+ version: 1.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Listen Notes, Inc.
@@ -24,7 +24,8 @@ dependencies:
24
24
  - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: '0'
27
- description: Listen Notes is the best podcast search engine and api. See https://www.listennotes.com/api/
27
+ description: Listen Notes is the best podcast search engine and api. This is the
28
+ official Ruby Gem for the Listen Notes Podcast API. See https://www.listennotes.com/api/
28
29
  for details.
29
30
  email: hello@listennotes.com
30
31
  executables: []