argh_ss 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +5 -4
  3. data/lib/argh_ss/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5c85f92f9910ab64973fc4c3d1d19cd2e8b4f16d
4
- data.tar.gz: bb1b101f138a9ce3afe6258914d446e29ce8c7aa
3
+ metadata.gz: 339e0a8a2d4d2a35a25e72756643f7c80b33ef34
4
+ data.tar.gz: e126aad22a9a5b20b20038e69c6c14ebda892fb9
5
5
  SHA512:
6
- metadata.gz: 67a64711e219e0eafd7f4b8117b81e5146f25236bd06b6570d0635fd3686faa0129549e14d6c55f2fbd15b483375dbae7a5c2c5d1eae36ad089d1237b861239b
7
- data.tar.gz: 0114ab67718fdcb780176b342dff39fb861cda80a30be0b267e8e1d2a433bea53dd5f92ccde5886268c880d6fc6d3551210a1a327833bc5b36af65763abe2469
6
+ metadata.gz: eb5482a6b5c943d51994bed6a6c3ba2143d6e9ceaabad48a1b0f28f42c32ed62e9eb9ee1053fdd929e7063fefa6a7ac124417f3d4e69f74088d99871e606450d
7
+ data.tar.gz: 48d8a6847a7e6cffda8954a461f99fc93b636cae6d6639b95fff7b49448b88b293752343e731827d1cfc0bf7a4b4bf91d589a965b341831b8259916b24f0f6ae
data/README.md CHANGED
@@ -21,7 +21,7 @@ Or install it yourself as:
21
21
 
22
22
  ## RSS Feeds
23
23
 
24
- 2 options for RSS feeds, RSSFeed.feed and RSSFeed.feed_options
24
+ 2 options for RSS feeds, RSSFeed.feed and RSSFeed.options_feed
25
25
 
26
26
  To output a simple hash with the feed title and feed url:
27
27
 
@@ -50,7 +50,7 @@ To give you more options you can output an array with a hash of your options:
50
50
 
51
51
  ```ruby
52
52
  url = "https://www.theguardian.com/world/rss"
53
- RSSFeed.feed_options(url)
53
+ RSSFeed.options_feed(url)
54
54
  ```
55
55
 
56
56
  By default, the options will give you: :title, :link, :content, :published.
@@ -58,7 +58,7 @@ But, you can choose your options. For example, if you only wanted the title, lin
58
58
 
59
59
  ```ruby
60
60
  url = "https://www.theguardian.com/world/rss"
61
- RSSFeed.feed_options(url, :title, :link, :content)
61
+ RSSFeed.options_feed(url, :title, :link, :content)
62
62
  ```
63
63
 
64
64
 
@@ -71,7 +71,8 @@ file = "./my_important.opml"
71
71
  OPMLImport.new(file).to_hash
72
72
  ```
73
73
 
74
- Note, opml import will be in perpetual alpha due to low use
74
+ *Note, opml import will be in perpetual alpha due to low use.*
75
+
75
76
  The gem is designed to skip over errors, so if you have an RSS feed url that isn't standard, or an OPML file that doesn't proprly parse with nokogiri, it will fail quietly and move on.
76
77
 
77
78
  ## License
@@ -1,3 +1,3 @@
1
1
  module ArghSs
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: argh_ss
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Toby Holmes